CMS 3D CMS Logo

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

#include <L1MuBMTrackSegPhi.h>

Public Types

enum  TSQuality {
  Li, Lo, Hi, Ho,
  LL, HL, HH, Null
}
 quality code of BBMX phi track segments More...
 

Public Member Functions

int bx () const
 return bunch crossing More...
 
bool empty () const
 is it an empty phi track segment? More...
 
bool etaFlag () const
 return eta flag More...
 
 L1MuBMTrackSegPhi ()
 default constructor More...
 
 L1MuBMTrackSegPhi (int wheel_id, int sector_id, int station_id, int phi=0, int phib=0, TSQuality quality=Null, bool tag=false, int bx=17, bool etaFlag=false)
 constructor More...
 
 L1MuBMTrackSegPhi (const L1MuBMTrackSegLoc &, int phi=0, int phib=0, TSQuality quality=Null, bool tag=false, int bx=17, bool etaFlag=false)
 constructor More...
 
 L1MuBMTrackSegPhi (const L1MuBMTrackSegPhi &)
 copy constructor More...
 
bool operator!= (const L1MuBMTrackSegPhi &) const
 unequal operator More...
 
L1MuBMTrackSegPhioperator= (const L1MuBMTrackSegPhi &)
 assignment operator More...
 
bool operator== (const L1MuBMTrackSegPhi &) const
 equal operator More...
 
int phi () const
 return phi More...
 
int phib () const
 return phib More...
 
double phibValue () const
 return phib-value in global coordinates [0,2pi] More...
 
double phiValue () const
 return phi-value in global coordinates [0,2pi] More...
 
int quality () const
 return quality code More...
 
void reset ()
 reset phi track segment More...
 
int sector () const
 return sector More...
 
void setEtaFlag (bool flag)
 set eta flag More...
 
int station () const
 return station More...
 
int tag () const
 return tag (second TS tag) More...
 
int wheel () const
 return wheel More...
 
const L1MuBMTrackSegLocwhere () const
 return location of phi track segment More...
 
virtual ~L1MuBMTrackSegPhi ()
 destructor More...
 

Private Attributes

int m_bx
 
bool m_etaFlag
 
L1MuBMTrackSegLoc m_location
 
int m_phi
 
int m_phib
 
TSQuality m_quality
 
bool m_tag
 

Friends

std::ostream & operator<< (std::ostream &, const TSQuality &)
 overload output stream operator for phi track segment quality More...
 
std::ostream & operator<< (std::ostream &, const L1MuBMTrackSegPhi &)
 overload output stream operator for phi track segments More...
 

Detailed Description

PHI Track Segment

N. Neumeister CERN EP

Definition at line 41 of file L1MuBMTrackSegPhi.h.

Member Enumeration Documentation

Constructor & Destructor Documentation

L1MuBMTrackSegPhi::L1MuBMTrackSegPhi ( )
L1MuBMTrackSegPhi::L1MuBMTrackSegPhi ( int  wheel_id,
int  sector_id,
int  station_id,
int  phi = 0,
int  phib = 0,
TSQuality  quality = Null,
bool  tag = false,
int  bx = 17,
bool  etaFlag = false 
)

constructor

Definition at line 47 of file L1MuBMTrackSegPhi.cc.

49  : m_location(wheel_id, sector_id, station_id),
50  m_phi(phi),
51  m_phib(phib),
53  m_bx(bx),
55  /*
56  if ( phi < -2048 || phi > 2047 ) {
57  cerr << "TrackSegPhi : phi out of range: " << phi << endl;
58  }
59  if ( phib < -512 || phib > 511 ) {
60  cerr << "TrackSegPhi : phib out of range: " << phib << endl;
61  }
62  if ( quality > 7 ) {
63  cerr << "TrackSegPhi : quality out of range: " << quality << endl;
64  }*/
65 }
L1MuBMTrackSegLoc m_location
int phib() const
return phib
int bx() const
return bunch crossing
int phi() const
return phi
bool etaFlag() const
return eta flag
int quality() const
return quality code
L1MuBMTrackSegPhi::L1MuBMTrackSegPhi ( const L1MuBMTrackSegLoc id,
int  phi = 0,
int  phib = 0,
TSQuality  quality = Null,
bool  tag = false,
int  bx = 17,
bool  etaFlag = false 
)

constructor

Definition at line 67 of file L1MuBMTrackSegPhi.cc.

