CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
NoPileUpPFMEtDataProducer Class Reference

#include <NoPileUpPFMEtDataProducer.h>

Inheritance diagram for NoPileUpPFMEtDataProducer:
edm::stream::EDProducer<>

Public Member Functions

 NoPileUpPFMEtDataProducer (const edm::ParameterSet &)
 
 ~NoPileUpPFMEtDataProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

double dZcut_
 
std::string jetEnOffsetCorrLabel_
 
PileupJetIdentifier::Id jetIdSelection_
 
PFJetIDSelectionFunctorlooseJetIdAlgo_
 
int maxWarnings_
 
double minJetPt_
 
double minJetPtForMEtCov_
 
std::string moduleLabel_
 
int numWarnings_
 
PFMEtSignInterfaceBasepfMEtSignInterface_
 
edm::EDGetTokenT< reco::VertexCollectionsrcHardScatterVertex_
 
edm::EDGetTokenT< edm::ValueMap< int > > srcJetIds_
 
edm::EDGetTokenT< reco::PFJetCollectionsrcJets_
 
edm::EDGetTokenT< reco::PFJetCollectionsrcJetsForMEtCov_
 
edm::EDGetTokenT< reco::PFCandidateCollectionsrcPFCandidates_
 
edm::EDGetTokenT< edm::View< reco::PFCandidate > > srcPFCandidatesView_
 
edm::EDGetTokenT< PFCandToVertexAssMapsrcPFCandToVertexAssociations_
 
int verbosity_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Produce input objects used to compute MVA/No-PU MET

Authors
Phil Harris, CERN Christian Veelken, LLR

Definition at line 39 of file NoPileUpPFMEtDataProducer.h.

Constructor & Destructor Documentation

◆ NoPileUpPFMEtDataProducer()

NoPileUpPFMEtDataProducer::NoPileUpPFMEtDataProducer ( const edm::ParameterSet cfg)

Definition at line 15 of file NoPileUpPFMEtDataProducer.cc.

References edm::ParameterSet::addParameter(), looper::cfg, dZcut_, Exception, jetEnOffsetCorrLabel_, jetIdSelection_, PileupJetIdentifier::kLoose, PileupJetIdentifier::kMedium, PileupJetIdentifier::kTight, looseJetIdAlgo_, maxWarnings_, minJetPt_, minJetPtForMEtCov_, numWarnings_, pfMEtSignInterface_, srcHardScatterVertex_, srcJetIds_, srcJets_, srcJetsForMEtCov_, srcPFCandidates_, srcPFCandidatesView_, srcPFCandToVertexAssociations_, AlCaHLTBitMon_QueryRunRegistry::string, and verbosity_.

