ATLAS Offline Software
Loading...
Searching...
No Matches
TileExpertDump Class Reference

Algorithn to dump out calibration constants from the TileInfoSvc. More...

#include <TileExpertDump.h>

Inheritance diagram for TileExpertDump:
Collaboration diagram for TileExpertDump:

Public Member Functions

 TileExpertDump (const std::string &name, ISvcLocator *pSvcLocator)
 ~TileExpertDump ()
StatusCode initialize ()
StatusCode execute ()
StatusCode finalize ()
StatusCode setEmExpertOptions ()
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

void printExpertEmscale ()
void printExpertEmscaleOnl ()
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

TileEmscaleCalibOptions m_emExpertOptions
bool m_OflCisFitLin
bool m_OflCisFitNln
bool m_OflLasLin
bool m_OflLasNln
bool m_OflLasPart
bool m_OflCes
bool m_OflEms
bool m_OflLasLinPisa
bool m_OflLasNlnPisa
bool m_OflMinbias
bool m_OnlCisLin
bool m_OnlLasLin
bool m_OnlCes
bool m_OnlEms
bool m_printExpertEmscale
bool m_printExpertEmscaleOnl
SG::ReadHandleKey< xAOD::EventInfom_eventInfoKey
ToolHandle< TileExpertToolEmscalem_tileExpertToolEmscale
const TileHWIDm_tileHWID
std::string m_infoName
const TileInfom_tileInfo
int m_i_ADCmax = 0
DataObjIDColl m_extendedExtraObjects
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Algorithn to dump out calibration constants from the TileInfoSvc.

Definition at line 36 of file TileExpertDump.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ TileExpertDump()

TileExpertDump::TileExpertDump ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 26 of file TileExpertDump.cxx.

27 : AthAlgorithm(name, pSvcLocator)
29 , m_tileHWID(nullptr)
30 , m_tileInfo(nullptr)
31{
32 declareProperty("PrintExpertEmscale" , m_printExpertEmscale=false ,"Switch on expert calibration chain printout");
33 declareProperty("PrintExpertEmscaleOnl" , m_printExpertEmscaleOnl=false ,"Switch on expert onl calibration chain printout");
34
35 declareProperty("useOflCisFitLin" , m_OflCisFitLin = false, "Use calibration of OflCisFitLin");
36 declareProperty("useOflCisFitNln" , m_OflCisFitNln = false, "Use calibration of OflCisFitNln");
37 declareProperty("useOflLasLin" , m_OflLasLin = false, "Use calibration of OflLasLin");
38 declareProperty("useOflLasNln" , m_OflLasNln = false, "Use calibration of OflLasNln");
39 declareProperty("useOflLasPart" , m_OflLasPart = false, "Use calibration of OflLasPart");
40 declareProperty("useOflCes" , m_OflCes = false, "Use calibration of OflCes");
41 declareProperty("useOflEms" , m_OflEms = false, "Use calibration of OflEms");
42 declareProperty("useOflLasLinPisa", m_OflLasLinPisa = false, "Use calibration of OflLasLinPisa");
43 declareProperty("useOflLasNlnPisa", m_OflLasNlnPisa = false, "Use calibration of OflLasNlnPisa");
44 declareProperty("useOflMinbias" , m_OflMinbias = false, "Use calibration of OflMinbias");
45 declareProperty("useOnlCisLin" , m_OnlCisLin = false, "Use calibration of OnlCisLin");
46 declareProperty("useOnlLasLin" , m_OnlLasLin = false, "Use calibration of OnlLasLin");
47 declareProperty("useOnlCes" , m_OnlCes = false, "Use calibration of OnlCes");
48 declareProperty("useOnlEms" , m_OnlEms = false, "Use calibration of OnlEms");
49 declareProperty("TileInfoName", m_infoName = "TileInfo");
50}
AthAlgorithm()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
const TileInfo * m_tileInfo
bool m_printExpertEmscaleOnl
TileEmscaleCalibOptions m_emExpertOptions
std::string m_infoName
const TileHWID * m_tileHWID

◆ ~TileExpertDump()

TileExpertDump::~TileExpertDump ( )

Definition at line 54 of file TileExpertDump.cxx.

54 {
55}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode TileExpertDump::execute ( )

Definition at line 108 of file TileExpertDump.cxx.

108 {
109
110 ATH_MSG_DEBUG( " in execute()" );
111
112 SG::ReadHandle<xAOD::EventInfo> eventInfo(m_eventInfoKey);
113 ATH_CHECK( eventInfo.isValid() );
114
115 ATH_MSG_DEBUG( "Event: ["
116 << eventInfo->runNumber() << ", "
117 << eventInfo->eventNumber() << ", "
118 << eventInfo->lumiBlock() << ": "
119 << eventInfo->timeStamp() << "]" );
120
121
122 //=== print out stuff
125
126 return StatusCode::SUCCESS;
127}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
SG::ReadHandleKey< xAOD::EventInfo > m_eventInfoKey

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthAlgorithm::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 50 of file AthAlgorithm.cxx.

