CMS 3D CMS Logo

HadronAndPartonSelector.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: HadronAndPartonSelector
4 // Class: HadronAndPartonSelector
5 //
37 //
38 // Original Author: Dinko Ferencek
39 // Created: Tue Nov 5 22:43:43 CET 2013
40 //
41 //
42 
43 
44 // system include files
45 #include <memory>
46 
47 // user include files
50 
53 
55 
69 
70 //
71 // constants, enums and typedefs
72 //
73 typedef boost::shared_ptr<BasePartonSelector> PartonSelectorPtr;
74 
75 //
76 // class declaration
77 //
78 
80  public:
82  ~HadronAndPartonSelector() override;
83 
84  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
85 
86  private:
87  void produce(edm::Event&, const edm::EventSetup&) override;
88 
89  // ----------member data ---------------------------
90  const edm::EDGetTokenT<GenEventInfoProduct> srcToken_; // To get handronizer module type
91  const edm::EDGetTokenT<reco::GenParticleCollection> particlesToken_; // Input GenParticle collection
92 
93  std::string partonMode_; // Parton selection mode
97 };
98 
99 //
100 // static data member definitions
101 //
102 
103 //
104 // constructors and destructor
105 //
107 
108  srcToken_(mayConsume<GenEventInfoProduct>( iConfig.getParameter<edm::InputTag>("src") )),
109  particlesToken_(consumes<reco::GenParticleCollection>( iConfig.getParameter<edm::InputTag>("particles") )),
110  partonMode_(iConfig.getParameter<std::string>("partonMode")),
111  fullChainPhysPartons_(iConfig.getParameter<bool>("fullChainPhysPartons"))
112 
113 {
114  //register your products
115  produces<reco::GenParticleRefVector>( "bHadrons" );
116  produces<reco::GenParticleRefVector>( "cHadrons" );
117  produces<reco::GenParticleRefVector>( "algorithmicPartons" );
118  produces<reco::GenParticleRefVector>( "physicsPartons" );
119  produces<reco::GenParticleRefVector>( "leptons" );
120 
121  partonSelectorSet_=false;
122  partonSelector_=nullptr;
123 }
124 
125 
127 {
128 
129  // do anything here that needs to be done at desctruction time
130  // (e.g. close files, deallocate resources etc.)
131 
132 }
133 
134 
135 //
136 // member functions
137 //
138 
139 // ------------ method called to produce the data ------------
140 void
142 {
143  // determine hadronizer type (done only once per job)
144  if( partonMode_=="Auto" )
145  {
146  edm::Handle<GenEventInfoProduct> genEvtInfoProduct;
147  iEvent.getByToken(srcToken_, genEvtInfoProduct);
148 
149  std::string moduleName = "";
150  if( genEvtInfoProduct.isValid() ) {
151  const edm::Provenance& prov = iEvent.getProvenance(genEvtInfoProduct.id());
152  moduleName = edm::moduleName(prov);
153  }
154 
155  if( moduleName.find("Pythia6")!=std::string::npos )
156  partonMode_="Pythia6";
157  else if( moduleName.find("Pythia8")!=std::string::npos )
158  partonMode_="Pythia8";
159  else if( moduleName.find("Herwig6")!=std::string::npos )
160  partonMode_="Herwig6";
161  else if( moduleName.find("ThePEG")!=std::string::npos )
162  partonMode_="Herwig++";
163  else if( moduleName.find("Herwig7")!=std::string::npos )
164  partonMode_="Herwig++";
165  else if( moduleName.find("Sherpa")!=std::string::npos )
166  partonMode_="Sherpa";
167  else
168  partonMode_="Undefined";
169  }
170 
171  // set the parton selection mode (done only once per job)
172  if( !partonSelectorSet_ )
173  {
174  if ( partonMode_=="Undefined" )
175  edm::LogWarning("UndefinedPartonMode") << "Could not automatically determine the hadronizer type and set the correct parton selection mode. Parton-based jet flavour will not be defined.";
176  else if ( partonMode_=="Pythia6" )
177  {
179  edm::LogInfo("PartonModeDefined") << "Using Pythia6 parton selection mode.";
180  }
181  else if ( partonMode_=="Pythia8" )
182  {
184  edm::LogInfo("PartonModeDefined") << "Using Pythia8 parton selection mode.";
185  }
186  else if ( partonMode_=="Herwig6" )
187  {
189  edm::LogInfo("PartonModeDefined") << "Using Herwig6 parton selection mode.";
190  }
191  else if ( partonMode_=="Herwig++" )
192  {
194  edm::LogInfo("PartonModeDefined") << "Using Herwig++ parton selection mode.";
195  }
196  else if ( partonMode_=="Sherpa" )
197  {
199  edm::LogInfo("PartonModeDefined") << "Using Sherpa parton selection mode.";
200  }
201  else
202  throw cms::Exception("InvalidPartonMode") <<"Parton selection mode is invalid: " << partonMode_ << ", use Auto | Pythia6 | Pythia8 | Herwig6 | Herwig++ | Sherpa" << std::endl;
203 
204  partonSelectorSet_=true;
205  }
206 
208  iEvent.getByToken(particlesToken_, particles);
209 
210  auto bHadrons = std::make_unique<reco::GenParticleRefVector>();
211  auto cHadrons = std::make_unique<reco::GenParticleRefVector>();
212  auto partons = std::make_unique<reco::GenParticleRefVector>();
213  auto physicsPartons = std::make_unique<reco::GenParticleRefVector>();
214  auto leptons = std::make_unique<reco::GenParticleRefVector>();
215 
216  // loop over particles and select b and c hadrons and leptons
217  for(reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it)
218  {
219  // if b hadron
220  if( CandMCTagUtils::hasBottom( *it ) )
221  {
222  // check if any of the daughters is also a b hadron
223  bool hasbHadronDaughter = false;
224  for(size_t i=0; i < it->numberOfDaughters(); ++i)
225  {
226  if( CandMCTagUtils::hasBottom( *(it->daughter(i)) ) ) { hasbHadronDaughter = true; break; }
227  }
228  if( hasbHadronDaughter ) continue; // skip excited b hadrons that have other b hadrons as daughters
229 
230  bHadrons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
231  }
232 
233  // if c hadron
234  if( CandMCTagUtils::hasCharm( *it ) )
235  {
236  // check if any of the daughters is also a c hadron
237  bool hascHadronDaughter = false;
238  for(size_t i=0; i < it->numberOfDaughters(); ++i)
239  {
240  if( CandMCTagUtils::hasCharm( *(it->daughter(i)) ) ) { hascHadronDaughter = true; break; }
241  }
242  if( hascHadronDaughter ) continue; // skip excited c hadrons that have other c hadrons as daughters
243 
244  cHadrons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
245  }
246 
247  // status==1 electrons and muons
248  if( ( reco::isElectron( *it ) || reco::isMuon( *it ) ) && it->status()==1 )
249  leptons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
250 
251  // status==2 taus
252  if( reco::isTau( *it ) && it->status()==2 )
253  leptons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
254  }
255 
256  // select algorithmic partons
257 
258  if ( partonMode_!="Undefined" ) {
259  partonSelector_->run(particles,partons);
260  }
261 
262  // select physics partons
263  for(reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it)
264  {
266  {
267  if( !(it->status()==3 || (( partonMode_=="Pythia8" ) && (it->status()==23)))) continue;
268  }
269  if( !CandMCTagUtils::isParton( *it ) ) continue; // skip particle if not a parton
270  physicsPartons->push_back( reco::GenParticleRef( particles, it - particles->begin() ) );
271  }
272 
273  iEvent.put(std::move(bHadrons), "bHadrons" );
274  iEvent.put(std::move(cHadrons), "cHadrons" );
275  iEvent.put(std::move(partons), "algorithmicPartons" );
276  iEvent.put(std::move(physicsPartons), "physicsPartons" );
277  iEvent.put(std::move(leptons), "leptons" );
278 }
279 
280 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
281 void
283  //The following says we do not know what parameters are allowed so do no validation
284  // Please change this to state exactly what you do use, even if it is no parameters
286  desc.setUnknown();
287  descriptions.addDefault(desc);
288 }
289 
290 //define this as a plug-in
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
Selects hadrons and partons from a collection of GenParticles.
bool isMuon(const Candidate &part)
Definition: pdgIdUtils.h:11
ProductID id() const
Definition: HandleBase.cc:15
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool hasCharm(const reco::Candidate &c)
Definition: CandMCTag.cc:37
Herwig++ parton selector derived from the base parton selector.
const edm::EDGetTokenT< reco::GenParticleCollection > particlesToken_
Herwig6 parton selector derived from the base parton selector.
void produce(edm::Event &, const edm::EventSetup &) override
int iEvent
Definition: GenABIO.cc:230
std::string moduleName(Provenance const &provenance)
Definition: Provenance.cc:27
Sherpa parton selector derived from the base parton selector.
void addDefault(ParameterSetDescription const &psetDescription)
bool isElectron(const Candidate &part)
Definition: pdgIdUtils.h:7
bool isValid() const
Definition: HandleBase.h:74
boost::shared_ptr< BasePartonSelector > PartonSelectorPtr
Pythia6 parton selector derived from the base parton selector.
Pythia8 parton selector derived from the base parton selector.
bool isParton(const reco::Candidate &c)
Definition: CandMCTag.cc:48
fixed size matrix
HLT enums.
HadronAndPartonSelector(const edm::ParameterSet &)
Provenance getProvenance(BranchID const &theID) const
Definition: Event.cc:129
bool hasBottom(const reco::Candidate &c)
Definition: CandMCTag.cc:26
def move(src, dest)
Definition: eostools.py:510
const edm::EDGetTokenT< GenEventInfoProduct > srcToken_
bool isTau(const Candidate &part)
Definition: pdgIdUtils.h:15