CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
CorrectedMETProducer_namespace Namespace Reference

Classes

class  CorrectedMETFactoryT
 

Functions

template<typename T >
reco::Candidate::LorentzVector correctedP4 (const T &rawMEt, const CorrMETData &correction)
 
template<typename T >
double correctedSumEt (const T &rawMEt, const CorrMETData &correction)
 

Function Documentation

template<typename T >
reco::Candidate::LorentzVector CorrectedMETProducer_namespace::correctedP4 ( const T rawMEt,
const CorrMETData correction 
)

Definition at line 41 of file CorrectedMETProducerT.h.

References CorrMETData::mex, CorrMETData::mey, and mathSSE::sqrt().

42  {
43  double correctedMEtPx = rawMEt.px() + correction.mex;
44  double correctedMEtPy = rawMEt.py() + correction.mey;
45  double correctedMEtPt = sqrt(correctedMEtPx*correctedMEtPx + correctedMEtPy*correctedMEtPy);
46  return reco::Candidate::LorentzVector(correctedMEtPx, correctedMEtPy, 0., correctedMEtPt);
47  }
T sqrt(T t)
Definition: SSEVec.h:18
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
double mey
Definition: CorrMETData.h:18
double mex
Definition: CorrMETData.h:17
template<typename T >
double CorrectedMETProducer_namespace::correctedSumEt ( const T rawMEt,
const CorrMETData correction 
)

Definition at line 50 of file CorrectedMETProducerT.h.

References CorrMETData::sumet.

51  {
52  return rawMEt.sumEt() + correction.sumet;
53  }
double sumet
Definition: CorrMETData.h:20