CMS 3D CMS Logo

Public Member Functions | Private Attributes

DTSectCollId Class Reference

#include <DTSectCollId.h>

List of all members.

Public Member Functions

 DTSectCollId ()
 DTSectCollId (int wheel_id, int sector_id)
 DTSectCollId (const DTSectCollId &statId)
bool operator!= (const DTSectCollId &) const
bool operator< (const DTSectCollId &) const
DTSectCollIdoperator= (const DTSectCollId &)
bool operator== (const DTSectCollId &) const
int sector () const
int wheel () const

Private Attributes

int _sector
int _wheel

Detailed Description

Definition of a Sector Coollector

Date:
2007/04/27 07:35:17
Authors:
D. Bonacorsi, S. Marcellini

Definition at line 19 of file DTSectCollId.h.


Constructor & Destructor Documentation

DTSectCollId::DTSectCollId ( ) [inline]

Definition at line 23 of file DTSectCollId.h.

                :
    _wheel(  0),
    _sector( 0) {}
DTSectCollId::DTSectCollId ( int  wheel_id,
int  sector_id 
) [inline]

Definition at line 27 of file DTSectCollId.h.

                            : 
    _wheel(wheel_id),
    _sector(sector_id) {}
DTSectCollId::DTSectCollId ( const DTSectCollId statId) [inline]

Definition at line 33 of file DTSectCollId.h.

                                             :
    _wheel(statId._wheel),
    _sector(statId._sector) {}

Member Function Documentation

bool DTSectCollId::operator!= ( const DTSectCollId ) const [inline]
bool DTSectCollId::operator< ( const DTSectCollId ) const [inline]
DTSectCollId& DTSectCollId::operator= ( const DTSectCollId ) [inline]
bool DTSectCollId::operator== ( const DTSectCollId ) const [inline]
int DTSectCollId::sector ( ) const [inline]

Definition at line 42 of file DTSectCollId.h.

References _sector.

Referenced by DTTrig::createTUs(), DTConfigManager::getDTConfigSectColl(), DTTrig::SCUnit(), and DTTrig::triggerReco().

{ return _sector; }
int DTSectCollId::wheel ( ) const [inline]

Definition at line 41 of file DTSectCollId.h.

References _wheel.

Referenced by DTTrig::createTUs(), DTConfigManager::getDTConfigSectColl(), and DTTrig::SCUnit().

{ return _wheel; }

Member Data Documentation

int DTSectCollId::_sector [private]

Definition at line 52 of file DTSectCollId.h.

Referenced by sector().

int DTSectCollId::_wheel [private]

Definition at line 51 of file DTSectCollId.h.

Referenced by wheel().