#include <DataFormats/METReco/interface/GenMET.h>
Public Member Functions | |
double | auxiliaryEnergy () const |
Returns other energy (undecayed Sigmas etc. | |
double | emEnergy () const |
Returns energy of electromagnetic particles. | |
GenMET (SpecificGenMETData gen_data_, double sumet_, const LorentzVector &fP4, const Point &fVertex) | |
GenMET () | |
double | hadEnergy () const |
Returns energy of hadronic particles. | |
double | invisibleEnergy () const |
Returns invisible energy. | |
virtual | ~GenMET () |
Private Member Functions | |
virtual bool | overlap (const Candidate &) const |
check overlap with another candidate | |
Private Attributes | |
SpecificGenMETData | gen_data |
Definition at line 21 of file GenMET.h.
reco::GenMET::GenMET | ( | SpecificGenMETData | gen_data_, | |
double | sumet_, | |||
const LorentzVector & | fP4, | |||
const Point & | fVertex | |||
) | [inline] |
virtual reco::GenMET::~GenMET | ( | ) | [inline, virtual] |
double reco::GenMET::auxiliaryEnergy | ( | ) | const [inline] |
Returns other energy (undecayed Sigmas etc.
)
Definition at line 38 of file GenMET.h.
References gen_data, and SpecificGenMETData::m_AuxiliaryEnergy.
Referenced by METTester::analyze().
00038 {return gen_data.m_AuxiliaryEnergy;};
double reco::GenMET::emEnergy | ( | ) | const [inline] |
Returns energy of electromagnetic particles.
Definition at line 32 of file GenMET.h.
References gen_data, and SpecificGenMETData::m_EmEnergy.
Referenced by METTester::analyze().
00032 {return gen_data.m_EmEnergy;};
double reco::GenMET::hadEnergy | ( | ) | const [inline] |
Returns energy of hadronic particles.
Definition at line 34 of file GenMET.h.
References gen_data, and SpecificGenMETData::m_HadEnergy.
Referenced by METTester::analyze().
00034 {return gen_data.m_HadEnergy;};
double reco::GenMET::invisibleEnergy | ( | ) | const [inline] |
Returns invisible energy.
Definition at line 36 of file GenMET.h.
References gen_data, and SpecificGenMETData::m_InvisibleEnergy.
Referenced by METTester::analyze().
00036 {return gen_data.m_InvisibleEnergy;};
SpecificGenMETData reco::GenMET::gen_data [private] |
Definition at line 45 of file GenMET.h.
Referenced by auxiliaryEnergy(), emEnergy(), hadEnergy(), and invisibleEnergy().