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" );
150 if( genEvtInfoProduct.
isValid() ) {
155 if( moduleName.find(
"Pythia6")!=std::string::npos )
157 else if( moduleName.find(
"Pythia8")!=std::string::npos )
159 else if( moduleName.find(
"Herwig6")!=std::string::npos )
161 else if( moduleName.find(
"ThePEG")!=std::string::npos )
163 else if( moduleName.find(
"Sherpa")!=std::string::npos )
173 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.";
177 edm::LogInfo(
"PartonModeDefined") <<
"Using Pythia6 parton selection mode.";
182 edm::LogInfo(
"PartonModeDefined") <<
"Using Pythia8 parton selection mode.";
187 edm::LogInfo(
"PartonModeDefined") <<
"Using Herwig6 parton selection mode.";
192 edm::LogInfo(
"PartonModeDefined") <<
"Using Herwig++ parton selection mode.";
197 edm::LogInfo(
"PartonModeDefined") <<
"Using Sherpa parton selection mode.";
200 throw cms::Exception(
"InvalidPartonMode") <<
"Parton selection mode is invalid: " <<
partonMode_ <<
", use Auto | Pythia6 | Pythia8 | Herwig6 | Herwig++ | Sherpa" << std::endl;
208 auto bHadrons = std::make_unique<reco::GenParticleRefVector>();
209 auto cHadrons = std::make_unique<reco::GenParticleRefVector>();
210 auto partons = std::make_unique<reco::GenParticleRefVector>();
211 auto physicsPartons = std::make_unique<reco::GenParticleRefVector>();
212 auto leptons = std::make_unique<reco::GenParticleRefVector>();
215 for(reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it)
221 bool hasbHadronDaughter =
false;
222 for(
size_t i=0;
i < it->numberOfDaughters(); ++
i)
226 if( hasbHadronDaughter )
continue;
235 bool hascHadronDaughter =
false;
236 for(
size_t i=0;
i < it->numberOfDaughters(); ++
i)
240 if( hascHadronDaughter )
continue;
257 for(reco::GenParticleCollection::const_iterator it = particles->begin(); it != particles->end(); ++it)
261 if( !(it->status()==3 || ((
partonMode_==
"Pythia8" ) && (it->status()==23))))
continue;
271 iEvent.
put(
std::move(physicsPartons),
"physicsPartons" );
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.
PartonSelectorPtr partonSelector_
Selects hadrons and partons from a collection of GenParticles.
bool isMuon(const Candidate &part)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
bool fullChainPhysPartons_
#define DEFINE_FWK_MODULE(type)
bool hasCharm(const reco::Candidate &c)
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
std::string moduleName(Provenance const &provenance)
Sherpa parton selector derived from the base parton selector.
void addDefault(ParameterSetDescription const &psetDescription)
~HadronAndPartonSelector() override
bool isElectron(const Candidate &part)
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)
HadronAndPartonSelector(const edm::ParameterSet &)
Provenance getProvenance(BranchID const &theID) const
bool hasBottom(const reco::Candidate &c)
const edm::EDGetTokenT< GenEventInfoProduct > srcToken_
bool isTau(const Candidate &part)