CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes | Friends
L1MuDTTrackSegEta Class Reference

#include <L1MuDTTrackSegEta.h>

Public Member Functions

int bx () const
 return bunch crossing More...
 
bool empty () const
 is it an empty eta track segment? More...
 
 L1MuDTTrackSegEta ()
 default constructor More...
 
 L1MuDTTrackSegEta (int wheel_id, int sector_id, int station_id, int position=0, int quality=0, int bx=17)
 constructor More...
 
 L1MuDTTrackSegEta (const L1MuDTTrackSegLoc &, int position=0, int quality=0, int bx=17)
 constructor More...
 
 L1MuDTTrackSegEta (const L1MuDTTrackSegEta &)
 copy constructor More...
 
bool operator!= (const L1MuDTTrackSegEta &) const
 unequal operator More...
 
L1MuDTTrackSegEtaoperator= (const L1MuDTTrackSegEta &)
 assignment operator More...
 
bool operator== (const L1MuDTTrackSegEta &) const
 equal operator More...
 
unsigned int position () const
 return position More...
 
unsigned int quality () const
 return quality code More...
 
void reset ()
 reset eta track segment More...
 
int sector () const
 return sector More...
 
int station () const
 return station More...
 
int wheel () const
 return wheel More...
 
const L1MuDTTrackSegLocwhere () const
 return location of eta track segment More...
 
virtual ~L1MuDTTrackSegEta ()
 destructor More...
 

Private Attributes

int m_bx
 
L1MuDTTrackSegLoc m_location
 
unsigned int m_position
 
unsigned int m_quality
 

Friends

std::ostream & operator<< (std::ostream &, const L1MuDTTrackSegEta &)
 output stream operator More...
 

Detailed Description

ETA Track Segment

N. Neumeister CERN EP

Definition at line 36 of file L1MuDTTrackSegEta.h.

Constructor & Destructor Documentation

L1MuDTTrackSegEta::L1MuDTTrackSegEta ( )

default constructor

Definition at line 45 of file L1MuDTTrackSegEta.cc.

45  :
46  m_location(), m_position(0), m_quality(0), m_bx(0) {}
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location
L1MuDTTrackSegEta::L1MuDTTrackSegEta ( int  wheel_id,
int  sector_id,
int  station_id,
int  position = 0,
int  quality = 0,
int  bx = 17 
)

constructor

Definition at line 49 of file L1MuDTTrackSegEta.cc.

50  :
51  m_location(wheel_id, sector_id, station_id),
53 
54 }
unsigned int quality() const
return quality code
unsigned int m_position
int bx() const
return bunch crossing
unsigned int m_quality
L1MuDTTrackSegLoc m_location
L1MuDTTrackSegEta::L1MuDTTrackSegEta ( const L1MuDTTrackSegLoc id,
int  position = 0,
int  quality = 0,
int  bx = 17 
)

constructor

Definition at line 57 of file L1MuDTTrackSegEta.cc.

58  :
60 
61 }
unsigned int quality() const
return quality code
unsigned int m_position
int bx() const
return bunch crossing
unsigned int m_quality
L1MuDTTrackSegLoc m_location
L1MuDTTrackSegEta::L1MuDTTrackSegEta ( const L1MuDTTrackSegEta id)

copy constructor

Definition at line 64 of file L1MuDTTrackSegEta.cc.

64  :
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location
L1MuDTTrackSegEta::~L1MuDTTrackSegEta ( )
virtual

destructor

Definition at line 73 of file L1MuDTTrackSegEta.cc.

73 {}

Member Function Documentation

int L1MuDTTrackSegEta::bx ( ) const
inline

return bunch crossing

Definition at line 79 of file L1MuDTTrackSegEta.h.

References m_bx.

79 { return m_bx; }
bool L1MuDTTrackSegEta::empty ( void  ) const
inline

is it an empty eta track segment?

Definition at line 82 of file L1MuDTTrackSegEta.h.

References m_position.

82 { return m_position == 0; }
unsigned int m_position
bool L1MuDTTrackSegEta::operator!= ( const L1MuDTTrackSegEta id) const

