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
HcalFrontEndMapAddons::LessById Class Reference

#include <HcalFrontEndMap.h>

Public Member Functions

bool equal (const HcalFrontEndMap::PrecisionItem *a, const HcalFrontEndMap::PrecisionItem *b) const
 
bool good (const HcalFrontEndMap::PrecisionItem &a) const
 
bool operator() (const HcalFrontEndMap::PrecisionItem *a, const HcalFrontEndMap::PrecisionItem *b) const
 
bool operator() (const HcalFrontEndMap::PrecisionItem &a, const HcalFrontEndMap::PrecisionItem &b) const
 

Detailed Description

Definition at line 83 of file HcalFrontEndMap.h.

Member Function Documentation

bool HcalFrontEndMapAddons::LessById::equal ( const HcalFrontEndMap::PrecisionItem a,
const HcalFrontEndMap::PrecisionItem b 
) const
inline

Definition at line 91 of file HcalFrontEndMap.h.

References HcalFrontEndMap::PrecisionItem::mId.

91  {
92  return a->mId == b->mId;
93  }
bool HcalFrontEndMapAddons::LessById::good ( const HcalFrontEndMap::PrecisionItem a) const
inline

Definition at line 94 of file HcalFrontEndMap.h.

References HcalFrontEndMap::PrecisionItem::mId.

94 { return a.mId; }
bool HcalFrontEndMapAddons::LessById::operator() ( const HcalFrontEndMap::PrecisionItem a,
const HcalFrontEndMap::PrecisionItem b 
) const
inline

Definition at line 85 of file HcalFrontEndMap.h.

References HcalFrontEndMap::PrecisionItem::mId.

85  {
86  return a->mId < b->mId;
87  }
bool HcalFrontEndMapAddons::LessById::operator() ( const HcalFrontEndMap::PrecisionItem a,
const HcalFrontEndMap::PrecisionItem b 
) const
inline

Definition at line 88 of file HcalFrontEndMap.h.

References HcalFrontEndMap::PrecisionItem::mId.

88  {
89  return a.mId < b.mId;
90  }