70  /*
71  if ( phi < -2048 || phi > 2047 ) {
72  cerr << "TrackSegPhi : phi out of range: " << phi << endl;
73  }
74  if ( phib < -512 || phib > 511 ) {
75  cerr << "TrackSegPhi : phib out of range: " << phib << endl;
76  }
77  if ( quality > 7 ) {
78  cerr << "TrackSegPhi : quality out of range: " << quality << endl;
79  }
80 */
81 }
L1MuBMTrackSegLoc m_location
int tag() const
return tag (second TS tag)
int phib() const
return phib
int bx() const
return bunch crossing
int phi() const
return phi
bool etaFlag() const
return eta flag
int quality() const
return quality code
L1MuBMTrackSegPhi::L1MuBMTrackSegPhi ( const L1MuBMTrackSegPhi id)

copy constructor

Definition at line 83 of file L1MuBMTrackSegPhi.cc.

L1MuBMTrackSegPhi::~L1MuBMTrackSegPhi ( )
virtual

destructor

Definition at line 95 of file L1MuBMTrackSegPhi.cc.

95 {}

Member Function Documentation

int L1MuBMTrackSegPhi::bx ( ) const
inline

return bunch crossing

Definition at line 109 of file L1MuBMTrackSegPhi.h.

References m_bx.

109 { return m_bx; }
bool L1MuBMTrackSegPhi::empty ( ) const
inline

is it an empty phi track segment?

Definition at line 115 of file L1MuBMTrackSegPhi.h.

References m_quality, and Null.

Referenced by L1MuBMSEU::run(), and L1MuBMExtrapolationUnit::run().

bool L1MuBMTrackSegPhi::etaFlag ( ) const
inline

return eta flag

Definition at line 112 of file L1MuBMTrackSegPhi.h.

References m_etaFlag.

112 { return m_etaFlag; }
bool L1MuBMTrackSegPhi::operator!= ( const L1MuBMTrackSegPhi id) const

unequal operator

Definition at line 163 of file L1MuBMTrackSegPhi.cc.

References m_bx, m_location, m_phi, m_phib, and m_quality.

163  {
164  if (m_location != id.m_location)
165  return true;
166  if (m_phi != id.m_phi)
167  return true;
168  if (m_phib != id.m_phib)
169  return true;
170  if (m_quality != id.m_quality)
171  return true;
172  if (m_bx != id.m_bx)
173  return true;
174  return false;
175 }
L1MuBMTrackSegLoc m_location
L1MuBMTrackSegPhi & L1MuBMTrackSegPhi::operator= ( const L1MuBMTrackSegPhi id)

assignment operator

Definition at line 130 of file L1MuBMTrackSegPhi.cc.

References m_bx, m_etaFlag, m_location, m_phi, m_phib, m_quality, and m_tag.

130  {
131  if (this != &id) {
132  m_location = id.m_location;
133  m_phi = id.m_phi;
134  m_phib = id.m_phib;
135  m_quality = id.m_quality;
136  m_tag = id.m_tag;
137  m_bx = id.m_bx;
138  m_etaFlag = id.m_etaFlag;
139  }
140  return *this;
141 }
L1MuBMTrackSegLoc m_location
bool L1MuBMTrackSegPhi::operator== ( const L1MuBMTrackSegPhi id) const

equal operator

Definition at line 146 of file L1MuBMTrackSegPhi.cc.

References m_bx, m_location, m_phi, m_phib, and m_quality.

146  {
147  if (m_location != id.m_location)
148  return false;
149  if (m_phi != id.m_phi)
150  return false;
151  if (m_phib != id.m_phib)
152  return false;
153  if (m_quality != id.m_quality)
154  return false;
155  if (m_bx != id.m_bx)
156  return false;
157  return true;
158 }
L1MuBMTrackSegLoc m_location
int L1MuBMTrackSegPhi::phi ( ) const
inline
int L1MuBMTrackSegPhi::phib ( ) const
inline
double L1MuBMTrackSegPhi::phibValue ( ) const

return phib-value in global coordinates [0,2pi]

Definition at line 125 of file L1MuBMTrackSegPhi.cc.

References m_phib.

125 { return static_cast<double>(m_phib) / 512; }
double L1MuBMTrackSegPhi::phiValue ( ) const

return phi-value in global coordinates [0,2pi]

Definition at line 116 of file L1MuBMTrackSegPhi.cc.

References m_location, m_phi, M_PI, L1MuBMTrackSegLoc::sector(), and createJobs::tmp.

