CMS 3D CMS Logo

METAlgo.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: METAlgorithms
4 // Class: METAlgo
5 //
6 // Original Authors: Michael Schmitt, Richard Cavanaugh The University of Florida
7 // Created: May 31, 2005
8 //
9 
10 //____________________________________________________________________________||
14 
15 //____________________________________________________________________________||
17  double globalThreshold,
20  for (auto const& candPtr : candidates.ptrs()) {
21  const reco::Candidate* cand = candPtr.get();
22  float weight = (weights != nullptr) ? (*weights)[candPtr] : 1.0;
23  if (!(cand->et() * weight > globalThreshold))
24  continue;
25  p4 += cand->p4() * weight;
26  }
28 
30  ret.mex = met.Px();
31  ret.mey = met.Py();
32 
33  ret.mez = met.Pz(); // included here since it might be useful
34  // for Data Quality Monitering as it should be
35  // symmetrically distributed about the origin
36 
37  ret.met = met.Pt();
38 
39  double et = 0.0;
40  for (auto const& candPtr : candidates.ptrs()) {
41  const reco::Candidate* cand = candPtr.get();
42  float weight = (weights != nullptr) ? (*weights)[candPtr] : 1.0;
43  if (!(cand->et() * weight > globalThreshold))
44  continue;
45  et += cand->et() * weight;
46  }
47 
48  ret.sumet = et;
49 
50  return ret;
51 }
52 
53 //____________________________________________________________________________||
ret
prodAgent to be discontinued
Definition: weight.py:1
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
Structure containing data common to all types of MET.
Definition: CommonMETData.h:12
CommonMETData run(const edm::View< reco::Candidate > &candidates, double globalThreshold=0.0, edm::ValueMap< float > const *weights=nullptr)
Definition: METAlgo.cc:16