16  : moduleLabel_(cfg.getParameter<std::string>("@module_label")),
17  looseJetIdAlgo_(nullptr),
18  pfMEtSignInterface_(nullptr) {
19  srcJets_ = consumes<reco::PFJetCollection>(cfg.getParameter<edm::InputTag>("srcJets"));
20  srcJetIds_ = consumes<edm::ValueMap<int> >(cfg.getParameter<edm::InputTag>("srcJetIds"));
21  minJetPt_ = cfg.getParameter<double>("minJetPt");
22  std::string jetIdSelection_string = cfg.getParameter<std::string>("jetIdSelection");
23  if (jetIdSelection_string == "loose")
25  else if (jetIdSelection_string == "medium")
27  else if (jetIdSelection_string == "tight")
29  else
30  throw cms::Exception("NoPileUpPFMEtDataProducer")
31  << "Invalid Configuration Parameter 'jetIdSelection' = " << jetIdSelection_string << " !!\n";
32  jetEnOffsetCorrLabel_ = cfg.getParameter<std::string>("jetEnOffsetCorrLabel");
33 
34  srcPFCandidates_ = consumes<reco::PFCandidateCollection>(cfg.getParameter<edm::InputTag>("srcPFCandidates"));
35  srcPFCandidatesView_ = consumes<edm::View<reco::PFCandidate> >(cfg.getParameter<edm::InputTag>("srcPFCandidates"));
37  consumes<PFCandToVertexAssMap>(cfg.getParameter<edm::InputTag>("srcPFCandToVertexAssociations"));
38  srcJetsForMEtCov_ = mayConsume<reco::PFJetCollection>(cfg.getParameter<edm::InputTag>("srcJetsForMEtCov"));
39  minJetPtForMEtCov_ = cfg.getParameter<double>("minJetPtForMEtCov");
40  srcHardScatterVertex_ = consumes<reco::VertexCollection>(cfg.getParameter<edm::InputTag>("srcHardScatterVertex"));
41  dZcut_ = cfg.getParameter<double>("dZcut");
42 
43  edm::ParameterSet cfgPFJetIdAlgo;
44  cfgPFJetIdAlgo.addParameter<std::string>("version", "FIRSTDATA");
45  cfgPFJetIdAlgo.addParameter<std::string>("quality", "LOOSE");
46  looseJetIdAlgo_ = new PFJetIDSelectionFunctor(cfgPFJetIdAlgo);
47 
48  pfMEtSignInterface_ = new PFMEtSignInterfaceBase(cfg.getParameter<edm::ParameterSet>("resolution"));
49 
50  maxWarnings_ = (cfg.exists("maxWarnings")) ? cfg.getParameter<int>("maxWarnings") : 1;
51  numWarnings_ = 0;
52 
53  verbosity_ = (cfg.exists("verbosity")) ? cfg.getParameter<int>("verbosity") : 0;
54 
55  produces<reco::PUSubMETCandInfoCollection>("jetInfos");
56  produces<reco::PUSubMETCandInfoCollection>("pfCandInfos");
57 }
edm::EDGetTokenT< PFCandToVertexAssMap > srcPFCandToVertexAssociations_
edm::EDGetTokenT< reco::PFJetCollection > srcJetsForMEtCov_
edm::EDGetTokenT< reco::VertexCollection > srcHardScatterVertex_
edm::EDGetTokenT< edm::View< reco::PFCandidate > > srcPFCandidatesView_
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidates_
void addParameter(std::string const &name, T const &value)
Definition: ParameterSet.h:135
edm::EDGetTokenT< reco::PFJetCollection > srcJets_
PFJetIDSelectionFunctor * looseJetIdAlgo_
PFMEtSignInterfaceBase * pfMEtSignInterface_
PF Jet selector for pat::Jets.
edm::EDGetTokenT< edm::ValueMap< int > > srcJetIds_
PileupJetIdentifier::Id jetIdSelection_

◆ ~NoPileUpPFMEtDataProducer()

NoPileUpPFMEtDataProducer::~NoPileUpPFMEtDataProducer ( )
override

Definition at line 59 of file NoPileUpPFMEtDataProducer.cc.

References looseJetIdAlgo_, and pfMEtSignInterface_.

59  {
60  delete looseJetIdAlgo_;
61  delete pfMEtSignInterface_;
62 }
PFJetIDSelectionFunctor * looseJetIdAlgo_
PFMEtSignInterfaceBase * pfMEtSignInterface_

Member Function Documentation

◆ produce()

void NoPileUpPFMEtDataProducer::produce ( edm::Event evt,
const edm::EventSetup es 
)
overrideprivate

Definition at line 130 of file NoPileUpPFMEtDataProducer.cc.

