CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NoPileUpPFMEtDataProducer.cc
Go to the documentation of this file.
2 
5 
6 
7 #include <algorithm>
8 #include <math.h>
9 
10 const int flag_isWithinFakeJet = 1;
13 
14 const double dR2Min = 0.001*0.001;
15 
17  : moduleLabel_(cfg.getParameter<std::string>("@module_label")),
18  looseJetIdAlgo_(nullptr),
19  pfMEtSignInterface_(nullptr)
20 {
21  srcJets_ = consumes<reco::PFJetCollection>(cfg.getParameter<edm::InputTag>("srcJets"));
22  srcJetIds_ = consumes<edm::ValueMap<int> >(cfg.getParameter<edm::InputTag>("srcJetIds"));
23  minJetPt_ = cfg.getParameter<double>("minJetPt");
24  std::string jetIdSelection_string = cfg.getParameter<std::string>("jetIdSelection");
25  if ( jetIdSelection_string == "loose" ) jetIdSelection_ = PileupJetIdentifier::kLoose;
26  else if ( jetIdSelection_string == "medium" ) jetIdSelection_ = PileupJetIdentifier::kMedium;
27  else if ( jetIdSelection_string == "tight" ) jetIdSelection_ = PileupJetIdentifier::kTight;
28  else throw cms::Exception("NoPileUpPFMEtDataProducer")
29  << "Invalid Configuration Parameter 'jetIdSelection' = " << jetIdSelection_string << " !!\n";
30  jetEnOffsetCorrLabel_ = cfg.getParameter<std::string>("jetEnOffsetCorrLabel");
31 
32  srcPFCandidates_ = consumes<reco::PFCandidateCollection>(cfg.getParameter<edm::InputTag>("srcPFCandidates"));
33  srcPFCandidatesView_ = consumes<edm::View<reco::PFCandidate> >(cfg.getParameter<edm::InputTag>("srcPFCandidates"));
34  srcPFCandToVertexAssociations_ = consumes<PFCandToVertexAssMap>(cfg.getParameter<edm::InputTag>("srcPFCandToVertexAssociations"));
35  srcJetsForMEtCov_ = mayConsume<reco::PFJetCollection>(cfg.getParameter<edm::InputTag>("srcJetsForMEtCov"));
36  minJetPtForMEtCov_ = cfg.getParameter<double>("minJetPtForMEtCov");
37  srcHardScatterVertex_ = consumes<reco::VertexCollection>(cfg.getParameter<edm::InputTag>("srcHardScatterVertex"));
38  dZcut_ = cfg.getParameter<double>("dZcut");
39 
40  edm::ParameterSet cfgPFJetIdAlgo;
41  cfgPFJetIdAlgo.addParameter<std::string>("version", "FIRSTDATA");
42  cfgPFJetIdAlgo.addParameter<std::string>("quality", "LOOSE");
43  looseJetIdAlgo_ = new PFJetIDSelectionFunctor(cfgPFJetIdAlgo);
44 
46 
47  maxWarnings_ = ( cfg.exists("maxWarnings") ) ?
48  cfg.getParameter<int>("maxWarnings") : 1;
49  numWarnings_ = 0;
50 
51  verbosity_ = ( cfg.exists("verbosity") ) ?
52  cfg.getParameter<int>("verbosity") : 0;
53 
54  produces<reco::MVAMEtJetInfoCollection>();
55  produces<reco::MVAMEtPFCandInfoCollection>();
56 }
57 
59 {
60  delete looseJetIdAlgo_;
61  delete pfMEtSignInterface_;
62 }
63 
64 namespace
65 {
66  void setPFCandidateFlag(const reco::PFJet& pfJet,
67  const edm::View<reco::PFCandidate>& pfCandidateCollection,
68  std::vector<int>& flags, int value,
69  int& numWarnings, int maxWarnings,
70  std::vector<const reco::PFJet*>* pfCandidateToJetAssociations = nullptr) {
71 
72  std::vector<reco::PFCandidatePtr> pfConsts = pfJet.getPFConstituents();
73  for ( std::vector<reco::PFCandidatePtr>::const_iterator pfJetConstituent = pfConsts.begin(); pfJetConstituent != pfConsts.end(); ++pfJetConstituent ) {
74  std::vector<int> idxs;
75  if ( pfJetConstituent->id() == pfCandidateCollection.id() ) {
76  idxs.push_back(pfJetConstituent->key());
77  } else {
78  bool isMatched_fast = false;
79  if ( pfJetConstituent->key() < pfCandidateCollection.size() ) {
80  edm::Ptr<reco::PFCandidate> pfCandidatePtr = pfCandidateCollection.ptrAt( pfJetConstituent->key() );
81  double dR2 = deltaR2((*pfJetConstituent)->p4(), pfCandidatePtr->p4());
82  if ( dR2 < dR2Min ) {
83  idxs.push_back(pfCandidatePtr.key());
84  isMatched_fast = true;
85  }
86  }
87 
88  if ( !isMatched_fast ) {
89  size_t numPFCandidates = pfCandidateCollection.size();
90  for ( size_t iPFCandidate = 0; iPFCandidate < numPFCandidates; ++iPFCandidate ) {
91  edm::Ptr<reco::PFCandidate> pfCandidatePtr = pfCandidateCollection.ptrAt(iPFCandidate);
92  double dR2 = deltaR2((*pfJetConstituent)->p4(), pfCandidatePtr->p4());
93  if ( dR2 < dR2Min ) {
94  idxs.push_back(pfCandidatePtr.key());
95  }
96  }
97  if ( numWarnings < maxWarnings ) {
98  edm::LogWarning ("setPFCandidateFlag")
99  << " The productIDs of PFJetConstituent and PFCandidateCollection passed as function arguments don't match.\n"
100  << "NOTE: The return value will be unaffected, but the code will run MUCH slower !!";
101  ++numWarnings;
102  }
103  }
104  }
105  if ( idxs.size() ) {
106  for ( std::vector<int>::const_iterator idx = idxs.begin();
107  idx != idxs.end(); ++idx ) {
108  if ( (*idx) >= (int)flags.size() ) flags.resize(2*flags.size());
109  flags[*idx] |= value;
110  if ( pfCandidateToJetAssociations!=nullptr ) (*pfCandidateToJetAssociations)[*idx] = &pfJet;
111  }
112  } else {
113  edm::LogError ("setPFCandidateFlag")
114  << " Failed to associated PFJetConstituent with index = " << pfJetConstituent->key() << " to any PFCandidate !!";
115  }
116  }
117  }
118 
119 }
120 
122 {
123  LogDebug ("produce")
124  << "<NoPileUpPFMEtDataProducer::produce>:\n"
125  << " moduleLabel = " << moduleLabel_ << std::endl;
126 
127  // get jets
129  evt.getByToken(srcJets_, jets);
130 
131  typedef edm::ValueMap<int> jetIdMap;
132  edm::Handle<jetIdMap> jetIds;
133  evt.getByToken(srcJetIds_, jetIds);
134 
135  // get jets for computing contributions to PFMEt significance matrix
137  if ( ! srcJetsForMEtCov_.isUninitialized() ) evt.getByToken(srcJetsForMEtCov_, jetsForMEtCov);
138 
139  // get PFCandidates
140  typedef edm::View<reco::PFCandidate> PFCandidateView;
142  evt.getByToken(srcPFCandidatesView_, pfCandidates);
143 
144  std::vector<int> pfCandidateFlags(pfCandidates->size());
145  std::vector<const reco::PFJet*> pfCandidateToJetAssociations(pfCandidates->size());
146 
148  evt.getByToken(srcPFCandidates_, pfCandidateHandle);
149 
150  // get PFCandidate-to-vertex associations and "the" hard-scatter vertex
151  edm::Handle<PFCandToVertexAssMap> pfCandToVertexAssociations;
152  evt.getByToken(srcPFCandToVertexAssociations_, pfCandToVertexAssociations);
153 
154  reversedPFCandidateToVertexAssociationMap pfCandToVertexAssociations_reversed = reversePFCandToVertexAssociation(*pfCandToVertexAssociations);
155 
156  edm::Handle<reco::VertexCollection> hardScatterVertex;
157  evt.getByToken(srcHardScatterVertex_, hardScatterVertex);
158  // if ( verbosity_ && hardScatterVertex->size() >= 1 ) {
159  // reco::Vertex::Point hardScatterVertexPos = hardScatterVertex->front().position();
160  // std::cout << "hard-scatter Vertex: x = " << hardScatterVertexPos.x() << ", y = " << hardScatterVertexPos.y() << ", z = " << hardScatterVertexPos.z() << std::endl;
161  // for ( PFCandToVertexAssMap::const_iterator pfCandToVertexAssociation = pfCandToVertexAssociations->begin();
162  // pfCandToVertexAssociation != pfCandToVertexAssociations->end(); ++pfCandToVertexAssociation ) {
163  // reco::VertexRef vertex = pfCandToVertexAssociation->key;
164  // const PFCandQualityPairVector& pfCandidates_vertex = pfCandToVertexAssociation->val;
165  // for ( PFCandQualityPairVector::const_iterator pfCandidate_vertex = pfCandidates_vertex.begin();
166  // pfCandidate_vertex != pfCandidates_vertex.end(); ++pfCandidate_vertex ) {
167  // const reco::PFCandidate& pfCandidate = (*pfCandidate_vertex->first);
168  // int pfCandToVertexAssocQuality = pfCandidate_vertex->second;
169  // if ( pfCandidate.pt() > 2. && pfCandidate.charge() != 0 ) {
170  // double dZ = -1.;
171  // if ( pfCandidate.trackRef().isNonnull() ) dZ = std::abs(pfCandidate.trackRef()->dz(hardScatterVertexPos));
172  // else if ( pfCandidate.gsfTrackRef().isNonnull() ) dZ = std::abs(pfCandidate.gsfTrackRef()->dz(hardScatterVertexPos));
173  // std::cout << "pfCand #" << pfCandidate_vertex->first.key() << ": Pt = " << pfCandidate.pt() << ", eta = " << pfCandidate.eta() << ", phi = " << pfCandidate.phi()
174  // << " (charge = " << pfCandidate.charge() << ", dZ = " << dZ << ")" << std::endl;
175  // reco::Vertex::Point vertexPos = vertex->position();
176  // std::cout << " associated vertex (quality = " << pfCandToVertexAssocQuality << "):"
177  // << " x = " << vertexPos.x() << ", y = " << vertexPos.y() << ", z = " << vertexPos.z() << std::endl;
178  // }
179  // }
180  // }
181  // }
182 
183  std::auto_ptr<reco::MVAMEtJetInfoCollection> jetInfos(new reco::MVAMEtJetInfoCollection());
184  std::auto_ptr<reco::MVAMEtPFCandInfoCollection> pfCandInfos(new reco::MVAMEtPFCandInfoCollection());
185 
186  const JetCorrector* jetEnOffsetCorrector = nullptr;
187  if ( jetEnOffsetCorrLabel_ != "" ) {
188  jetEnOffsetCorrector = JetCorrector::getJetCorrector(jetEnOffsetCorrLabel_, es);
189  if ( !jetEnOffsetCorrector )
190  throw cms::Exception("NoPileUpPFMEtDataProducer::produce")
191  << "Failed to access Jet corrections for = " << jetEnOffsetCorrLabel_ << " !!\n";
192  }
193 
194  size_t numJets = jets->size();
195  for ( size_t iJet = 0; iJet < numJets; ++iJet ) {
196  reco::PFJetRef jet(jets, iJet);
197  if ( !(jet->pt() > minJetPt_) ) continue;
198 
199  bool passesLooseJetId = (*looseJetIdAlgo_)(*jet);
200  if ( !passesLooseJetId ) {
201  setPFCandidateFlag(*jet, *pfCandidates, pfCandidateFlags, flag_isWithinFakeJet, numWarnings_, maxWarnings_);
202  }
203  setPFCandidateFlag(*jet, *pfCandidates, pfCandidateFlags, flag_isWithinSelectedJet, numWarnings_, maxWarnings_);
204 
205  reco::MVAMEtJetInfo jetInfo;
206  jetInfo.p4_ = jet->p4();
207  int jetId = (*jetIds)[jet];
208  bool jetIdSelection_passed = PileupJetIdentifier::passJetId(jetId, jetIdSelection_);
209  jetInfo.type_ = ( jetIdSelection_passed ) ?
211  jetInfo.passesLooseJetId_ = passesLooseJetId;
212  double jetEnergy_uncorrected =
213  jet->chargedHadronEnergy()
214  + jet->neutralHadronEnergy()
215  + jet->photonEnergy()
216  + jet->electronEnergy()
217  + jet->muonEnergy()
218  + jet->HFHadronEnergy()
219  + jet->HFEMEnergy();
220  double jetPx_uncorrected = cos(jet->phi())*sin(jet->theta())*jetEnergy_uncorrected;
221  double jetPy_uncorrected = sin(jet->phi())*sin(jet->theta())*jetEnergy_uncorrected;
222  double jetPz_uncorrected = cos(jet->theta())*jetEnergy_uncorrected;
223  reco::Candidate::LorentzVector rawJetP4(jetPx_uncorrected, jetPy_uncorrected, jetPz_uncorrected, jetEnergy_uncorrected);
224  reco::PFJet rawJet(*jet);
225  rawJet.setP4(rawJetP4);
226  double jetNeutralEnFrac = ( jetEnergy_uncorrected > 0. ) ?
227  (jet->neutralEmEnergy() + jet->neutralHadronEnergy())/jetEnergy_uncorrected : -1.;
228  jetInfo.neutralEnFrac_ = jetNeutralEnFrac;
229  jetInfo.offsetEnCorr_ = ( jetEnOffsetCorrector ) ?
230  rawJet.energy()*(1. - jetEnOffsetCorrector->correction(rawJet, evt, es)) : 0.;
232  // if ( verbosity_ ) {
233  // std::cout << " jet: Pt = " << jet->pt() << ", eta = " << jet->eta() << ", phi = " << jet->phi() << ":"
234  // << " sigma(En)/En = " << (jetInfo.pfMEtSignObj_.get_sigma_e()/jet->energy()) << std::endl;
235  // std::cout << "(offsetEnCorr = " << jetInfo.offsetEnCorr_ << ")" << std::endl;
236  // std::cout << " id. flags: PU = " << jetIdSelection_passed << ", anti-noise = " << passesLooseJetId << std::endl;
237 
238  // size_t numPFJetConstituents = jet->getPFConstituents().size();
239  // std::cout << "numConstituents = " << numPFJetConstituents << std::endl;
240  // for ( size_t iPFJetConstituent = 0; iPFJetConstituent < numPFJetConstituents; ++iPFJetConstituent ) {
241  // const reco::PFCandidatePtr& pfJetConstituent = jet->getPFConstituents()[iPFJetConstituent];
242  // std::cout << " constituent #" << iPFJetConstituent << ": Pt = " << pfJetConstituent->pt() << ", eta = " << pfJetConstituent->eta() << ", phi = " << pfJetConstituent->phi() << std::endl;
243  // }
244  // }
245  jetInfos->push_back(jetInfo);
246  }
247  LogDebug ("produce") << "#jetInfos = " << jetInfos->size() << std::endl;
248 
249  for ( reco::PFJetCollection::const_iterator jet = jets->begin();
250  jet != jets->end(); ++jet ) {
251  if ( jet->pt() > minJetPtForMEtCov_ ) {
252  setPFCandidateFlag(*jet, *pfCandidates, pfCandidateFlags, flag_isWithinJetForMEtCov, numWarnings_, maxWarnings_, &pfCandidateToJetAssociations);
253  }
254  }
255 
256  size_t numPFCandidates = pfCandidates->size();
257  for ( size_t iPFCandidate = 0; iPFCandidate < numPFCandidates; ++iPFCandidate ) {
258  reco::PFCandidatePtr pfCandidatePtr = pfCandidates->ptrAt(iPFCandidate);
259 
260  int idx = pfCandidatePtr.key();
261  reco::MVAMEtPFCandInfo pfCandInfo;
262  pfCandInfo.p4_ = pfCandidatePtr->p4();
263  pfCandInfo.charge_ = pfCandidatePtr->charge();
264  pfCandInfo.type_ = -1;
265  // CV: need to call isVertexAssociated_fast instead of isVertexAssociated function
266  // (makes run-time of MVAPFMEtDataProducer::produce decrease from ~1s per event to ~0.35s per event)
267  //int vtxAssociationType = isVertexAssociated(*pfCandidatePtr, *pfCandToVertexAssociations, *hardScatterVertex, dZcut_);
268  reco::PFCandidateRef pfCandidateRef(pfCandidateHandle, iPFCandidate);
269  int vtxAssociationType = isVertexAssociated_fast(pfCandidateRef, pfCandToVertexAssociations_reversed, *hardScatterVertex, dZcut_, numWarnings_, maxWarnings_);
270  bool isHardScatterVertex_associated = (vtxAssociationType == noPuUtils::kChHSAssoc);
271  if ( pfCandidatePtr->charge() != 0 ) pfCandInfo.type_ = reco::MVAMEtPFCandInfo::kNeutral;
272  else if ( isHardScatterVertex_associated ) pfCandInfo.type_ = reco::MVAMEtPFCandInfo::kNoPileUpCharged;
274  pfCandInfo.isWithinJet_ = (pfCandidateFlags[idx] & flag_isWithinSelectedJet);
275  if ( pfCandInfo.isWithinJet_ ) pfCandInfo.passesLooseJetId_ = (pfCandidateFlags[idx] & flag_isWithinFakeJet);
276  else pfCandInfo.passesLooseJetId_ = true;
277  // CV: for PFCandidates that are within PFJets (of Pt between 'minJetPtForMEtCov' and 'minJetPt'),
278  // take contribution to PFMEt significance matrix from associated PFJet.
279  // (energy uncertainty scaled by ratio of PFCandidate/PFJet energy)
280  const reco::PFJet* jet_matched = pfCandidateToJetAssociations[idx];
281  if ( jet_matched ) {
282  metsig::SigInputObj pfCandResolution = pfMEtSignInterface_->compResolution(pfCandidatePtr.get());
283  metsig::SigInputObj jetResolution = pfMEtSignInterface_->compResolution(jet_matched);
284  //std::cout << " jet (matched): Pt = " << jet_matched->pt() << ", eta = " << jet_matched->eta() << ", phi = " << jet_matched->phi() << ":"
285  // << " sigma(En)/En = " << (jetResolution.get_sigma_e()/jet_matched->energy()) << std::endl;
286  //std::cout << "(pfCand: type = " << getPFCandidateType(*pfCandidate) << ","
287  // << " Pt = " << pfCandidatePtr->pt() << ", eta = " << pfCandidatePtr->eta() << ", phi = " << pfCandidatePtr->phi() << ":"
288  // << " sigma(En)/En = " << (pfCandResolution.get_sigma_e()/pfCandidatePtr->energy()) << ")" << std::endl;
289  pfCandInfo.pfMEtSignObj_.set(pfCandResolution.get_type(),
290  pfCandResolution.get_energy(),
291  pfCandResolution.get_phi(),
292  jetResolution.get_sigma_e()*(pfCandidatePtr->energy()/jet_matched->energy()),
293  jetResolution.get_sigma_tan());
294  } else {
295  pfCandInfo.pfMEtSignObj_ = pfMEtSignInterface_->compResolution(pfCandidatePtr.get());
296  //std::cout << " pfCand: type = " << getPFCandidateType(*pfCandidate) << ","
297  // << " Pt = " << pfCandidatePtr->pt() << ", eta = " << pfCandidatePtr->eta() << ", phi = " << pfCandidatePtr->phi() << ":"
298  // << " sigma(En)/En = " << (pfCandInfo.pfMEtSignObj_.get_sigma_e()/pfCandidatePtr->energy()) << std::endl;
299  }
300 
301  pfCandInfos->push_back(pfCandInfo);
302  }
303 
304  LogDebug ("produce") << "#pfCandInfos = " << pfCandInfos->size() << std::endl;
305 
306  evt.put(jetInfos);
307  evt.put(pfCandInfos);
308 }
309 
311 
#define LogDebug(id)
T getParameter(std::string const &) const
double get_sigma_tan() const
Definition: SigInputObj.h:46
edm::EDGetTokenT< PFCandToVertexAssMap > srcPFCandToVertexAssociations_
metsig::SigInputObj pfMEtSignObj_
Definition: MVAMEtData.h:36
tuple cfg
Definition: looper.py:237
const int flag_isWithinSelectedJet
key_type key() const
Definition: Ptr.h:169
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
double passesLooseJetId_
Definition: MVAMEtData.h:33
Ptr< value_type > ptrAt(size_type i) const
double get_phi() const
Definition: SigInputObj.h:44
virtual double correction(const LorentzVector &fJet) const =0
get correction using Jet information only
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
T const * get() const
Returns C++ pointer to the item.
Definition: Ptr.h:143
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
bool exists(std::string const &parameterName) const
checks if a parameter exists
virtual void setP4(const LorentzVector &p4)
set 4-momentum
size_type size() const
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
edm::EDGetTokenT< reco::PFJetCollection > srcJetsForMEtCov_
const int flag_isWithinFakeJet
edm::EDGetTokenT< reco::VertexCollection > srcHardScatterVertex_
#define nullptr
reco::Candidate::LorentzVector p4_
Definition: MVAMEtData.h:51
Jets made from PFObjects.
Definition: PFJet.h:21
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:48
edm::EDGetTokenT< edm::View< reco::PFCandidate > > srcPFCandidatesView_
std::vector< PFCandidatePtr > pfCandidates(const PFJet &jet, int particleId, bool sort=true)
reversedPFCandidateToVertexAssociationMap reversePFCandToVertexAssociation(const PFCandToVertexAssMap &)
virtual double energy() const
energy
static bool passJetId(int flag, Id level)
const int flag_isWithinJetForMEtCov
std::vector< reco::MVAMEtJetInfo > MVAMEtJetInfoCollection
Definition: MVAMEtDataFwd.h:10
reco::Candidate::LorentzVector p4_
Definition: MVAMEtData.h:29
edm::EDGetTokenT< reco::PFCandidateCollection > srcPFCandidates_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
vector< PseudoJet > jets
void addParameter(std::string const &name, T const &value)
Definition: ParameterSet.h:142
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double deltaR2(const T1 &t1, const T2 &t2)
Definition: deltaR.h:36
edm::EDGetTokenT< reco::PFJetCollection > srcJets_
NoPileUpPFMEtDataProducer(const edm::ParameterSet &)
PFJetIDSelectionFunctor * looseJetIdAlgo_
PFMEtSignInterfaceBase * pfMEtSignInterface_
PF Jet selector for pat::Jets.
std::vector< reco::MVAMEtPFCandInfo > MVAMEtPFCandInfoCollection
Definition: MVAMEtDataFwd.h:12
edm::EDGetTokenT< edm::ValueMap< int > > srcJetIds_
const double dR2Min
double get_energy() const
Definition: SigInputObj.h:43
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
static const JetCorrector * getJetCorrector(const std::string &fName, const edm::EventSetup &fSetup)
retrieve corrector from the event setup. troughs exception if something is missing ...
Definition: JetCorrector.cc:50
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:41
ProductID id() const
int isVertexAssociated_fast(const reco::PFCandidateRef &, const reversedPFCandidateToVertexAssociationMap &, const reco::VertexCollection &, double, int &, int)
virtual std::vector< reco::PFCandidatePtr > getPFConstituents() const
get all constituents
Definition: PFJet.cc:52
PileupJetIdentifier::Id jetIdSelection_
bool isUninitialized() const
Definition: EDGetToken.h:71
std::string get_type() const
Definition: SigInputObj.h:42
metsig::SigInputObj compResolution(const T *particle) const
if(conf.exists("allCellsPositionCalc"))
metsig::SigInputObj pfMEtSignObj_
Definition: MVAMEtData.h:58
moduleLabel_(iConfig.getParameter< string >("@module_label"))
void produce(edm::Event &, const edm::EventSetup &)
double get_sigma_e() const
Definition: SigInputObj.h:45