CMS 3D CMS Logo

SherpaPartonSelector.cc
Go to the documentation of this file.
1 
8 
10 
12 
14  std::unique_ptr<reco::GenParticleRefVector>& partons) {
15  // loop over particles and select partons
16  for (reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it) {
17  if (it->status() != 11)
18  continue; // only accept status==11 particles
19  if (!CandMCTagUtils::isParton(*it))
20  continue; // skip particle if not a parton
21 
22  partons->push_back(reco::GenParticleRef(particles, it - particles->begin()));
23  }
24 
25  return;
26 }
CandMCTag.h
CandMCTagUtils::isParton
bool isParton(const reco::Candidate &c)
Definition: CandMCTag.cc:46
edm::Handle< reco::GenParticleCollection >
ecalTrigSettings_cff.particles
particles
Definition: ecalTrigSettings_cff.py:11
edm::Ref< GenParticleCollection >
SherpaPartonSelector::SherpaPartonSelector
SherpaPartonSelector()
Definition: SherpaPartonSelector.cc:9
SherpaPartonSelector::run
void run(const edm::Handle< reco::GenParticleCollection > &particles, std::unique_ptr< reco::GenParticleRefVector > &partons) override
Definition: SherpaPartonSelector.cc:13
dqmAnalyzer_cff.partons
partons
Definition: dqmAnalyzer_cff.py:27
SherpaPartonSelector::~SherpaPartonSelector
~SherpaPartonSelector() override
Definition: SherpaPartonSelector.cc:11
SherpaPartonSelector.h