References PFMEtSignInterfaceBase::compResolution(), funct::cos(), dZcut_, reco::LeafCandidate::energy(), Exception, flag_isWithinFakeJet, flag_isWithinJetForMEtCov, flag_isWithinSelectedJet, edm::Ptr< T >::get(), metsig::SigInputObj::get_energy(), metsig::SigInputObj::get_phi(), metsig::SigInputObj::get_sigma_e(), metsig::SigInputObj::get_sigma_tan(), metsig::SigInputObj::get_type(), edm::Event::getByToken(), heavyIonCSV_trainingSettings::idx, edm::EDGetTokenT< T >::isUninitialized(), noPuUtils::isVertexAssociated_fast(), reco::PUSubMETCandInfo::isWithinJet(), metsig::jet, jetEnOffsetCorrLabel_, PhotonMonitor_cff::jetId, jetIdSelection_, PDWG_EXODelayedJetMET_cff::jets, reco::PUSubMETCandInfo::kChHS, noPuUtils::kChHSAssoc, reco::PUSubMETCandInfo::kChPU, edm::Ptr< T >::key(), reco::PUSubMETCandInfo::kHS, reco::PUSubMETCandInfo::kNeutral, reco::PUSubMETCandInfo::kPU, LogDebug, maxWarnings_, minJetPt_, minJetPtForMEtCov_, moduleLabel_, eostools::move(), numWarnings_, PileupJetIdentifier::passJetId(), zmumugammaAnalyzer_cfi::pfCandidates, pfMEtSignInterface_, edm::Event::put(), noPuUtils::reversePFCandToVertexAssociation(), metsig::SigInputObj::set(), reco::PUSubMETCandInfo::setCharge(), reco::PUSubMETCandInfo::setChargedEnFrac(), reco::PUSubMETCandInfo::setIsWithinJet(), reco::PUSubMETCandInfo::setMEtSignObj(), reco::PUSubMETCandInfo::setOffsetEnCorr(), reco::PUSubMETCandInfo::setP4(), reco::LeafCandidate::setP4(), reco::PUSubMETCandInfo::setPassesLooseJetId(), reco::PUSubMETCandInfo::setType(), funct::sin(), srcHardScatterVertex_, srcJetIds_, srcJets_, srcJetsForMEtCov_, srcPFCandidates_, srcPFCandidatesView_, and srcPFCandToVertexAssociations_.

