File indexing completed on 2025-04-02 08:47:07
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef INCLUDE_EICSMEAR_SMEAR_SMEARER_H_
0011 #define INCLUDE_EICSMEAR_SMEAR_SMEARER_H_
0012
0013 #include <TObject.h>
0014
0015 #include "eicsmear/smear/Acceptance.h"
0016
0017 namespace erhic {
0018
0019 class VirtualParticle;
0020
0021 }
0022
0023 namespace Smear {
0024
0025 class ParticleMCS;
0026
0027
0028
0029
0030
0031
0032
0033 class Smearer : public TObject {
0034 public:
0035
0036
0037
0038 virtual ~Smearer() { }
0039
0040
0041
0042
0043 virtual Smearer* Clone(const char* = "") const = 0;
0044
0045
0046
0047
0048 virtual void Smear(const erhic::VirtualParticle&, ParticleMCS&) = 0;
0049
0050 Acceptance Accept;
0051
0052 ClassDef(Smear::Smearer, 1)
0053 };
0054
0055 }
0056
0057 #endif