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  src_ ( cfg.getParameter<edm::InputTag>( "src" ) )
5 {
6  produces<reco::GenParticleCollection>();
7 }
8 
10 {
11 }
12 
13 void
15 {
17  evt.getByLabel(src_, 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( t->status()==TopInitID::status && std::abs(t->pdgId())==TopInitID::tID ){ //is top
32  for(int idx=0; idx<(int)t->numberOfMothers(); ++idx){
33  reco::GenParticle* cand = new reco::GenParticle( t->mother(idx)->threeCharge(), t->mother(idx)->p4(),
34  t->mother(idx)->vertex(), t->mother(idx)->pdgId(),
35  t->mother(idx)->status(), false );
36  std::auto_ptr<reco::GenParticle> ptr( cand );
37  sel.push_back( *ptr );
38  }
39  break;
40  }
41  }
42 }
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
TopInitSubset(const edm::ParameterSet &)
Definition: TopInitSubset.cc:3
#define abs(x)
Definition: mlp_lapack.h:159
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:84
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:359
RefProd< PROD > getRefBeforePut()
Definition: Event.h:96
edm::InputTag src_
Definition: TopInitSubset.h:25
static const int tID
Definition: TopInitSubset.h:10
static const int status
Definition: TopInitSubset.h:9
tuple src
Definition: align_tpl.py:87