51{
52 // If we didn't find any symlinks to add, just return the collection
53 // from the base class. Otherwise, return the extended collection.
54 if (!m_extendedExtraObjects.empty()) {
56 }
57 return Algorithm::extraOutputDeps();
58}
DataObjIDColl m_extendedExtraObjects

◆ finalize()

StatusCode TileExpertDump::finalize ( )

Definition at line 241 of file TileExpertDump.cxx.

241 {
242
243 ATH_MSG_DEBUG( "in finalize()" );
244
245 //=== Dump the emExpertOptions for cross-check
247 ATH_MSG_INFO( "Dumping m_emExpertOptions = " << m_emExpertOptions.getEmscaleCalibOptions() );
248
249 std::ostringstream sout;
250 m_emExpertOptions.dumpEmscaleCalibOptions(sout);
251 ATH_MSG_INFO( sout.str() );
252 }
253
254 return StatusCode::SUCCESS;
255}
#define ATH_MSG_INFO(x)

◆ initialize()

StatusCode TileExpertDump::initialize ( )

Definition at line 58 of file TileExpertDump.cxx.

58 {
59
60 ATH_MSG_DEBUG( "in initialize()" );
61
62 //=== EventInfo key
63 ATH_CHECK( m_eventInfoKey.initialize() );
64
65 //=== Get TileHWID
66 CHECK( detStore()->retrieve(m_tileHWID, "TileHWID") );
67
68 //=== Get Emscale Calib Options for TileExpertToolEmscale
70
71 //=== Get TileExpertToolEmscale and set the options
72 CHECK( m_tileExpertToolEmscale.retrieve() );
73
75
76 //=== Get TileInfo and set max ADC counts
78 m_i_ADCmax = m_tileInfo->ADCmax();
79
80 return StatusCode::SUCCESS;
81}
#define CHECK(...)
Evaluate an expression and check for errors.
const ServiceHandle< StoreGateSvc > & detStore() const
ToolHandle< TileExpertToolEmscale > m_tileExpertToolEmscale
StatusCode setEmExpertOptions()
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ msg()

MsgStream & AthCommonMsg< Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ printExpertEmscale()

void TileExpertDump::printExpertEmscale ( )
private

Definition at line 131 of file TileExpertDump.cxx.

