#include <RPCEfficiency.h>
Public Member Functions | |
DTStationIndex () | |
DTStationIndex (int region, int wheel, int sector, int station) | |
DTStationIndex () | |
DTStationIndex (int region, int wheel, int sector, int station) | |
bool | operator< (const DTStationIndex &dtind) const |
bool | operator< (const DTStationIndex &dtind) const |
int | region () const |
int | region () const |
int | sector () const |
int | sector () const |
int | station () const |
int | station () const |
int | wheel () const |
int | wheel () const |
~DTStationIndex () | |
~DTStationIndex () | |
Private Attributes | |
int | _region |
int | _sector |
int | _station |
int | _wheel |
Definition at line 42 of file RPCEfficiency.h.
DTStationIndex::DTStationIndex | ( | ) | [inline] |
DTStationIndex::DTStationIndex | ( | int | region, |
int | wheel, | ||
int | sector, | ||
int | station | ||
) | [inline] |
DTStationIndex::~DTStationIndex | ( | ) | [inline] |
Definition at line 50 of file RPCEfficiency.h.
{}
DTStationIndex::DTStationIndex | ( | ) | [inline] |
DTStationIndex::DTStationIndex | ( | int | region, |
int | wheel, | ||
int | sector, | ||
int | station | ||
) | [inline] |
DTStationIndex::~DTStationIndex | ( | ) | [inline] |
Definition at line 36 of file DTSegtoRPC.h.
{}
bool DTStationIndex::operator< | ( | const DTStationIndex & | dtind | ) | const [inline] |
Definition at line 55 of file RPCEfficiency.h.
References region(), sector(), station(), and wheel().
{ if(dtind.region()!=this->region()) return dtind.region()<this->region(); else if(dtind.wheel()!=this->wheel()) return dtind.wheel()<this->wheel(); else if(dtind.sector()!=this->sector()) return dtind.sector()<this->sector(); else if(dtind.station()!=this->station()) return dtind.station()<this->station(); return false; }
bool DTStationIndex::operator< | ( | const DTStationIndex & | dtind | ) | const [inline] |
Definition at line 41 of file DTSegtoRPC.h.
References region(), sector(), station(), and wheel().
{ if(dtind.region()!=this->region()) return dtind.region()<this->region(); else if(dtind.wheel()!=this->wheel()) return dtind.wheel()<this->wheel(); else if(dtind.sector()!=this->sector()) return dtind.sector()<this->sector(); else if(dtind.station()!=this->station()) return dtind.station()<this->station(); return false; }
int DTStationIndex::region | ( | ) | const [inline] |
Definition at line 51 of file RPCEfficiency.h.
References _region.
Referenced by operator<().
{return _region;}
int DTStationIndex::region | ( | ) | const [inline] |
int DTStationIndex::sector | ( | void | ) | const [inline] |
int DTStationIndex::sector | ( | ) | const [inline] |
Definition at line 53 of file RPCEfficiency.h.
References _sector.
Referenced by operator<().
{return _sector;}
int DTStationIndex::station | ( | ) | const [inline] |
Definition at line 54 of file RPCEfficiency.h.
References _station.
Referenced by operator<().
{return _station;}
int DTStationIndex::station | ( | ) | const [inline] |
int DTStationIndex::wheel | ( | ) | const [inline] |
Definition at line 52 of file RPCEfficiency.h.
References _wheel.
Referenced by operator<().
{return _wheel;}
int DTStationIndex::wheel | ( | ) | const [inline] |
int DTStationIndex::_region [private] |
Definition at line 67 of file RPCEfficiency.h.
Referenced by region().
int DTStationIndex::_sector [private] |
Definition at line 69 of file RPCEfficiency.h.
Referenced by sector().
int DTStationIndex::_station [private] |
Definition at line 70 of file RPCEfficiency.h.
Referenced by station().
int DTStationIndex::_wheel [private] |
Definition at line 68 of file RPCEfficiency.h.
Referenced by wheel().