CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
HLTScalersClient::CountLS_t Class Reference

#include <HLTScalersClient.h>

Inheritance diagram for HLTScalersClient::CountLS_t:

Public Member Functions

 CountLS_t (int ls, double cnt)
 
bool operator< (CountLS_t &rhs)
 
bool operator== (int ls) const
 

Detailed Description

Definition at line 73 of file HLTScalersClient.h.

Constructor & Destructor Documentation

HLTScalersClient::CountLS_t::CountLS_t ( int  ls,
double  cnt 
)
inline

Definition at line 76 of file HLTScalersClient.h.

76  :
77  std::pair<int,double>(ls,cnt)
78  {};

Member Function Documentation

bool HLTScalersClient::CountLS_t::operator< ( CountLS_t rhs)
inline

Definition at line 83 of file HLTScalersClient.h.

References first.

84  {
85  return this->first< rhs.first;
86  };
bool first
Definition: L1TdeRCT.cc:94
bool HLTScalersClient::CountLS_t::operator== ( int  ls) const
inline

Definition at line 79 of file HLTScalersClient.h.

References first.

80  {
81  return ls == this->first;
82  }
bool first
Definition: L1TdeRCT.cc:94