CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes | Friends
L1MuBMTrackSegEta Class Reference

#include <L1MuBMTrackSegEta.h>

Public Member Functions

int bx () const
 return bunch crossing More...
 
bool empty () const
 is it an empty eta track segment? More...
 
 L1MuBMTrackSegEta ()
 default constructor More...
 
 L1MuBMTrackSegEta (int wheel_id, int sector_id, int station_id, int position=0, int quality=0, int bx=17)
 constructor More...
 
 L1MuBMTrackSegEta (const L1MuBMTrackSegLoc &, int position=0, int quality=0, int bx=17)
 constructor More...
 
 L1MuBMTrackSegEta (const L1MuBMTrackSegEta &)
 copy constructor More...
 
bool operator!= (const L1MuBMTrackSegEta &) const
 unequal operator More...
 
L1MuBMTrackSegEtaoperator= (const L1MuBMTrackSegEta &)
 assignment operator More...
 
bool operator== (const L1MuBMTrackSegEta &) 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 L1MuBMTrackSegLocwhere () const
 return location of eta track segment More...
 
virtual ~L1MuBMTrackSegEta ()
 destructor More...
 

Private Attributes

int m_bx
 
L1MuBMTrackSegLoc m_location
 
unsigned int m_position
 
unsigned int m_quality
 

Friends

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

Detailed Description

ETA Track Segment

N. Neumeister CERN EP

Definition at line 41 of file L1MuBMTrackSegEta.h.

Constructor & Destructor Documentation

L1MuBMTrackSegEta::L1MuBMTrackSegEta ( )

default constructor

Definition at line 45 of file L1MuBMTrackSegEta.cc.

45  :
46  m_location(), m_position(0), m_quality(0), m_bx(0) {}
unsigned int m_position
unsigned int m_quality
L1MuBMTrackSegLoc m_location
L1MuBMTrackSegEta::L1MuBMTrackSegEta ( 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 L1MuBMTrackSegEta.cc.

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

constructor

Definition at line 57 of file L1MuBMTrackSegEta.cc.

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

copy constructor

Definition at line 64 of file L1MuBMTrackSegEta.cc.

64  :
unsigned int m_position
unsigned int m_quality
L1MuBMTrackSegLoc m_location
L1MuBMTrackSegEta::~L1MuBMTrackSegEta ( )
virtual

destructor

Definition at line 73 of file L1MuBMTrackSegEta.cc.

73 {}

Member Function Documentation

int L1MuBMTrackSegEta::bx ( ) const
inline

return bunch crossing

Definition at line 84 of file L1MuBMTrackSegEta.h.

References m_bx.

84 { return m_bx; }
bool L1MuBMTrackSegEta::empty ( ) const
inline

is it an empty eta track segment?

Definition at line 87 of file L1MuBMTrackSegEta.h.

References m_position, operator!=(), operator<<, operator=(), and operator==().

Referenced by Vispa.Gui.VispaWidget.TextField::setAutosizeFont(), and Vispa.Gui.VispaWidget.TextField::setAutotruncate().

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

unequal operator

Definition at line 125 of file L1MuBMTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

Referenced by empty().

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
L1MuBMTrackSegLoc m_location
L1MuBMTrackSegEta & L1MuBMTrackSegEta::operator= ( const L1MuBMTrackSegEta id)

assignment operator

Definition at line 95 of file L1MuBMTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

Referenced by empty().

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
L1MuBMTrackSegLoc m_location
bool L1MuBMTrackSegEta::operator== ( const L1MuBMTrackSegEta id) const

equal operator

Definition at line 111 of file L1MuBMTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

Referenced by empty().

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
L1MuBMTrackSegLoc m_location
unsigned int L1MuBMTrackSegEta::position ( ) const
inline

return position

Definition at line 78 of file L1MuBMTrackSegEta.h.

References m_position.

Referenced by operator<<().

78 { return m_position; }
unsigned int m_position
unsigned int L1MuBMTrackSegEta::quality ( ) const
inline

return quality code

Definition at line 81 of file L1MuBMTrackSegEta.h.

References m_quality.

Referenced by operator<<().

81 { return m_quality; }
unsigned int m_quality
void L1MuBMTrackSegEta::reset ( void  )

reset eta track segment

Definition at line 83 of file L1MuBMTrackSegEta.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 L1MuBMTrackSegEta::sector ( ) const
inline

return sector

Definition at line 69 of file L1MuBMTrackSegEta.h.

References m_location, and L1MuBMTrackSegLoc::sector().

Referenced by geometryXMLparser.DTAlignable::index().

69 { return m_location.sector(); }
int sector() const
return sector (30 deg)
L1MuBMTrackSegLoc m_location
int L1MuBMTrackSegEta::station ( ) const
inline

return station

Definition at line 72 of file L1MuBMTrackSegEta.h.

References m_location, and L1MuBMTrackSegLoc::station().

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

72 { return m_location.station(); }
L1MuBMTrackSegLoc m_location
int station() const
return station
int L1MuBMTrackSegEta::wheel ( ) const
inline

return wheel

Definition at line 66 of file L1MuBMTrackSegEta.h.

References m_location, and L1MuBMTrackSegLoc::wheel().

Referenced by geometryXMLparser.DTAlignable::index().

66 { return m_location.wheel(); }
int wheel() const
return wheel
L1MuBMTrackSegLoc m_location
const L1MuBMTrackSegLoc& L1MuBMTrackSegEta::where ( ) const
inline

return location of eta track segment

Definition at line 75 of file L1MuBMTrackSegEta.h.

References m_location.

75 { return m_location; }
L1MuBMTrackSegLoc m_location

Friends And Related Function Documentation

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

output stream operator

Referenced by empty().

Member Data Documentation

int L1MuBMTrackSegEta::m_bx
private

Definition at line 106 of file L1MuBMTrackSegEta.h.

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

L1MuBMTrackSegLoc L1MuBMTrackSegEta::m_location
private

Definition at line 103 of file L1MuBMTrackSegEta.h.

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

unsigned int L1MuBMTrackSegEta::m_position
private

Definition at line 104 of file L1MuBMTrackSegEta.h.

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

unsigned int L1MuBMTrackSegEta::m_quality
private

Definition at line 105 of file L1MuBMTrackSegEta.h.

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