CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TopInitSubset.cc
Go to the documentation of this file.
2 
4  srcToken_ ( consumes<reco::GenParticleCollection>(cfg.getParameter<edm::InputTag>( "src" ) ) )
5 {
6  produces<reco::GenParticleCollection>();
7 }
8 
10 {
11 }
12 
13 void
15 {
17  evt.getByToken(srcToken_, src);
18 
20  std::auto_ptr<reco::GenParticleCollection> sel( new reco::GenParticleCollection );
21 
22  //fill output collection
23  fillOutput( *src, *sel );
24 
25  evt.put( sel );
26 }
27 
29 {
30  for(reco::GenParticleCollection::const_iterator t=src.begin(); t!=src.end(); ++t){
31  if( std::abs(t->pdgId())==TopInitID::tID ){
32  bool hasTopMother = false;
33  for(unsigned idx=0; idx<t->numberOfMothers(); ++idx)
34  if( std::abs(t->mother(idx)->pdgId())==TopInitID::tID )
35  hasTopMother = true;
36  if(hasTopMother)
37  continue;
38  for(unsigned idx=0; idx<t->numberOfMothers(); ++idx){
39  reco::GenParticle* cand = new reco::GenParticle( t->mother(idx)->threeCharge(), t->mother(idx)->p4(),
40  t->mother(idx)->vertex(), t->mother(idx)->pdgId(),
41  t->mother(idx)->status(), false );
42  std::auto_ptr<reco::GenParticle> ptr( cand );
43  sel.push_back( *ptr );
44  }
45  break;
46  }
47  }
48 }
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
tuple t
Definition: tree.py:139
tuple cfg
Definition: looper.py:259
TopInitSubset(const edm::ParameterSet &)
Definition: TopInitSubset.cc:3
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
virtual void produce(edm::Event &, const edm::EventSetup &)
void fillOutput(const reco::GenParticleCollection &, reco::GenParticleCollection &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
RefProd< PROD > getRefBeforePut()
Definition: Event.h:140
edm::EDGetTokenT< reco::GenParticleCollection > srcToken_
Definition: TopInitSubset.h:25
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
static const int tID
Definition: TopInitSubset.h:10
volatile std::atomic< bool > shutdown_flag false
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")