CMS 3D CMS Logo

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() [1/4]

L1MuDTTrackSegEta::L1MuDTTrackSegEta ( )

default constructor

Definition at line 45 of file L1MuDTTrackSegEta.cc.

45 : m_location(), m_position(0), m_quality(0), m_bx(0) {}
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location

◆ L1MuDTTrackSegEta() [2/4]

L1MuDTTrackSegEta::L1MuDTTrackSegEta ( int  wheel_id,
int  sector_id,
int  station_id,
int  position = 0,
int  quality = 0,
int  bx = 17 
)

constructor

Definition at line 47 of file L1MuDTTrackSegEta.cc.

48  : m_location(wheel_id, sector_id, station_id), m_position(pos), m_quality(quality), m_bx(bx) {}
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() [3/4]

L1MuDTTrackSegEta::L1MuDTTrackSegEta ( const L1MuDTTrackSegLoc id,
int  position = 0,
int  quality = 0,
int  bx = 17 
)

constructor

Definition at line 50 of file L1MuDTTrackSegEta.cc.

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() [4/4]

L1MuDTTrackSegEta::L1MuDTTrackSegEta ( const L1MuDTTrackSegEta id)

copy constructor

Definition at line 53 of file L1MuDTTrackSegEta.cc.

◆ ~L1MuDTTrackSegEta()

L1MuDTTrackSegEta::~L1MuDTTrackSegEta ( )
virtual

destructor

Definition at line 59 of file L1MuDTTrackSegEta.cc.

59 {}

Member Function Documentation

◆ bx()

int L1MuDTTrackSegEta::bx ( ) const
inline

return bunch crossing

Definition at line 75 of file L1MuDTTrackSegEta.h.

References m_bx.

75 { return m_bx; }

◆ empty()

bool L1MuDTTrackSegEta::empty ( void  ) const
inline

is it an empty eta track segment?

Definition at line 78 of file L1MuDTTrackSegEta.h.

References m_position.

78 { return m_position == 0; }
unsigned int m_position

◆ operator!=()

bool L1MuDTTrackSegEta::operator!= ( const L1MuDTTrackSegEta id) const

unequal operator

Definition at line 105 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

105  {
106  if (m_location != id.m_location)
107  return true;
108  if (m_position != id.m_position)
109  return true;
110  if (m_quality != id.m_quality)
111  return true;
112  if (m_bx != id.m_bx)
113  return true;
114  return false;
115 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location

◆ operator=()

L1MuDTTrackSegEta & L1MuDTTrackSegEta::operator= ( const L1MuDTTrackSegEta id)

assignment operator

Definition at line 77 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

77  {
78  if (this != &id) {
79  m_location = id.m_location;
80  m_position = id.m_position;
81  m_quality = id.m_quality;
82  m_bx = id.m_bx;
83  }
84  return *this;
85 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location

◆ operator==()

bool L1MuDTTrackSegEta::operator== ( const L1MuDTTrackSegEta id) const

equal operator

Definition at line 90 of file L1MuDTTrackSegEta.cc.

References m_bx, m_location, m_position, and m_quality.

90  {
91  if (m_location != id.m_location)
92  return false;
93  if (m_position != id.m_position)
94  return false;
95  if (m_quality != id.m_quality)
96  return false;
97  if (m_bx != id.m_bx)
98  return false;
99  return true;
100 }
unsigned int m_position
unsigned int m_quality
L1MuDTTrackSegLoc m_location

◆ position()

unsigned int L1MuDTTrackSegEta::position ( ) const
inline

return position

Definition at line 69 of file L1MuDTTrackSegEta.h.

References m_position.

69 { return m_position; }
unsigned int m_position

◆ quality()

unsigned int L1MuDTTrackSegEta::quality ( void  ) const
inline

return quality code

Definition at line 72 of file L1MuDTTrackSegEta.h.

References m_quality.

72 { return m_quality; }
unsigned int m_quality

◆ reset()

void L1MuDTTrackSegEta::reset ( void  )

reset eta track segment

Definition at line 68 of file L1MuDTTrackSegEta.cc.

References m_bx, m_position, and m_quality.

68  {
69  m_position = 0;
70  m_quality = 0;
71  m_bx = 0;
72 }
unsigned int m_position
unsigned int m_quality

◆ sector()

int L1MuDTTrackSegEta::sector ( void  ) const
inline

return sector

Definition at line 60 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::sector().

Referenced by geometryXMLparser.DTAlignable::index().

60 { return m_location.sector(); }
int sector() const
return sector (30 deg)
L1MuDTTrackSegLoc m_location

◆ station()

int L1MuDTTrackSegEta::station ( ) const
inline

return station

Definition at line 63 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::station().

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

63 { return m_location.station(); }
int station() const
return station
L1MuDTTrackSegLoc m_location

◆ wheel()

int L1MuDTTrackSegEta::wheel ( ) const
inline

return wheel

Definition at line 57 of file L1MuDTTrackSegEta.h.

References m_location, and L1MuDTTrackSegLoc::wheel().

Referenced by geometryXMLparser.DTAlignable::index().

57 { return m_location.wheel(); }
int wheel() const
return wheel
L1MuDTTrackSegLoc m_location

◆ where()

const L1MuDTTrackSegLoc& L1MuDTTrackSegEta::where ( ) const
inline

return location of eta track segment

Definition at line 66 of file L1MuDTTrackSegEta.h.

References m_location.

66 { return m_location; }
L1MuDTTrackSegLoc m_location

Friends And Related Function Documentation

◆ operator<<

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

output stream operator

Member Data Documentation

◆ m_bx

int L1MuDTTrackSegEta::m_bx
private

Definition at line 96 of file L1MuDTTrackSegEta.h.

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

◆ m_location

L1MuDTTrackSegLoc L1MuDTTrackSegEta::m_location
private

Definition at line 93 of file L1MuDTTrackSegEta.h.

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

◆ m_position

unsigned int L1MuDTTrackSegEta::m_position
private

Definition at line 94 of file L1MuDTTrackSegEta.h.

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

◆ m_quality

unsigned int L1MuDTTrackSegEta::m_quality
private

Definition at line 95 of file L1MuDTTrackSegEta.h.

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