130  {
131  LogDebug("produce") << "<NoPileUpPFMEtDataProducer::produce>:\n"
132  << " moduleLabel = " << moduleLabel_ << std::endl;
133 
134  // get jets
136  evt.getByToken(srcJets_, jets);
137 
138  typedef edm::ValueMap<int> jetIdMap;
139  edm::Handle<jetIdMap> jetIds;
140  evt.getByToken(srcJetIds_, jetIds);
141 
142  // get jets for computing contributions to PFMEt significance matrix
145  evt.getByToken(srcJetsForMEtCov_, jetsForMEtCov);
146 
147  // get PFCandidates
150 
151  std::vector<int> pfCandidateFlags(pfCandidates->size());
152  std::vector<const reco::PFJet*> pfCandidateToJetAssociations(pfCandidates->size());
153 
155  evt.getByToken(srcPFCandidates_, pfCandidateHandle);
156 
157  // get PFCandidate-to-vertex associations and "the" hard-scatter vertex
158  edm::Handle<PFCandToVertexAssMap> pfCandToVertexAssociations;
159  evt.getByToken(srcPFCandToVertexAssociations_, pfCandToVertexAssociations);
160 
161  noPuUtils::reversedPFCandToVertexAssMap pfCandToVertexAssociations_reversed =
162  noPuUtils::reversePFCandToVertexAssociation(*pfCandToVertexAssociations);
163 
164  edm::Handle<reco::VertexCollection> hardScatterVertex;
165  evt.getByToken(srcHardScatterVertex_, hardScatterVertex);
166 
167  auto jetInfos = std::make_unique<reco::PUSubMETCandInfoCollection>();
168  auto pfCandInfos = std::make_unique<reco::PUSubMETCandInfoCollection>();
169 
170  // const JetCorrector* jetEnOffsetCorrector = nullptr;
171  if (!jetEnOffsetCorrLabel_.empty()) {
172  throw cms::Exception("NoPileUpPFMEtDataProducer::produce")
173  << "Failed to access Jet corrections for = " << jetEnOffsetCorrLabel_ << " !!\n"
174  << "During the migration from the deprecated ::JetCorrector to the\n"
175  << "new reco::JetCorrector class, this module was never completely migrated.\n"
176  << "The usage of the deprecated class was removed and replaced by this exception.\n"
177  << "To use the new reco::JetCorrector class, someone must do the work\n"
178  << "to implement and test usage of reco::JetCollector in this class.\n";
179  }
180 
181  size_t numJets = jets->size();
182  for (size_t iJet = 0; iJet < numJets; ++iJet) {
183  reco::PFJetRef jet(jets, iJet);
184  if (!(jet->pt() > minJetPt_))
185  continue;
186 
187  bool passesLooseJetId = (*looseJetIdAlgo_)(*jet);
188  if (!passesLooseJetId) {
189  setPFCandidateFlag(*jet, *pfCandidates, pfCandidateFlags, flag_isWithinFakeJet, numWarnings_, maxWarnings_);
190  }
191  setPFCandidateFlag(*jet, *pfCandidates, pfCandidateFlags, flag_isWithinSelectedJet, numWarnings_, maxWarnings_);
192 
193  reco::PUSubMETCandInfo jetInfo;
194  jetInfo.setP4(jet->p4());
195  int jetId = (*jetIds)[jet];
196  bool jetIdSelection_passed = PileupJetIdentifier::passJetId(jetId, jetIdSelection_);
197  jetInfo.setType((jetIdSelection_passed) ? reco::PUSubMETCandInfo::kHS : reco::PUSubMETCandInfo::kPU);
198  jetInfo.setPassesLooseJetId(passesLooseJetId);
199  double jetEnergy_uncorrected = jet->chargedHadronEnergy() + jet->neutralHadronEnergy() + jet->photonEnergy() +
200  jet->electronEnergy() + jet->muonEnergy() + jet->HFHadronEnergy() +
201  jet->HFEMEnergy();
202  double jetPx_uncorrected = cos(jet->phi()) * sin(jet->theta()) * jetEnergy_uncorrected;
203  double jetPy_uncorrected = sin(jet->phi()) * sin(jet->theta()) * jetEnergy_uncorrected;
204  double jetPz_uncorrected = cos(jet->theta()) * jetEnergy_uncorrected;
206  jetPx_uncorrected, jetPy_uncorrected, jetPz_uncorrected, jetEnergy_uncorrected);
207  reco::PFJet rawJet(*jet);
208  rawJet.setP4(rawJetP4);
209  double jetNeutralEnFrac = (jetEnergy_uncorrected > 0.)
210  ? (jet->neutralEmEnergy() + jet->neutralHadronEnergy()) / jetEnergy_uncorrected
211  : -1.;
212  jetInfo.setChargedEnFrac((1 - jetNeutralEnFrac));
213  // jetInfo.setOffsetEnCorr(
214  // (jetEnOffsetCorrector) ? rawJet.energy() * (1. - jetEnOffsetCorrector->correction(rawJet, evt, es)) : 0.);
215  jetInfo.setOffsetEnCorr(0.);
216 
218 
219  jetInfos->push_back(jetInfo);
220  }
221  LogDebug("produce") << "#jetInfos = " << jetInfos->size() << std::endl;
222 
223  for (reco::PFJetCollection::const_iterator jet = jets->begin(); jet != jets->end(); ++jet) {
224  if (jet->pt() > minJetPtForMEtCov_) {
225  setPFCandidateFlag(*jet,
226  *pfCandidates,
227  pfCandidateFlags,
229  numWarnings_,
230  maxWarnings_,
231  &pfCandidateToJetAssociations);
232  }
233  }
234 
235  size_t numPFCandidates = pfCandidates->size();
236  for (size_t iPFCandidate = 0; iPFCandidate < numPFCandidates; ++iPFCandidate) {
237  reco::PFCandidatePtr pfCandidatePtr = pfCandidates->ptrAt(iPFCandidate);
238 
239  int idx = pfCandidatePtr.key();
240  reco::PUSubMETCandInfo pfCandInfo;
241  pfCandInfo.setP4(pfCandidatePtr->p4());
242  pfCandInfo.setCharge(pfCandidatePtr->charge());
243  pfCandInfo.setType(-1);
244  // CV: need to call isVertexAssociated_fast instead of isVertexAssociated function
245  // (makes run-time of MVAPFMEtDataProducer::produce decrease from ~1s per event to ~0.35s per event)
246  //int vtxAssociationType = isVertexAssociated(*pfCandidatePtr, *pfCandToVertexAssociations, *hardScatterVertex, dZcut_);
247  reco::PFCandidateRef pfCandidateRef(pfCandidateHandle, iPFCandidate);
248  int vtxAssociationType = noPuUtils::isVertexAssociated_fast(
249  pfCandidateRef, pfCandToVertexAssociations_reversed, *hardScatterVertex, dZcut_, numWarnings_, maxWarnings_);
250  bool isHardScatterVertex_associated = (vtxAssociationType == noPuUtils::kChHSAssoc);
251  if (pfCandidatePtr->charge() == 0)
253  else if (isHardScatterVertex_associated)
255  else
257  pfCandInfo.setIsWithinJet((pfCandidateFlags[idx] & flag_isWithinSelectedJet));
258  if (pfCandInfo.isWithinJet())
259  pfCandInfo.setPassesLooseJetId((pfCandidateFlags[idx] & flag_isWithinFakeJet));
260  else
261  pfCandInfo.setPassesLooseJetId(true);
262 
263  // CV: for PFCandidates that are within PFJets (of Pt between 'minJetPtForMEtCov' and 'minJetPt'),
264  // take contribution to PFMEt significance matrix from associated PFJet.
265  // (energy uncertainty scaled by ratio of PFCandidate/PFJet energy)
266  const reco::PFJet* jet_matched = pfCandidateToJetAssociations[idx];
267  if (jet_matched) {
268  metsig::SigInputObj pfCandResolution = pfMEtSignInterface_->compResolution(pfCandidatePtr.get());
269  metsig::SigInputObj jetResolution = pfMEtSignInterface_->compResolution(jet_matched);
270 
271  metsig::SigInputObj metSign;
272  metSign.set(pfCandResolution.get_type(),
273  pfCandResolution.get_energy(),
274  pfCandResolution.get_phi(),
275  jetResolution.get_sigma_e() * (pfCandidatePtr->energy() / jet_matched->energy()),
276  jetResolution.get_sigma_tan());
277  pfCandInfo.setMEtSignObj(metSign);
278  } else {
279  pfCandInfo.setMEtSignObj(pfMEtSignInterface_->compResolution(pfCandidatePtr.get()));
280  }
281 
282  pfCandInfos->push_back(pfCandInfo);
283  }
284 
285  LogDebug("produce") << "#pfCandInfos = " << pfCandInfos->size() << std::endl;
286 
287  evt.put(std::move(jetInfos), "jetInfos");
288  evt.put(std::move(pfCandInfos), "pfCandInfos");
289 }
bool isWithinJet() const
Definition: PUSubMETData.h:37
double get_phi() const
Definition: SigInputObj.h:38
edm::EDGetTokenT< PFCandToVertexAssMap > srcPFCandToVertexAssociations_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
const int flag_isWithinSelectedJet
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
double get_sigma_e() const
Definition: SigInputObj.h:39
constexpr bool isUninitialized() const noexcept
Definition: EDGetToken.h:104
void setP4(const reco::Candidate::LorentzVector p4)
Definition: PUSubMETData.h:46
edm::EDGetTokenT< reco::PFJetCollection > srcJetsForMEtCov_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:540
const int flag_isWithinFakeJet
noPuUtils::reversedPFCandToVertexAssMap reversePFCandToVertexAssociation(const PFCandToVertexAssMap &)
edm::EDGetTokenT< reco::VertexCollection > srcHardScatterVertex_
Jets made from PFObjects.
Definition: PFJet.h:20
void set(const std::string &m_type, const double &m_energy, const double &m_phi, const double &m_sigma_e, const double &m_sigma_tan)
Definition: SigInputObj.h:42
edm::EDGetTokenT< edm::View< reco::PFCandidate > > srcPFCandidatesView_
static bool passJetId(int flag, Id level)
const int flag_isWithinJetForMEtCov
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidates_
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
void setIsWithinJet(bool isWJ)
Definition: PUSubMETData.h:53
edm::EDGetTokenT< reco::PFJetCollection > srcJets_
PFMEtSignInterfaceBase * pfMEtSignInterface_
void setPassesLooseJetId(float jetId)
Definition: PUSubMETData.h:54
T const * get() const
Returns C++ pointer to the item.
Definition: Ptr.h:139
void setCharge(int charge)
Definition: PUSubMETData.h:50
edm::EDGetTokenT< edm::ValueMap< int > > srcJetIds_
void setChargedEnFrac(float chEnF)
Definition: PUSubMETData.h:57
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
double get_energy() const
Definition: SigInputObj.h:37
double get_sigma_tan() const
Definition: SigInputObj.h:40
void setType(int type)
Definition: PUSubMETData.h:49
key_type key() const
Definition: Ptr.h:163
int isVertexAssociated_fast(const reco::PFCandidateRef &, const noPuUtils::reversedPFCandToVertexAssMap &, const reco::VertexCollection &, double, int &, int)
metsig::SigInputObj compResolution(const T *particle) const
PileupJetIdentifier::Id jetIdSelection_
std::string get_type() const
Definition: SigInputObj.h:36
void setMEtSignObj(metsig::SigInputObj msig)
Definition: PUSubMETData.h:59
void setOffsetEnCorr(float offset)
Definition: PUSubMETData.h:55
def move(src, dest)
Definition: eostools.py:511
#define LogDebug(id)
double energy() const final
energy

