71 produces<reco::PFJetCollection>();
72 produces<JetToPFCandidateAssociation>(
"pfCandAssocMapForIsolation");
78 typedef std::vector<std::unordered_set<uint32_t> > JetToConstitMap;
84 double chargedHadronEnergy = 0.;
85 double neutralHadronEnergy = 0.;
86 double chargedEmEnergy = 0.;
87 double neutralEmEnergy = 0.;
88 double chargedMuEnergy = 0.;
89 int chargedMultiplicity = 0;
90 int neutralMultiplicity = 0;
92 for ( reco::Jet::Constituents::const_iterator jetConstituent = jetConstituents.begin();
93 jetConstituent != jetConstituents.end(); ++jetConstituent ) {
98 chargedHadronEnergy += pfCandidate->
energy();
99 ++chargedMultiplicity;
102 chargedEmEnergy += pfCandidate->
energy();
103 ++chargedMultiplicity;
106 chargedMuEnergy += pfCandidate->
energy();
107 ++chargedMultiplicity;
112 neutralEmEnergy += pfCandidate->
energy();
113 ++neutralMultiplicity;
117 neutralHadronEnergy += pfCandidate->
energy();
118 ++neutralMultiplicity;
122 <<
"PFCandidate: Pt = " << pfCandidate->
pt() <<
", eta = " << pfCandidate->
eta() <<
", phi = " << pfCandidate->
phi()
123 <<
" has invalid particleID = " << pfCandidate->
particleId() <<
" !!" << std::endl;
128 <<
"Jet constituent: Pt = " << pfCandidate->
pt() <<
", eta = " << pfCandidate->
eta() <<
", phi = " << pfCandidate->
phi()
129 <<
" is not of type PFCandidate !!" << std::endl;
151 for ( reco::Jet::Constituents::const_iterator jetConstituent = jetConstituents.begin();
152 jetConstituent != jetConstituents.end(); ++jetConstituent ) {
155 getJetConstituents(*subjet, jet_and_subjetConstituents);
157 jet_and_subjetConstituents.push_back(*jetConstituent);
165 auto const & collection_cand = (*pfCandidates);
166 std::vector<reco::PFCandidateRef> pfCandidates_exclJetConstituents;
167 size_t numPFCandidates = pfCandidates->size();
168 for (
size_t pfCandidateIdx = 0; pfCandidateIdx < numPFCandidates; ++pfCandidateIdx ) {
169 if(!(
deltaR2(collection_cand[pfCandidateIdx], jet)<1.0))
continue;
170 bool isJetConstituent = constitmap.count(pfCandidateIdx);
171 if ( !(isJetConstituent^invert) ) {
173 pfCandidates_exclJetConstituents.push_back(pfCandidate);
176 return pfCandidates_exclJetConstituents;
181 std::cout <<
"#" << label <<
" = " << jetConstituents.size() <<
":" << std::endl;
183 for ( reco::Jet::Constituents::const_iterator jetConstituent = jetConstituents.begin();
184 jetConstituent != jetConstituents.end(); ++jetConstituent ) {
185 std::cout <<
" jetConstituent #" << idx <<
": Pt = " << (*jetConstituent)->pt() <<
", eta = " << (*jetConstituent)->eta() <<
", phi = " << (*jetConstituent)->phi() << std::endl;
194 std::cout <<
"<BoostedTauSeedsProducer::produce (moduleLabel = " <<
moduleLabel_ <<
")>:" << std::endl;
202 assert((subjets->
size() % 2) == 0);
207 std::cout <<
"#pfCandidates = " << pfCandidates->size() << std::endl;
210 auto selectedSubjets = std::make_unique<reco::PFJetCollection>();
213 auto selectedSubjetPFCandidateAssociationForIsolation = std::make_unique<JetToPFCandidateAssociation>(&evt.
productGetter());
217 JetToConstitMap constitmap(subjets->
size());
220 const auto& thesubjets = *subjets;
221 for(
unsigned i = 0;
i < thesubjets.size(); ++
i ) {
222 for (
unsigned j = 0; j < thesubjets[
i].numberOfDaughters(); ++j ) {
223 constitmap[
i].emplace(thesubjets[
i].daughterPtr(j).
key());
230 assert(subjet1 && subjet2);
232 std::cout <<
"processing jet #" <<
idx <<
":" << std::endl;
233 std::cout <<
" subjet1: Pt = " << subjet1->
pt() <<
", eta = " << subjet1->
eta() <<
", phi = " << subjet1->
phi() <<
", mass = " << subjet1->
mass()
234 <<
" (#constituents = " << subjet1->
nConstituents() <<
", area = " << subjet1->
jetArea() <<
")" << std::endl;
235 std::cout <<
" subjet2: Pt = " << subjet2->
pt() <<
", eta = " << subjet2->
eta() <<
", phi = " << subjet2->
phi() <<
", mass = " << subjet2->
mass()
236 <<
" (#constituents = " << subjet2->
nConstituents() <<
", area = " << subjet2->
jetArea() <<
")" << std::endl;
244 getJetConstituents(*subjet1, subjetConstituents1);
246 getJetConstituents(*subjet2, subjetConstituents2);
248 printJetConstituents(
"subjetConstituents1", subjetConstituents1);
249 printJetConstituents(
"subjetConstituents2", subjetConstituents2);
252 selectedSubjets->push_back(convertToPFJet(*subjet1, subjetConstituents1));
254 selectedSubjets->push_back(convertToPFJet(*subjet2, subjetConstituents2));
258 std::vector<reco::PFCandidateRef> pfCandidatesNotInSubjet1 = getPFCandidates_exclJetConstituents(*subjet1, pfCandidates, constitmap[2*
idx], subjetConstituents2, 1.
e-4,
false);
259 std::vector<reco::PFCandidateRef> pfCandidatesNotInSubjet2 = getPFCandidates_exclJetConstituents(*subjet2, pfCandidates, constitmap[2*idx+1], subjetConstituents1, 1.
e-4,
false);
261 std::cout <<
"#pfCandidatesNotInSubjet1 = " << pfCandidatesNotInSubjet1.size() << std::endl;
262 std::cout <<
"#pfCandidatesNotInSubjet2 = " << pfCandidatesNotInSubjet2.size() << std::endl;
267 for(
auto const& pfCandidate : pfCandidatesNotInSubjet1 ) {
268 selectedSubjetPFCandidateAssociationForIsolation->insert(subjetRef1, pfCandidate);
270 for(
auto const& pfCandidate : pfCandidatesNotInSubjet2 ) {
271 selectedSubjetPFCandidateAssociationForIsolation->insert(subjetRef2, pfCandidate);
276 evt.
put(
std::move(selectedSubjetPFCandidateAssociationForIsolation),
"pfCandAssocMapForIsolation");
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
double eta() const final
momentum pseudorapidity
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Base class for all types of Jets.
EDProductGetter const & productGetter() const
~BoostedTauSeedsProducer() override
bool exists(std::string const ¶meterName) const
checks if a parameter exists
std::vector< Constituent > Constituents
double pt() const final
transverse momentum
float mNeutralHadronEnergy
virtual Constituents getJetConstituents() const
list of constituents
Jets made from PFObjects.
float mChargedHadronEnergy
BoostedTauSeedsProducer(const edm::ParameterSet &)
virtual void setJetArea(float fArea)
set jet area
#define DEFINE_FWK_MODULE(type)
Container::value_type value_type
edm::View< reco::Jet > JetView
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidates_
const Point & vertex() const override
vertex position (overwritten by PF...)
double energy() const final
energy
const LorentzVector & p4() const final
four-momentum Lorentz vector
RefProd< PROD > getRefBeforePut()
edm::AssociationMap< edm::OneToMany< std::vector< reco::PFJet >, std::vector< reco::PFCandidate >, unsigned int > > JetToPFCandidateAssociation
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
std::vector< PFJet > PFJetCollection
collection of PFJet objects
Particle reconstructed by the particle flow algorithm.
virtual float jetArea() const
get jet area
virtual int nConstituents() const
of constituents
const_reference at(size_type pos) const
edm::EDGetTokenT< JetView > srcSubjets_
void produce(edm::Event &, const edm::EventSetup &) override
virtual ParticleType particleId() const
double phi() const final
momentum azimuthal angle
double mass() const final
mass