CMS 3D CMS Logo

Public Member Functions | Private Attributes

ESStripGroupId Class Reference

#include <ESStripGroupId.h>

List of all members.

Public Member Functions

 ESStripGroupId ()
 ESStripGroupId (const unsigned int &id)
const unsigned int id () const
bool operator< (const ESStripGroupId &rhs) const
bool operator<= (const ESStripGroupId &rhs) const
bool operator== (const ESStripGroupId &rhs) const
bool operator> (const ESStripGroupId &rhs) const
bool operator>= (const ESStripGroupId &rhs) const

Private Attributes

unsigned int id_

Detailed Description

Definition at line 4 of file ESStripGroupId.h.


Constructor & Destructor Documentation

ESStripGroupId::ESStripGroupId ( ) [inline]

Definition at line 6 of file ESStripGroupId.h.

: id_(0){}
ESStripGroupId::ESStripGroupId ( const unsigned int &  id) [inline]

Definition at line 7 of file ESStripGroupId.h.

: id_(id){}

Member Function Documentation

const unsigned int ESStripGroupId::id ( void  ) const [inline]

Definition at line 15 of file ESStripGroupId.h.

References id_.

Referenced by operator<(), operator<=(), operator==(), operator>(), and operator>=().

{ return id_; }
bool ESStripGroupId::operator< ( const ESStripGroupId rhs) const [inline]

Definition at line 12 of file ESStripGroupId.h.

References id(), and id_.

{ return ( id_<rhs.id() ); }
bool ESStripGroupId::operator<= ( const ESStripGroupId rhs) const [inline]

Definition at line 13 of file ESStripGroupId.h.

References id(), and id_.

{ return ( id_<=rhs.id() ); }
bool ESStripGroupId::operator== ( const ESStripGroupId rhs) const [inline]

Definition at line 11 of file ESStripGroupId.h.

References id(), and id_.

{ return ( id_==rhs.id() ); }
bool ESStripGroupId::operator> ( const ESStripGroupId rhs) const [inline]

Definition at line 9 of file ESStripGroupId.h.

References id(), and id_.

{ return ( id_>rhs.id() ); }
bool ESStripGroupId::operator>= ( const ESStripGroupId rhs) const [inline]

Definition at line 10 of file ESStripGroupId.h.

References id(), and id_.

{ return ( id_>=rhs.id() ); }

Member Data Documentation

unsigned int ESStripGroupId::id_ [private]

Definition at line 18 of file ESStripGroupId.h.

Referenced by id(), operator<(), operator<=(), operator==(), operator>(), and operator>=().