16 : moduleLabel_(
cfg.getParameter<
std::
string>(
"@module_label")),
17 looseJetIdAlgo_(nullptr),
18 pfMEtSignInterface_(nullptr) {
23 if (jetIdSelection_string ==
"loose")
25 else if (jetIdSelection_string ==
"medium")
27 else if (jetIdSelection_string ==
"tight")
31 <<
"Invalid Configuration Parameter 'jetIdSelection' = " << jetIdSelection_string <<
" !!\n";
37 consumes<PFCandToVertexAssMap>(
cfg.getParameter<
edm::InputTag>(
"srcPFCandToVertexAssociations"));
41 dZcut_ =
cfg.getParameter<
double>(
"dZcut");
45 cfgPFJetIdAlgo.addParameter<
std::string>(
"quality",
"LOOSE");
53 verbosity_ = (
cfg.exists(
"verbosity")) ?
cfg.getParameter<
int>(
"verbosity") : 0;
55 produces<reco::PUSubMETCandInfoCollection>(
"jetInfos");
56 produces<reco::PUSubMETCandInfoCollection>(
"pfCandInfos");
67 std::vector<int>&
flags,
71 std::vector<const reco::PFJet*>* pfCandidateToJetAssociations =
nullptr) {
78 for (std::vector<reco::PFCandidatePtr>::const_iterator pfJetConstituent = pfConsts.begin();
79 pfJetConstituent != pfConsts.end();
81 std::vector<int> idxs;
83 idxs.push_back(pfJetConstituent->key());
85 bool isMatched_fast =
false;
88 double dR2 =
deltaR2((*pfJetConstituent)->p4(), pfCandidatePtr->
p4());
90 idxs.push_back(pfCandidatePtr.
key());
91 isMatched_fast =
true;
95 if (!isMatched_fast) {
97 for (
size_t iPFCandidate = 0; iPFCandidate < numPFCandidates; ++iPFCandidate) {
99 double dR2 =
deltaR2((*pfJetConstituent)->p4(), pfCandidatePtr->
p4());
101 idxs.push_back(pfCandidatePtr.
key());
104 if (numWarnings < maxWarnings) {
106 <<
" The productIDs of PFJetConstituent and PFCandidateCollection passed as function arguments don't "
108 <<
"NOTE: The return value will be unaffected, but the code will run MUCH slower !!";
114 for (std::vector<int>::const_iterator
idx = idxs.begin();
idx != idxs.end(); ++
idx) {
118 if (pfCandidateToJetAssociations !=
nullptr)
119 (*pfCandidateToJetAssociations)[*
idx] = &pfJet;
123 <<
" Failed to associated PFJetConstituent with index = " << pfJetConstituent->key()
124 <<
" to any PFCandidate !!";
131 LogDebug(
"produce") <<
"<NoPileUpPFMEtDataProducer::produce>:\n"
151 std::vector<int> pfCandidateFlags(
pfCandidates->size());
152 std::vector<const reco::PFJet*> pfCandidateToJetAssociations(
pfCandidates->size());
167 auto jetInfos = std::make_unique<reco::PUSubMETCandInfoCollection>();
168 auto pfCandInfos = std::make_unique<reco::PUSubMETCandInfoCollection>();
173 if (!jetEnOffsetCorrector)
178 size_t numJets =
jets->size();
179 for (
size_t iJet = 0; iJet < numJets; ++iJet) {
184 bool passesLooseJetId = (*looseJetIdAlgo_)(*jet);
185 if (!passesLooseJetId) {
196 double jetEnergy_uncorrected =
jet->chargedHadronEnergy() +
jet->neutralHadronEnergy() +
jet->photonEnergy() +
197 jet->electronEnergy() +
jet->muonEnergy() +
jet->HFHadronEnergy() +
199 double jetPx_uncorrected =
cos(
jet->phi()) *
sin(
jet->theta()) * jetEnergy_uncorrected;
200 double jetPy_uncorrected =
sin(
jet->phi()) *
sin(
jet->theta()) * jetEnergy_uncorrected;
201 double jetPz_uncorrected =
cos(
jet->theta()) * jetEnergy_uncorrected;
203 jetPx_uncorrected, jetPy_uncorrected, jetPz_uncorrected, jetEnergy_uncorrected);
205 rawJet.
setP4(rawJetP4);
206 double jetNeutralEnFrac = (jetEnergy_uncorrected > 0.)
207 ? (
jet->neutralEmEnergy() +
jet->neutralHadronEnergy()) / jetEnergy_uncorrected
211 (jetEnOffsetCorrector) ? rawJet.
energy() * (1. - jetEnOffsetCorrector->
correction(rawJet, evt, es)) : 0.);
214 jetInfos->push_back(jetInfo);
216 LogDebug(
"produce") <<
"#jetInfos = " << jetInfos->size() << std::endl;
218 for (reco::PFJetCollection::const_iterator
jet =
jets->begin();
jet !=
jets->end(); ++
jet) {
220 setPFCandidateFlag(*
jet,
226 &pfCandidateToJetAssociations);
231 for (
size_t iPFCandidate = 0; iPFCandidate < numPFCandidates; ++iPFCandidate) {
234 int idx = pfCandidatePtr.
key();
236 pfCandInfo.
setP4(pfCandidatePtr->p4());
237 pfCandInfo.
setCharge(pfCandidatePtr->charge());
246 if (pfCandidatePtr->charge() == 0)
248 else if (isHardScatterVertex_associated)
261 const reco::PFJet* jet_matched = pfCandidateToJetAssociations[
idx];
270 jetResolution.
get_sigma_e() * (pfCandidatePtr->energy() / jet_matched->
energy()),
277 pfCandInfos->push_back(pfCandInfo);
280 LogDebug(
"produce") <<
"#pfCandInfos = " << pfCandInfos->size() << std::endl;