Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:25

0001 /**
0002  ** Description: Filter gen particles based on pdg_id and status code
0003  ** 
0004  ** @author bortigno
0005  ** @version 1.0 02.04.2015
0006 */
0007 
0008 #ifndef PartonShowerCsHepMCFilter_h
0009 #define PartonShowerCsHepMCFilter_h
0010 
0011 #include "GeneratorInterface/Core/interface/BaseHepMCFilter.h"
0012 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0013 
0014 class PartonShowerCsHepMCFilter : public BaseHepMCFilter {
0015 public:
0016   PartonShowerCsHepMCFilter(const edm::ParameterSet&);
0017   ~PartonShowerCsHepMCFilter() override;
0018 
0019   bool filter(const HepMC::GenEvent* evt) override;
0020 
0021 private:
0022 };
0023 
0024 #endif