116  {
117  double tmp = static_cast<double>(m_location.sector()) * M_PI / 6;
118  tmp += static_cast<double>(m_phi) / 4096;
119  return (tmp > 0) ? tmp : (2 * M_PI + tmp);
120 }
L1MuBMTrackSegLoc m_location
int sector() const
return sector (30 deg)
#define M_PI
tmp
align.sh
Definition: createJobs.py:716
int L1MuBMTrackSegPhi::quality ( ) const
inline

return quality code

Definition at line 103 of file L1MuBMTrackSegPhi.h.

References m_quality.

Referenced by L1MuBMAssignmentUnit::getPt1Method(), L1MuBMAssignmentUnit::getPt2Method(), and L1MuBMEUX::run().

103 { return m_quality; }
void L1MuBMTrackSegPhi::reset ( void  )

reset phi track segment

Definition at line 104 of file L1MuBMTrackSegPhi.cc.

References m_bx, m_etaFlag, m_phi, m_phib, m_quality, m_tag, and Null.

Referenced by L1MuBMSEU::reset().

104  {
105  m_phi = 0;
106  m_phib = 0;
107  m_quality = Null;
108  m_tag = false;
109  m_bx = 0;
110  m_etaFlag = false;
111 }
int L1MuBMTrackSegPhi::sector ( ) const
inline

return sector

Definition at line 88 of file L1MuBMTrackSegPhi.h.

References m_location, and L1MuBMTrackSegLoc::sector().

Referenced by geometryXMLparser.DTAlignable::index(), L1MuBMAssignmentUnit::PhiAU(), L1MuBMAssignmentUnit::phiDiff(), and L1MuBMEUX::run().

88 { return m_location.sector(); }
L1MuBMTrackSegLoc m_location
int sector() const
return sector (30 deg)
void L1MuBMTrackSegPhi::setEtaFlag ( bool  flag)
inline

set eta flag

Definition at line 118 of file L1MuBMTrackSegPhi.h.

References m_etaFlag.

118 { m_etaFlag = flag; }
int L1MuBMTrackSegPhi::station ( ) const
inline

return station

Definition at line 91 of file L1MuBMTrackSegPhi.h.

References m_location, and L1MuBMTrackSegLoc::station().

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

91 { return m_location.station(); }
L1MuBMTrackSegLoc m_location
int station() const
return station
int L1MuBMTrackSegPhi::tag ( ) const
inline

return tag (second TS tag)

Definition at line 106 of file L1MuBMTrackSegPhi.h.

References m_tag.

Referenced by DTTtrigWorkflow.DTttrigWorkflow::prepare_timeboxes_correction().

106 { return m_tag; }
int L1MuBMTrackSegPhi::wheel ( ) const
inline

return wheel

Definition at line 85 of file L1MuBMTrackSegPhi.h.

References m_location, and L1MuBMTrackSegLoc::wheel().

Referenced by geometryXMLparser.DTAlignable::index(), and L1MuBMEUX::run().

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

return location of phi track segment

Definition at line 94 of file L1MuBMTrackSegPhi.h.

References m_location.

94 { return m_location; }
L1MuBMTrackSegLoc m_location

Friends And Related Function Documentation

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

overload output stream operator for phi track segment quality

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

overload output stream operator for phi track segments

Member Data Documentation

int L1MuBMTrackSegPhi::m_bx
private

Definition at line 141 of file L1MuBMTrackSegPhi.h.

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

bool L1MuBMTrackSegPhi::m_etaFlag
private

Definition at line 142 of file L1MuBMTrackSegPhi.h.

Referenced by etaFlag(), operator=(), reset(), and setEtaFlag().

L1MuBMTrackSegLoc L1MuBMTrackSegPhi::m_location
private
int L1MuBMTrackSegPhi::m_phi
private

Definition at line 137 of file L1MuBMTrackSegPhi.h.

Referenced by operator!=(), operator=(), operator==(), phi(), phiValue(), and reset().

int L1MuBMTrackSegPhi::m_phib
private

Definition at line 138 of file L1MuBMTrackSegPhi.h.

Referenced by operator!=(), operator=(), operator==(), phib(), phibValue(), and reset().

TSQuality L1MuBMTrackSegPhi::m_quality
private

Definition at line 139 of file L1MuBMTrackSegPhi.h.

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

bool L1MuBMTrackSegPhi::m_tag
private

Definition at line 140 of file L1MuBMTrackSegPhi.h.

Referenced by operator=(), reset(), and tag().