File indexing completed on 2024-11-16 09:02:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef INCLUDE_EICSMEAR_ERHIC_PYTHIA6PARTICLEBUILDER_H_
0011 #define INCLUDE_EICSMEAR_ERHIC_PYTHIA6PARTICLEBUILDER_H_
0012
0013 #include <memory>
0014
0015 class TMCParticle;
0016
0017 namespace erhic {
0018
0019 class ParticleMC;
0020
0021
0022
0023
0024 class Pythia6ParticleBuilder {
0025 public:
0026
0027
0028
0029 Pythia6ParticleBuilder() { }
0030
0031
0032
0033
0034 std::unique_ptr<ParticleMC> Create(const TMCParticle&) const;
0035 };
0036
0037 }
0038
0039 #endif