File indexing completed on 2023-10-25 09:48:40
0001 #ifndef gen_Pythia6ParticleGun_h
0002 #define gen_Pythia6ParticleGun_h
0003
0004
0005
0006
0007
0008
0009
0010 #include <string>
0011 #include <vector>
0012
0013 #include "Pythia6Gun.h"
0014
0015 namespace gen {
0016
0017
0018
0019 class Pythia6ParticleGun : public Pythia6Gun {
0020 public:
0021 Pythia6ParticleGun(const edm::ParameterSet&);
0022 ~Pythia6ParticleGun() override;
0023
0024 protected:
0025
0026
0027 std::vector<int> fPartIDs;
0028 };
0029
0030 }
0031
0032 #endif