Member Data Documentation

◆ dZcut_

double NoPileUpPFMEtDataProducer::dZcut_
private

Definition at line 61 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ jetEnOffsetCorrLabel_

std::string NoPileUpPFMEtDataProducer::jetEnOffsetCorrLabel_
private

Definition at line 53 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ jetIdSelection_

PileupJetIdentifier::Id NoPileUpPFMEtDataProducer::jetIdSelection_
private

Definition at line 52 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ looseJetIdAlgo_

PFJetIDSelectionFunctor* NoPileUpPFMEtDataProducer::looseJetIdAlgo_
private

◆ maxWarnings_

int NoPileUpPFMEtDataProducer::maxWarnings_
private

Definition at line 67 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ minJetPt_

double NoPileUpPFMEtDataProducer::minJetPt_
private

Definition at line 51 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ minJetPtForMEtCov_

double NoPileUpPFMEtDataProducer::minJetPtForMEtCov_
private

Definition at line 59 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ moduleLabel_

std::string NoPileUpPFMEtDataProducer::moduleLabel_
private

◆ numWarnings_

int NoPileUpPFMEtDataProducer::numWarnings_
private

Definition at line 68 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ pfMEtSignInterface_

PFMEtSignInterfaceBase* NoPileUpPFMEtDataProducer::pfMEtSignInterface_
private

