Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:32

0001 #ifndef PhysicsTools_JetMCAlgos_Pythia8PartonSelector_H
0002 #define PhysicsTools_JetMCAlgos_Pythia8PartonSelector_H
0003 
0004 /**\class Pythia8PartonSelector Pythia8PartonSelector.h PhysicsTools/JetMCAlgos/interface/Pythia8PartonSelector.h
0005  * \brief Pythia8 parton selector derived from the base parton selector
0006  */
0007 
0008 #include "PhysicsTools/JetMCAlgos/interface/BasePartonSelector.h"
0009 
0010 class Pythia8PartonSelector : public BasePartonSelector {
0011 public:
0012   Pythia8PartonSelector();
0013   ~Pythia8PartonSelector() override;
0014 
0015   void run(const edm::Handle<reco::GenParticleCollection>& particles,
0016            std::unique_ptr<reco::GenParticleRefVector>& partons) override;
0017 };
0018 
0019 #endif