CMS 3D CMS Logo

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

Public Member Functions

MonitorElementgetEtaHisto ()
 
MonitorElementgetEtaVsPhiHisto ()
 
MonitorElementgetEtHisto ()
 
const std::string getName (void) const
 
MonitorElementgetPhiHisto ()
 
float getPtMax () const
 
float getPtMin () const
 
bool operator== (const std::string v)
 
 PathInfo (std::string pathName, size_t type, float ptmin, float ptmax)
 
 PathInfo (std::string pathName, size_t type, MonitorElement *et, MonitorElement *eta, MonitorElement *phi, MonitorElement *etavsphi, float ptmin, float ptmax)
 
void setHistos (MonitorElement *const et, MonitorElement *const eta, MonitorElement *const phi, MonitorElement *const etavsphi)
 
 ~PathInfo ()
 

Private Member Functions

const int index ()
 
 PathInfo ()
 
const int type ()
 

Private Attributes

MonitorElementet_
 
MonitorElementeta_
 
MonitorElementetavsphi_
 
int objectType_
 
int pathIndex_
 
std::string pathName_
 
MonitorElementphi_
 
float ptmax_
 
float ptmin_
 

Detailed Description

Definition at line 83 of file FourVectorHLT.h.

Constructor & Destructor Documentation

FourVectorHLT::PathInfo::PathInfo ( )
inlineprivate

Definition at line 84 of file FourVectorHLT.h.

FourVectorHLT::PathInfo::~PathInfo ( )
inline

Definition at line 101 of file FourVectorHLT.h.

101 {};
FourVectorHLT::PathInfo::PathInfo ( std::string  pathName,
size_t  type,
float  ptmin,
float  ptmax 
)
inline

Definition at line 102 of file FourVectorHLT.h.

103  : pathName_(pathName),
104  objectType_(type),
105  et_(nullptr),
106  eta_(nullptr),
107  phi_(nullptr),
108  etavsphi_(nullptr),
109  ptmin_(ptmin),
110  ptmax_(ptmax){};
MonitorElement * etavsphi_
MonitorElement * et_
MonitorElement * phi_
MonitorElement * eta_
double ptmin
Definition: HydjetWrapper.h:84
FourVectorHLT::PathInfo::PathInfo ( std::string  pathName,
size_t  type,
MonitorElement et,
MonitorElement eta,
MonitorElement phi,
MonitorElement etavsphi,
float  ptmin,
float  ptmax 
)
inline

Definition at line 111 of file FourVectorHLT.h.

119  : pathName_(pathName),
120  objectType_(type),
121  et_(et),
122  eta_(eta),
123  phi_(phi),
124  etavsphi_(etavsphi),
125  ptmin_(ptmin),
126  ptmax_(ptmax){};
MonitorElement * etavsphi_
MonitorElement * et_
MonitorElement * phi_
MonitorElement * eta_
double ptmin
Definition: HydjetWrapper.h:84

Member Function Documentation

MonitorElement* FourVectorHLT::PathInfo::getEtaHisto ( )
inline

Definition at line 97 of file FourVectorHLT.h.

References eta_.

97 { return eta_; }
MonitorElement * eta_
MonitorElement* FourVectorHLT::PathInfo::getEtaVsPhiHisto ( )
inline

Definition at line 99 of file FourVectorHLT.h.

References etavsphi_.

99 { return etavsphi_; }
MonitorElement * etavsphi_
MonitorElement* FourVectorHLT::PathInfo::getEtHisto ( )
inline

Definition at line 96 of file FourVectorHLT.h.

References et_.

96 { return et_; }
MonitorElement * et_
const std::string FourVectorHLT::PathInfo::getName ( void  ) const
inline

Definition at line 100 of file FourVectorHLT.h.

References pathName_.

Referenced by plotting.Plot::draw().

100 { return pathName_; }
MonitorElement* FourVectorHLT::PathInfo::getPhiHisto ( )
inline

Definition at line 98 of file FourVectorHLT.h.

References phi_.

98 { return phi_; }
MonitorElement * phi_
float FourVectorHLT::PathInfo::getPtMax ( ) const
inline

Definition at line 144 of file FourVectorHLT.h.

References ptmax_.

144 { return ptmax_; }
float FourVectorHLT::PathInfo::getPtMin ( ) const
inline

Definition at line 143 of file FourVectorHLT.h.

References ptmin_.

143 { return ptmin_; }
const int FourVectorHLT::PathInfo::index ( )
inlineprivate

Definition at line 139 of file FourVectorHLT.h.

References pathIndex_.

Referenced by BeautifulSoup.PageElement::_invert().

139 { return pathIndex_; }
bool FourVectorHLT::PathInfo::operator== ( const std::string  v)
inline

Definition at line 127 of file FourVectorHLT.h.

References pathName_.

127 { return v == pathName_; }
void FourVectorHLT::PathInfo::setHistos ( MonitorElement *const  et,
MonitorElement *const  eta,
MonitorElement *const  phi,
MonitorElement *const  etavsphi 
)
inline

Definition at line 87 of file FourVectorHLT.h.

References et_, PVValHelper::eta, eta_, etavsphi_, phi, and phi_.

90  {
91  et_ = et;
92  eta_ = eta;
93  phi_ = phi;
94  etavsphi_ = etavsphi;
95  }
MonitorElement * etavsphi_
MonitorElement * et_
MonitorElement * phi_
MonitorElement * eta_
const int FourVectorHLT::PathInfo::type ( )
inlineprivate

Definition at line 140 of file FourVectorHLT.h.

References objectType_.

140 { return objectType_; }

Member Data Documentation

MonitorElement* FourVectorHLT::PathInfo::et_
private

Definition at line 135 of file FourVectorHLT.h.

Referenced by getEtHisto(), and setHistos().

MonitorElement * FourVectorHLT::PathInfo::eta_
private

Definition at line 135 of file FourVectorHLT.h.

Referenced by getEtaHisto(), and setHistos().

MonitorElement * FourVectorHLT::PathInfo::etavsphi_
private

Definition at line 135 of file FourVectorHLT.h.

Referenced by getEtaVsPhiHisto(), and setHistos().

int FourVectorHLT::PathInfo::objectType_
private

Definition at line 132 of file FourVectorHLT.h.

Referenced by type().

int FourVectorHLT::PathInfo::pathIndex_
private

Definition at line 130 of file FourVectorHLT.h.

Referenced by index().

std::string FourVectorHLT::PathInfo::pathName_
private

Definition at line 131 of file FourVectorHLT.h.

Referenced by getName(), and operator==().

MonitorElement * FourVectorHLT::PathInfo::phi_
private

Definition at line 135 of file FourVectorHLT.h.

Referenced by getPhiHisto(), and setHistos().

float FourVectorHLT::PathInfo::ptmax_
private

Definition at line 137 of file FourVectorHLT.h.

Referenced by getPtMax().

float FourVectorHLT::PathInfo::ptmin_
private

Definition at line 137 of file FourVectorHLT.h.

Referenced by getPtMin().