◆ srcHardScatterVertex_

edm::EDGetTokenT<reco::VertexCollection> NoPileUpPFMEtDataProducer::srcHardScatterVertex_
private

Definition at line 60 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcJetIds_

edm::EDGetTokenT<edm::ValueMap<int> > NoPileUpPFMEtDataProducer::srcJetIds_
private

Definition at line 50 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcJets_

edm::EDGetTokenT<reco::PFJetCollection> NoPileUpPFMEtDataProducer::srcJets_
private

Definition at line 49 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcJetsForMEtCov_

edm::EDGetTokenT<reco::PFJetCollection> NoPileUpPFMEtDataProducer::srcJetsForMEtCov_
private

Definition at line 58 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcPFCandidates_

edm::EDGetTokenT<reco::PFCandidateCollection> NoPileUpPFMEtDataProducer::srcPFCandidates_
private

Definition at line 55 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcPFCandidatesView_

edm::EDGetTokenT<edm::View<reco::PFCandidate> > NoPileUpPFMEtDataProducer::srcPFCandidatesView_
private

Definition at line 56 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ srcPFCandToVertexAssociations_

edm::EDGetTokenT<PFCandToVertexAssMap> NoPileUpPFMEtDataProducer::srcPFCandToVertexAssociations_
private

Definition at line 57 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer(), and produce().

◆ verbosity_

int NoPileUpPFMEtDataProducer::verbosity_
private

Definition at line 70 of file NoPileUpPFMEtDataProducer.h.

Referenced by NoPileUpPFMEtDataProducer().