CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Pythia8PartonSelector.cc
Go to the documentation of this file.
1 
10 
11 
13 {
14 }
15 
17 {
18 }
19 
20 void
22  std::auto_ptr<reco::GenParticleRefVector> & partons)
23 {
24  // loop over particles and select partons
25  for(reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it)
26  {
27  int status = it->status();
28  if( !(status==71 || status==72) ) continue; // only accept status==71 or 72 particles
29  if( !CandMCTagUtils::isParton( *it ) ) continue; // skip particle if not a parton
30 
31  partons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
32  }
33 
34  return;
35 }
bool isParton(const reco::Candidate &c)
Definition: CandMCTag.cc:48
void run(const edm::Handle< reco::GenParticleCollection > &particles, std::auto_ptr< reco::GenParticleRefVector > &partons)
tuple status
Definition: ntuplemaker.py:245