131 {
132
133 ATH_MSG_DEBUG( "In printExpertEmscale()" );
134
135 for (unsigned int ros = 0; ros < TileCalibUtils::MAX_ROS; ++ros) {
136 unsigned int drawerMax = TileCalibUtils::getMaxDrawer(ros);
137 for (unsigned int drawer = 0; drawer < drawerMax; ++drawer) {
138 unsigned int drawerIdx = TileCalibUtils::getDrawerIdx(ros, drawer);
139 for (unsigned int channel = 0; channel < TileCalibUtils::MAX_CHAN; ++channel) {
140 for (unsigned int adc = 0; adc < TileCalibUtils::MAX_GAIN; ++adc) {
141
142 msg(MSG::INFO) << ros << "/" << std::setw(2)
143 << drawer << "/" << std::setw(2)
144 << channel << "/"
145 << adc << " : "
146 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
147 << m_tileExpertToolEmscale->doCalibCis(drawerIdx, channel, adc, 1.) << " (CIS) | "
148 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
149 << m_tileExpertToolEmscale->doCalibLas(drawerIdx, channel, 1.) << " (LAS) | "
150 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
151 << m_tileExpertToolEmscale->doCalibCes(drawerIdx, channel, 1.) << " (CES) | "
152 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
153 << m_tileExpertToolEmscale->doCalibEms(drawerIdx, channel, 1.) << " (EMS) | ";
154
155 float chanCalMeV = m_tileExpertToolEmscale->channelCalib(drawerIdx, channel, adc, 1.
158
159 msg(MSG::INFO) << std::fixed << std::right << std::setw(9) << std::setprecision(5)
160 << chanCalMeV << " (total)";
161
162 //=== "Undo" online calibration only if this functionality is available
163 if (m_tileExpertToolEmscale->getOnlCacheUnit() != TileRawChannelUnit::Invalid) {
164 msg(MSG::INFO) << std::fixed << std::right << std::setw(9) << std::setprecision(5)
165 << m_tileExpertToolEmscale->channelCalib(drawerIdx, channel, adc, chanCalMeV
168 << " (onlMev->oflADC)";
169 }
170
171 msg(MSG::INFO) << endmsg;
172
173 } //end adc
174 } //end channel
175 } //end drawer
176 } //end ros
177
178 //===================================================================
179 //=== Perform a CIS energy scan to test CIS LUT
180 //===================================================================
181 ATH_MSG_INFO( "Performing an energy scan to test CIS LUT" );
182
183 unsigned int ros = 1;
184 unsigned int drawer = 0;
185 unsigned int channel = 0;
186 for (unsigned int adc = 0; adc < TileCalibUtils::MAX_GAIN; ++adc) {
187 for (int adcCounts = 0; adcCounts < m_i_ADCmax; ++adcCounts) {
188 double energy = static_cast<float>(adcCounts);
189 ATH_MSG_INFO( ros << "/" << drawer << "/" << channel << "/" << adc << " : "
190 << "ADC counts = " << adcCounts
191 << "\t---> " << m_tileExpertToolEmscale->doCalibCis(20, 0, adc, energy) );
192
193 } //end adcCounts
194 } //end adc
195
196}
#define endmsg
MsgStream & msg() const
static const unsigned int MAX_ROS
Number of ROSs.
static const unsigned int MAX_GAIN
Number of gains per channel.
static unsigned int getDrawerIdx(unsigned int ros, unsigned int drawer)
Returns a drawer hash.
static unsigned int getMaxDrawer(unsigned int ros)
Returns the maximal channel number for a given drawer.
static const unsigned int MAX_CHAN
Number of channels in drawer.

◆ printExpertEmscaleOnl()

void TileExpertDump::printExpertEmscaleOnl ( )
private

Definition at line 200 of file TileExpertDump.cxx.

200 {
201
202 ATH_MSG_DEBUG( "In printExpertEmscaleOnl()" );
203
204 for (unsigned int ros = 0; ros < TileCalibUtils::MAX_ROS; ++ros) {
205 unsigned int drawerMax = TileCalibUtils::getMaxDrawer(ros);
206 for (unsigned int drawer = 0; drawer < drawerMax; ++drawer) {
207 unsigned int drawerIdx = TileCalibUtils::getDrawerIdx(ros, drawer);
208 for (unsigned int channel = 0; channel < TileCalibUtils::MAX_CHAN; ++channel) {
209 for (unsigned int adc = 0; adc < TileCalibUtils::MAX_GAIN; ++adc) {
210
211 msg(MSG::INFO) << ros << "/" << std::setw(2)
212 << drawer << "/" << std::setw(2)
213 << channel << "/"
214 << adc << " : "
215 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
216 << m_tileExpertToolEmscale->doCalibCisOnl(drawerIdx, channel, adc, 1.) << " (ONL_CIS) | "
217 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
218 << m_tileExpertToolEmscale->doCalibLasOnl(drawerIdx, channel, 1.) << " (ONL_LAS) | "
219 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
220 << m_tileExpertToolEmscale->doCalibCesOnl(drawerIdx, channel, 1.) << " (ONL_CES) | "
221 << std::fixed << std::right << std::setw(9) << std::setprecision(5)
222 << m_tileExpertToolEmscale->doCalibEmsOnl(drawerIdx, channel, 1.) << " (ONL_EMS) | ";
223
224 float chanCalMeV = m_tileExpertToolEmscale->channelCalibOnl(drawerIdx, channel, adc, 1.
226
227 msg(MSG::INFO) << std::fixed << std::right << std::setw(9) << std::setprecision(5)
228 << chanCalMeV << " (total)";
229
230 msg(MSG::INFO) << endmsg;
231
232 } //end adc
233 } //end channel
234 } //end drawer
235 } //end ros
236
237}

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setEmExpertOptions()

StatusCode TileExpertDump::setEmExpertOptions ( )

Definition at line 85 of file TileExpertDump.cxx.

85 {
86
92 if(m_OflCes ) m_emExpertOptions.setEmscaleCalibBit(TileEmscaleCalibOptions::OflCes , true );
93 if(m_OflEms ) m_emExpertOptions.setEmscaleCalibBit(TileEmscaleCalibOptions::OflEms , true );
99 if(m_OnlCes ) m_emExpertOptions.setEmscaleCalibBit(TileEmscaleCalibOptions::OnlCes , true );
100 if(m_OnlEms ) m_emExpertOptions.setEmscaleCalibBit(TileEmscaleCalibOptions::OnlEms , true );
101
102 return StatusCode::SUCCESS;
103}

◆ sysInitialize()

StatusCode AthAlgorithm::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Algorithm > >.

Reimplemented in AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, and PyAthena::Alg.

Definition at line 66 of file AthAlgorithm.cxx.

66 {
68
69 if (sc.isFailure()) {
70 return sc;
71 }
72 ServiceHandle<ICondSvc> cs("CondSvc",name());
73 for (auto h : outputHandles()) {
74 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
75 // do this inside the loop so we don't create the CondSvc until needed
76 if ( cs.retrieve().isFailure() ) {
77 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
78 return StatusCode::SUCCESS;
79 }
80 if (cs->regHandle(this,*h).isFailure()) {
81 sc = StatusCode::FAILURE;
82 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
83 << " with CondSvc");
84 }
85 }
86 }
87 return sc;
88}
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
static Double_t sc
virtual StatusCode sysInitialize() override
Override sysInitialize.
AthCommonDataStore(const std::string &name, T... args)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_emExpertOptions

TileEmscaleCalibOptions TileExpertDump::m_emExpertOptions
private

Definition at line 49 of file TileExpertDump.h.

◆ m_eventInfoKey

SG::ReadHandleKey<xAOD::EventInfo> TileExpertDump::m_eventInfoKey
private
Initial value:
{this,
"EventInfo", "EventInfo", "EventInfo key"}

Definition at line 69 of file TileExpertDump.h.

69 {this,
70 "EventInfo", "EventInfo", "EventInfo key"};

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthAlgorithm::m_extendedExtraObjects
privateinherited

Definition at line 79 of file AthAlgorithm.h.

◆ m_i_ADCmax

int TileExpertDump::m_i_ADCmax = 0
private

Definition at line 81 of file TileExpertDump.h.

◆ m_infoName

std::string TileExpertDump::m_infoName
private

Definition at line 79 of file TileExpertDump.h.

◆ m_OflCes

bool TileExpertDump::m_OflCes
private

Definition at line 55 of file TileExpertDump.h.

◆ m_OflCisFitLin

bool TileExpertDump::m_OflCisFitLin
private

Definition at line 50 of file TileExpertDump.h.

◆ m_OflCisFitNln

bool TileExpertDump::m_OflCisFitNln
private

Definition at line 51 of file TileExpertDump.h.

◆ m_OflEms

bool TileExpertDump::m_OflEms
private

Definition at line 56 of file TileExpertDump.h.

◆ m_OflLasLin

bool TileExpertDump::m_OflLasLin
private

Definition at line 52 of file TileExpertDump.h.

◆ m_OflLasLinPisa

bool TileExpertDump::m_OflLasLinPisa
private

Definition at line 57 of file TileExpertDump.h.

◆ m_OflLasNln

bool TileExpertDump::m_OflLasNln
private

Definition at line 53 of file TileExpertDump.h.

◆ m_OflLasNlnPisa

bool TileExpertDump::m_OflLasNlnPisa
private

Definition at line 58 of file TileExpertDump.h.

◆ m_OflLasPart

bool TileExpertDump::m_OflLasPart
private

Definition at line 54 of file TileExpertDump.h.

◆ m_OflMinbias

bool TileExpertDump::m_OflMinbias
private

Definition at line 59 of file TileExpertDump.h.

◆ m_OnlCes

bool TileExpertDump::m_OnlCes
private

Definition at line 62 of file TileExpertDump.h.

◆ m_OnlCisLin

bool TileExpertDump::m_OnlCisLin
private

Definition at line 60 of file TileExpertDump.h.

◆ m_OnlEms

bool TileExpertDump::m_OnlEms
private

Definition at line 63 of file TileExpertDump.h.

◆ m_OnlLasLin

bool TileExpertDump::m_OnlLasLin
private

Definition at line 61 of file TileExpertDump.h.

◆ m_printExpertEmscale

bool TileExpertDump::m_printExpertEmscale
private

Definition at line 66 of file TileExpertDump.h.

◆ m_printExpertEmscaleOnl

bool TileExpertDump::m_printExpertEmscaleOnl
private

Definition at line 67 of file TileExpertDump.h.

◆ m_tileExpertToolEmscale

ToolHandle<TileExpertToolEmscale> TileExpertDump::m_tileExpertToolEmscale
private
Initial value:
{this,
"TileExpertToolEmscale","TileExpertToolEmscale", "Tile expert tool em scale"}

Definition at line 73 of file TileExpertDump.h.

73 {this,
74 "TileExpertToolEmscale","TileExpertToolEmscale", "Tile expert tool em scale"};

◆ m_tileHWID

const TileHWID* TileExpertDump::m_tileHWID
private

Definition at line 76 of file TileExpertDump.h.

◆ m_tileInfo

const TileInfo* TileExpertDump::m_tileInfo
private

Definition at line 80 of file TileExpertDump.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: