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( 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
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:85
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
RefProd< PROD > getRefBeforePut()
Definition: Event.h:97
edm::InputTag src_
Definition: TopInitSubset.h:25
static const int tID
Definition: TopInitSubset.h:10
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")