#include <CaloOnlineTools/HcalOnlineDb/interface/XMLZeroSuppression.h>
Public Member Functions | |
bool | operator< (const ZeroSuppressionID &_id) const |
ZeroSuppressionID () | |
~ZeroSuppressionID () | |
Public Attributes | |
int | crate |
int | fiber |
int | slot |
int | topbottom |
Definition at line 31 of file XMLZeroSuppression.h.
ZeroSuppressionID::ZeroSuppressionID | ( | ) | [inline] |
ZeroSuppressionID::~ZeroSuppressionID | ( | ) | [inline] |
bool ZeroSuppressionID::operator< | ( | const ZeroSuppressionID & | _id | ) | const [inline] |
Definition at line 41 of file XMLZeroSuppression.h.
References crate, fiber, slot, and topbottom.
00042 { 00043 if ( crate < _id . crate ) return true; 00044 else if ( crate == _id . crate && slot < _id . slot ) return true; 00045 else if ( crate == _id . crate && slot == _id . slot && topbottom < _id . topbottom ) return true; 00046 else if ( crate == _id . crate && slot == _id . slot && topbottom == _id . topbottom && fiber < _id . fiber ) return true; 00047 else return false; 00048 }