CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
trigger::TriggerObject Class Reference

Single trigger physics object (e.g., an isolated muon) More...

#include <TriggerObject.h>

Public Member Functions

float energy () const
 
float et () const
 
float eta () const
 
int id () const
 getters More...
 
float mass () const
 
float p () const
 
reco::Particle particle (reco::Particle::Charge q=0, const reco::Particle::Point &vertex=reco::Particle::Point(0, 0, 0), int status=0, bool integerCharge=true) const
 
float phi () const
 
float pt () const
 
float px () const
 
float py () const
 
float pz () const
 
void setEta (float eta)
 
void setId (int id)
 setters More...
 
void setMass (float mass)
 
void setPhi (float phi)
 
void setPt (float pt)
 
 TriggerObject ()
 methods More...
 
 TriggerObject (int id, float pt, float eta, float phi, float mass)
 
template<typename T >
 TriggerObject (int id, const T &o)
 any type T object implementing the methods pt(), eta(), phi(), mass() More...
 
template<typename T >
 TriggerObject (const T &o)
 ... and pdgId() More...
 

Private Attributes

float eta_
 
int id_
 data members - similar to DataFormats/Candidate/interface/Particle.h More...
 
float mass_
 
float phi_
 
float pt_
 4-momentum of physics object More...
 

Detailed Description

Single trigger physics object (e.g., an isolated muon)

A single trigger object (e.g., an isolated muon, or MET)

Date:
2010/10/14 23:00:36
Revision:
1.7
Author
Martin Grunewald

Definition at line 24 of file TriggerObject.h.

Constructor & Destructor Documentation

trigger::TriggerObject::TriggerObject ( )
inline

methods

constructors

Definition at line 36 of file TriggerObject.h.

36 : id_(), pt_(), eta_(), phi_(), mass_() { }
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
trigger::TriggerObject::TriggerObject ( int  id,
float  pt,
float  eta,
float  phi,
float  mass 
)
inline

Definition at line 37 of file TriggerObject.h.

37  :
38  id_(id), pt_(pt), eta_(eta), phi_(phi), mass_(mass) { }
float phi() const
Definition: TriggerObject.h:60
float eta() const
Definition: TriggerObject.h:59
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
float mass() const
Definition: TriggerObject.h:61
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
template<typename T >
trigger::TriggerObject::TriggerObject ( int  id,
const T o 
)
inline

any type T object implementing the methods pt(), eta(), phi(), mass()

Definition at line 42 of file TriggerObject.h.

42  :
43  id_(id), pt_(o.pt()), eta_(o.eta()), phi_(o.phi()), mass_(o.mass()) { }
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
template<typename T >
trigger::TriggerObject::TriggerObject ( const T o)
inline

... and pdgId()

Definition at line 46 of file TriggerObject.h.

46  :
47  id_(o.pdgId()), pt_(o.pt()), eta_(o.eta()), phi_(o.phi()), mass_(o.mass()) { }
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31

Member Function Documentation

float trigger::TriggerObject::energy ( ) const
inline

Definition at line 67 of file TriggerObject.h.

References mass_, p(), funct::pow(), and mathSSE::sqrt().

Referenced by particle().

67 {return std::sqrt(std::pow(mass_,2)+std::pow(p(),2));}
T sqrt(T t)
Definition: SSEVec.h:46
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
float trigger::TriggerObject::et ( ) const
inline

Definition at line 69 of file TriggerObject.h.

References eta_, mass_, funct::pow(), pt_, and mathSSE::sqrt().

Referenced by TopElectronHLTOfflineSource::fill(), and ZeeCandidateFilter::filter().

69 {return std::sqrt(std::pow(mass_/std::cosh(eta_),2)+std::pow(pt_,2));}
T sqrt(T t)
Definition: SSEVec.h:46
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
float trigger::TriggerObject::eta ( ) const
inline
int trigger::TriggerObject::id ( void  ) const
inline

getters

Definition at line 57 of file TriggerObject.h.

References id_.

Referenced by TriggerSummaryAnalyzerAOD::analyze(), GeneralHLTOffline::analyze(), HLTEventAnalyzerAOD::analyzeTrigger(), CandidateTriggerObjectProducer::produce(), pat::PATTriggerProducer::produce(), and setId().

