#include <Measurement.h>
Public Types | |
enum | Type { Muon, OT, ST, TT, VeloR, VeloPhi } |
enumerator for the type of Measurement More... | |
Public Member Functions | |
Measurement () | |
Default Constructor. | |
virtual | ~Measurement () |
Default Destructor. | |
virtual Measurement * | clone () const |
Clone the Measurement. | |
void | setType (const Type &value) |
Update measurement type. | |
bool | checkType (const Type &value) const |
Check measurement type. | |
double | z () const |
Retrieve const the z-position of the measurement. | |
void | setZ (double value) |
Update the z-position of the measurement. | |
double | measure () const |
Retrieve const the measurement value. | |
void | setMeasure (double value) |
Update the measurement value. | |
double | errMeasure () const |
Retrieve const the measurement error. | |
void | setErrMeasure (double value) |
Update the measurement error. | |
const LHCbID & | lhcbID () const |
Retrieve const the corresponding LHCbID. | |
LHCbID & | lhcbID () |
Retrieve the corresponding LHCbID. | |
void | setLhcbID (const LHCbID &value) |
Update the corresponding LHCbID. | |
Protected Types | |
enum | mtypeBits { typeBits = 0 } |
Offsets of bitfield mtype. More... | |
enum | mtypeMasks { typeMask = 0x3FL } |
Bitmasks for bitfield mtype. More... | |
Protected Attributes | |
unsigned int | m_mtype |
the variety of measurement types | |
double | m_z |
the z-position of the measurement | |
double | m_measure |
the measurement value | |
double | m_errMeasure |
the measurement error | |
LHCbID | m_lhcbID |
the corresponding LHCbID |
Definition at line 33 of file Measurement.h.
|
Offsets of bitfield mtype.
Definition at line 94 of file Measurement.h. 00094 {typeBits = 0};
|
|
Bitmasks for bitfield mtype.
Definition at line 97 of file Measurement.h. 00097 {typeMask = 0x3FL};
|
|
enumerator for the type of Measurement
Definition at line 38 of file Measurement.h.
|
|
Default Constructor.
Definition at line 46 of file Measurement.h. References m_errMeasure, m_lhcbID, m_measure, m_mtype, and m_z. Referenced by clone(). 00046 : m_mtype(0), 00047 m_z(0.0), 00048 m_measure(0.0), 00049 m_errMeasure(0.0), 00050 m_lhcbID() {}
|
|
Default Destructor.
Definition at line 53 of file Measurement.h. 00053 {}
|
|
Check measurement type.
Definition at line 123 of file Measurement.h. References m_mtype, typeBits, and typeMask. 00124 { 00125 unsigned int val = (unsigned int)value; 00126 return 0 != ( m_mtype & typeMask & ( val << typeBits )); 00127 }
|
|
Clone the Measurement.
Definition at line 174 of file Measurement.h. References Measurement(). Referenced by Node::setMeasurement(). 00175 { 00176 00177 Measurement* me = new Measurement(); *me = *this; return me; 00178 00179 }
|
|
Retrieve const the measurement error.
Definition at line 149 of file Measurement.h. References m_errMeasure. 00150 { 00151 return m_errMeasure; 00152 }
|
|
Retrieve the corresponding LHCbID.
Definition at line 164 of file Measurement.h. References m_lhcbID. 00165 { 00166 return m_lhcbID; 00167 }
|
|
Retrieve const the corresponding LHCbID.
Definition at line 159 of file Measurement.h. References m_lhcbID. 00160 { 00161 return m_lhcbID; 00162 }
|
|
Retrieve const the measurement value.
Definition at line 139 of file Measurement.h. References m_measure. 00140 { 00141 return m_measure; 00142 }
|
|
Update the measurement error.
Definition at line 154 of file Measurement.h. References m_errMeasure. 00155 { 00156 m_errMeasure = value; 00157 }
|
|
Update the corresponding LHCbID.
Definition at line 169 of file Measurement.h. References m_lhcbID. 00170 { 00171 m_lhcbID = value; 00172 }
|
|
Update the measurement value.
Definition at line 144 of file Measurement.h. References m_measure. 00145 { 00146 m_measure = value; 00147 }
|
|
Update measurement type.
Definition at line 116 of file Measurement.h. References m_mtype, typeBits, and typeMask. 00117 { 00118 unsigned int val = (unsigned int)value; 00119 m_mtype &= ~typeMask; 00120 m_mtype |= ((((unsigned int)val) << typeBits) & typeMask); 00121 }
|
|
Update the z-position of the measurement.
Definition at line 134 of file Measurement.h. References m_z. 00135 { 00136 m_z = value; 00137 }
|
|
Retrieve const the z-position of the measurement.
Definition at line 129 of file Measurement.h. References m_z. 00130 { 00131 return m_z; 00132 }
|
|
the measurement error
Definition at line 103 of file Measurement.h. Referenced by errMeasure(), Measurement(), and setErrMeasure(). |
|
the corresponding LHCbID
Definition at line 104 of file Measurement.h. Referenced by lhcbID(), Measurement(), and setLhcbID(). |
|
the measurement value
Definition at line 102 of file Measurement.h. Referenced by measure(), Measurement(), and setMeasure(). |
|
the variety of measurement types
Definition at line 100 of file Measurement.h. Referenced by checkType(), Measurement(), and setType(). |
|
the z-position of the measurement
Definition at line 101 of file Measurement.h. Referenced by Measurement(), setZ(), and z(). |