13 addRadiation_(cfg.getParameter<
bool>(
"addRadiation")),
14 showerModel_ (kStart),
22 else if(mode==
"kStable")
25 throw cms::Exception(
"Configuration") << mode <<
" is not a supported FillMode!\n";
33 throw cms::Exception(
"Configuration") << mode <<
" is not a supported RunMode!\n";
38 produces<reco::GenParticleCollection>();
63 std::vector<const reco::GenParticle*> tops;
92 std::vector<const reco::GenParticle*> decaying_tops =
findDecayingTops(*src);
105 std::vector<const reco::GenParticle*>
108 std::vector<const reco::GenParticle*> tops;
109 for(reco::GenParticleCollection::const_iterator
t=parts.begin();
t!=parts.end(); ++
t){
111 tops.push_back( &(*
t) );
120 std::vector<const reco::GenParticle*> tops;
121 for (reco::GenParticleCollection::const_iterator
t = parts.begin();
122 t != parts.end(); ++
t) {
126 bool hasTopMother =
false;
127 for (
unsigned idx = 0;
idx <
t->numberOfMothers(); ++
idx) {
134 tops.push_back(&(*
t));
144 std::vector<const reco::GenParticle*> tops;
145 for (reco::GenParticleCollection::const_iterator
t = parts.begin();
146 t != parts.end(); ++
t) {
150 bool hasTopDaughter =
false;
151 for (
unsigned idx = 0;
idx <
t->numberOfDaughters(); ++
idx) {
153 hasTopDaughter =
true;
158 tops.push_back(&(*
t));
168 unsigned int w_index = 0;
193 bool containsItself =
false;
194 unsigned int d_idx = 0;
197 containsItself =
true;
221 for(std::vector<const reco::GenParticle*>::const_iterator it=tops.begin(); it!=tops.end(); ++it){
234 bool containsWBoson=
false, containsQuarkDaughter=
false;
239 if(containsQuarkDaughter && containsWBoson)
246 <<
" Failed to find top quarks in decay chain. Will assume that this a \n" 247 <<
" non-top sample and produce an empty decaySubset.\n";
250 " Can not find back any of the supported hadronization models. Models \n" 251 " which are supported are: \n" 252 " Pythia LO(+PS): Top(status 3) --> WBoson(status 3), Quark(status 3)\n" 253 " Herwig NLO(+PS): Top(status 2) --> Top(status 3) --> Top(status 2) \n");
264 if (genEvtInfoProduct.
isValid()) {
266 genEvtInfoProduct.
id());
268 if (moduleName ==
"ExternalGeneratorFilter") {
270 edm::LogInfo(
"SpecialModule") <<
"GEN events are produced by ExternalGeneratorFilter, " 271 <<
"which is a wrapper of the original module: " <<
moduleName;
276 if (moduleName.find(
"Pythia6") != std::string::npos)
278 else if (moduleName.find(
"Pythia8") != std::string::npos)
280 else if (moduleName.find(
"Herwig6") != std::string::npos)
282 else if (moduleName.find(
"ThePEG") != std::string::npos)
285 else if (moduleName.find(
"Sherpa") != std::string::npos)
295 unsigned nTops = tops.size();
296 for(std::vector<const reco::GenParticle*>::iterator it=tops.begin(); it!=tops.end();) {
298 bool isContained=
false;
299 bool expectedStatus=
false;
302 "showerModel_!=kPythia && top->begin()==top->end()\n");
314 if(!expectedStatus) {
318 <<
" W boson does not have the expected status. This happens, e.g., \n" 319 <<
" with MC@NLO in the case of additional ttbar pairs from radiated \n" 320 <<
" gluons. We hope everything is fine, remove the correspdonding top \n" 321 <<
" quark from our list since it is not part of the primary ttbar pair \n" 322 <<
" and try to continue. \n";
327 if(tops.empty() && nTops!=0)
329 " Did not find a W boson with appropriate status for any of the top \n" 330 " quarks in this event. This means that the hadronization of the W \n" 331 " boson might be screwed up or there is another problem with the \n" 332 " particle listing in this MC sample. Please contact an expert. \n");
339 unsigned int statusFlag;
344 for(std::vector<const reco::GenParticle*>::const_iterator it=tops.begin(); it!=tops.end(); ++it){
348 target.push_back( *topPtr );
352 std::vector<int> topDaughters;
356 std::vector<int> wDaughters;
360 "showerModel_!=kPythia && t->begin()==t->end()\n");
365 std::unique_ptr<reco::GenParticle> bPtr(
new reco::GenParticle( td->threeCharge(),
p4( td, statusFlag ), td->vertex(), td->pdgId(), statusFlag,
false ) );
366 target.push_back( *bPtr );
376 "showerModel_!=kPythia && td->begin()==td->end()\n");
381 target.push_back( *wPtr );
391 "showerModel_!=kPythia && buffer->begin()==buffer->end()\n");
396 std::unique_ptr<reco::GenParticle> qPtr(
new reco::GenParticle( wd->threeCharge(),
p4( wd, statusFlag ), wd->vertex(), wd->pdgId(), statusFlag,
false) );
397 target.push_back( *qPtr );
415 target.push_back( *radPtr );
430 std::unique_ptr<reco::GenParticle> sPtr( cand );
431 target.push_back( *sPtr );
432 if(ts->begin()!=ts->end()){
442 refs_[ iTop ] = topDaughters;
443 refs_[ iW ] = wDaughters;
448 const std::vector<const reco::GenParticle*>& primalTops,
449 const std::vector<const reco::GenParticle*>& decayingTops,
451 std::vector<const reco::GenParticle*>::const_iterator top_start;
452 std::vector<const reco::GenParticle*>::const_iterator top_end;
454 top_start = primalTops.begin();
455 top_end = primalTops.end();
457 top_start = decayingTops.begin();
458 top_end = decayingTops.end();
460 for (std::vector<const reco::GenParticle*>::const_iterator it =
461 top_start; it != top_end; ++it) {
468 target.push_back(*topPtr);
473 std::vector<int> topDaughters;
477 std::vector<int> wDaughters;
482 td != final_top->
end(); ++td) {
488 td->p4(), td->vertex(), td->pdgId(),
489 td->status(),
false));
490 target.push_back(*qPtr);
497 static_cast<const reco::GenParticle*>(&*td));
505 td->p4(), td->vertex(), td->pdgId(),
506 td->status(),
false));
507 target.push_back(*WPtr);
516 static_cast<const reco::GenParticle*>(&*td));
518 wd != decaying_W->
end(); ++wd) {
523 wd->p4(), wd->vertex(),
524 wd->pdgId(), wd->status(),
526 target.push_back(*qPtr);
530 static_cast<const reco::GenParticle*>(&*wd));
545 std::unique_ptr<reco::GenParticle> radPtr(
547 td->p4(), td->vertex(), td->pdgId(), td->status(),
false ) );
548 target.push_back( *radPtr );
559 refs_[iTop] = topDaughters;
560 refs_[iW] = wDaughters;
580 vec+=
p4(
p, statusFlag );
593 if( vec.mass()-(*top)->mass()>0 ){
630 vec+=
p4(
p, statusFlag);
649 std::unique_ptr<reco::GenParticle> ptr(
new reco::GenParticle( daughter->threeCharge(), daughter->p4(), daughter->vertex(), daughter->pdgId(), daughter->status(),
false) );
650 target.push_back( *ptr );
651 daughters.push_back( ++idx );
654 if(!daughters.empty()) {
664 daughter != part->
end(); ++daughter) {
667 if (daughter->pdgId() != part->
pdgId()) {
671 daughter->p4(), daughter->vertex(),
672 daughter->pdgId(), daughter->status(),
674 target.push_back(*ptr);
675 daughters.push_back(++idx);
678 if (!daughters.empty()) {
690 std::unique_ptr<reco::GenParticle> ptr(
new reco::GenParticle( daughter->threeCharge(), daughter->p4(), daughter->vertex(), daughter->pdgId(), daughter->status(),
false) );
691 target.push_back( *ptr );
693 daughters.push_back( ++idx );
699 if(!daughters.empty()) {
720 for(reco::GenParticleCollection::iterator
p=sel.begin();
p!=sel.end(); ++
p, ++
idx){
722 std::map<int, std::vector<int> >::const_iterator
daughters=
refs_.find( idx );
723 if( daughters!=
refs_.end() ){
724 for(std::vector<int>::const_iterator daughter = daughters->second.begin();
725 daughter!=daughters->second.end(); ++daughter){
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
int pdgId() const final
PDG identifier.
const Candidate * daughter(size_type) const override
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
int threeCharge() const final
electric charge
void addDaughters(int &idx, const reco::GenParticle::const_iterator part, reco::GenParticleCollection &target, bool recursive=true)
recursively fill vector for all further decay particles of a given particle
ShowerModel checkShowerModel(const std::vector< const reco::GenParticle * > &tops) const
check the decay chain for the used shower model
ShowerModel showerModel_
parton shower mode (filled in checkShowerModel)
void addRadiation(int &idx, const reco::GenParticle::const_iterator part, reco::GenParticleCollection &target)
fill vector including all radiations from quarks originating from W/top
size_t numberOfMothers() const override
number of mothers
def setup(process, global_tag, zero_tesla=False)
virtual int threeCharge() const =0
electric charge
std::vector< const reco::GenParticle * > findTops(const reco::GenParticleCollection &parts)
find top quarks in list of input particles
void addDaughter(const typename daughters::value_type &)
add a daughter via a reference
void clearReferences()
clear references
virtual int status() const =0
status word
edm::EDGetTokenT< GenEventInfoProduct > genEventInfo_srcToken_
input tag for the genEventInfo source
std::string moduleName(Provenance const &provenance)
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector
virtual int pdgId() const =0
PDG identifier.
~TopDecaySubset() override
default destructor
const_iterator end() const
last daughter const_iterator
const Point & vertex() const override
vertex position (overwritten by PF...)
reco::Particle::LorentzVector p4(const std::vector< const reco::GenParticle * >::const_iterator top, int statusFlag)
calculate lorentz vector from input (dedicated to top reconstruction)
void checkWBosons(std::vector< const reco::GenParticle * > &tops) const
check whether W bosons are contained in the original gen particle listing
Abs< T >::type abs(const T &t)
bool addRadiation_
add radiation or not?
const LorentzVector & p4() const final
four-momentum Lorentz vector
ShowerModel
classification of potential shower types
void produce(edm::Event &event, const edm::EventSetup &setup) override
write output into the event
std::vector< const reco::GenParticle * > findDecayingTops(const reco::GenParticleCollection &parts)
edm::EDGetTokenT< reco::GenParticleCollection > srcToken_
input tag for the genParticle source
void fillReferences(const reco::GenParticleRefProd &refProd, reco::GenParticleCollection &target)
fill references for output vector
std::vector< const reco::GenParticle * > findPrimalTops(const reco::GenParticleCollection &parts)
size_t numberOfDaughters() const override
number of daughters
TopDecaySubset(const edm::ParameterSet &cfg)
default constructor
RunMode runMode_
run mode (Run1 || Run2)
std::map< int, std::vector< int > > refs_
management of daughter indices for fillRefs
void fillListing(const std::vector< const reco::GenParticle * > &tops, reco::GenParticleCollection &target)
fill output vector for full decay chain
int status() const final
status word
const_iterator begin() const
first daughter const_iterator
virtual const Point & vertex() const =0
vertex position
virtual size_type numberOfDaughters() const =0
number of daughters
math::XYZTLorentzVector LorentzVector
Lorentz vector.
ParameterSet const & parameterSet(Provenance const &provenance)
const Candidate * mother(size_type=0) const override
return mother at a given position, i = 0, ... numberOfMothers() - 1 (read only mode) ...
const reco::GenParticle * findPrimalW(const reco::GenParticle *top)
const reco::GenParticle * findLastParticleInChain(const reco::GenParticle *p)