unequal operator

Definition at line 125 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

125  {
126 
127  if ( m_location != id.m_location ) return true;
128  if ( m_position != id.m_position ) return true;
129  if ( m_quality != id.m_quality ) return true;
130  if ( m_bx != id.m_bx ) return true;
131  return false;
132 
133 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location
L1MuDTTrackSegEta & L1MuDTTrackSegEta::operator= ( const L1MuDTTrackSegEta id)

assignment operator

Definition at line 95 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

95  {
96 
97  if ( this != &id ) {
98  m_location = id.m_location;
99  m_position = id.m_position;
100  m_quality = id.m_quality;
101  m_bx = id.m_bx;
102  }
103  return *this;
104 
105 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location
bool L1MuDTTrackSegEta::operator== ( const L1MuDTTrackSegEta id) const

equal operator

Definition at line 111 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

111  {
112 
113  if ( m_location != id.m_location ) return false;
114  if ( m_position != id.m_position ) return false;
115  if ( m_quality != id.m_quality ) return false;
116  if ( m_bx != id.m_bx ) return false;
117  return true;
118 
119 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location
unsigned int L1MuDTTrackSegEta::position ( ) const
inline

return position

Definition at line 73 of file L1MuDTTrackSegEta.h.

References m_position.

73 { return m_position; }
unsigned int m_position
unsigned int L1MuDTTrackSegEta::quality ( void  ) const
inline

return quality code

Definition at line 76 of file L1MuDTTrackSegEta.h.

References m_quality.

76 { return m_quality; }
unsigned int m_quality
void L1MuDTTrackSegEta::reset ( void  )

reset eta track segment

Definition at line 83 of file L1MuDTTrackSegEta.cc.

References m_bx, m_position, and m_quality.

83  {
84 
85  m_position = 0;
86  m_quality = 0;
87  m_bx = 0;
88 
89 }
unsigned int m_position
unsigned int m_quality
int L1MuDTTrackSegEta::sector ( void  ) const
inline

return sector

Definition at line 64 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::sector().

Referenced by geometryXMLparser.DTAlignable::index().

64 { return m_location.sector(); }
int sector() const
return sector (30 deg)
L1MuDTTrackSegLoc m_location
int L1MuDTTrackSegEta::station ( ) const
inline

return station

Definition at line 67 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::station().

Referenced by geometryXMLparser.DTAlignable::index(), and geometryXMLparser.CSCAlignable::index().

67 { return m_location.station(); }
int station() const
return station
L1MuDTTrackSegLoc m_location
int L1MuDTTrackSegEta::wheel ( ) const
inline

return wheel

Definition at line 61 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::wheel().

Referenced by geometryXMLparser.DTAlignable::index().

61 { return m_location.wheel(); }
L1MuDTTrackSegLoc m_location
int wheel() const
return wheel
const L1MuDTTrackSegLoc& L1MuDTTrackSegEta::where ( ) const
inline

return location of eta track segment

Definition at line 70 of file L1MuDTTrackSegEta.h.

References m_location.

70 { return m_location; }
L1MuDTTrackSegLoc m_location

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const L1MuDTTrackSegEta  
)
friend

output stream operator

Member Data Documentation

int L1MuDTTrackSegEta::m_bx
private

Definition at line 101 of file L1MuDTTrackSegEta.h.

Referenced by bx(), operator!=(), operator=(), operator==(), and reset().

L1MuDTTrackSegLoc L1MuDTTrackSegEta::m_location
private

Definition at line 98 of file L1MuDTTrackSegEta.h.

Referenced by operator!=(), operator=(), operator==(), sector(), station(), wheel(), and where().

unsigned int L1MuDTTrackSegEta::m_position
private

Definition at line 99 of file L1MuDTTrackSegEta.h.

Referenced by empty(), operator!=(), operator=(), operator==(), position(), and reset().

unsigned int L1MuDTTrackSegEta::m_quality
private

Definition at line 100 of file L1MuDTTrackSegEta.h.

Referenced by operator!=(), operator=(), operator==(), quality(), and reset().