57 {return id_;}
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
float trigger::TriggerObject::mass ( ) const
inline
float trigger::TriggerObject::p ( ) const
inline

Definition at line 66 of file TriggerObject.h.

References eta_, and pt_.

Referenced by DQMHcalIsoTrackAlCaReco::analyze(), ValidationHcalIsoTrackAlCaReco::analyze(), and energy().

66 {return pt_*std::cosh(eta_);}
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
reco::Particle trigger::TriggerObject::particle ( reco::Particle::Charge  q = 0,
const reco::Particle::Point vertex = reco::Particle::Point(0,0,0),
int  status = 0,
bool  integerCharge = true 
) const
inline

Definition at line 71 of file TriggerObject.h.

References energy(), px(), py(), pz(), lumiQueryAPI::q, and ntuplemaker::status.

Referenced by TopHLTDiMuonDQM::analyze(), and CandidateTriggerObjectProducer::produce().

73  {
74  return reco::Particle(q,
76  vertex,id(),status,integerCharge);
77  }
float energy() const
Definition: TriggerObject.h:67
tuple status
Definition: ntuplemaker.py:245
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:25
float trigger::TriggerObject::phi ( ) const
inline
float trigger::TriggerObject::pt ( ) const
inline
float trigger::TriggerObject::px ( ) const
inline

Definition at line 63 of file TriggerObject.h.

References funct::cos(), phi_, and pt_.

Referenced by HLTTauDQMLitePathPlotter::getFilterCollection(), and particle().

63 {return pt_*std::cos(phi_);}
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
float trigger::TriggerObject::py ( ) const
inline

Definition at line 64 of file TriggerObject.h.

References phi_, pt_, and funct::sin().

Referenced by HLTTauDQMLitePathPlotter::getFilterCollection(), and particle().

64 {return pt_*std::sin(phi_);}
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
float trigger::TriggerObject::pz ( ) const
inline

Definition at line 65 of file TriggerObject.h.

References eta_, and pt_.

Referenced by HLTTauDQMLitePathPlotter::getFilterCollection(), and particle().

65 {return pt_*std::sinh(eta_);}
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31
void trigger::TriggerObject::setEta ( float  eta)
inline

Definition at line 52 of file TriggerObject.h.

References eta(), and eta_.

void trigger::TriggerObject::setId ( int  id)
inline

setters

Definition at line 50 of file TriggerObject.h.

References id(), and id_.

50 {id_ =id;}
int id() const
getters
Definition: TriggerObject.h:57
int id_
data members - similar to DataFormats/Candidate/interface/Particle.h
Definition: TriggerObject.h:29
void trigger::TriggerObject::setMass ( float  mass)
inline

Definition at line 54 of file TriggerObject.h.

References mass(), and mass_.

void trigger::TriggerObject::setPhi ( float  phi)
inline

Definition at line 53 of file TriggerObject.h.

References phi(), and phi_.

void trigger::TriggerObject::setPt ( float  pt)
inline

Definition at line 51 of file TriggerObject.h.

References pt(), and pt_.

51 {pt_ =pt;}
float pt_
4-momentum of physics object
Definition: TriggerObject.h:31

Member Data Documentation

float trigger::TriggerObject::eta_
private

Definition at line 31 of file TriggerObject.h.

Referenced by et(), eta(), p(), pz(), and setEta().

int trigger::TriggerObject::id_
private

data members - similar to DataFormats/Candidate/interface/Particle.h

id or physics type (including electric charge) - similar to pdgId

Definition at line 29 of file TriggerObject.h.

Referenced by id(), and setId().

float trigger::TriggerObject::mass_
private

Definition at line 31 of file TriggerObject.h.

Referenced by energy(), et(), mass(), and setMass().

float trigger::TriggerObject::phi_
private

Definition at line 31 of file TriggerObject.h.

Referenced by phi(), px(), py(), and setPhi().

float trigger::TriggerObject::pt_
private

4-momentum of physics object

Definition at line 31 of file TriggerObject.h.

Referenced by et(), p(), pt(), px(), py(), pz(), and setPt().