Loading [MathJax]/extensions/tex2jax.js
 |
ATLAS Offline Software
|
Class for Tile digi noise based monitoring.
More...
#include <TileDigitsMonitorAlgorithm.h>
|
enum | Environment_t {
Environment_t::user = 0,
Environment_t::online,
Environment_t::tier0,
Environment_t::tier0Raw,
Environment_t::tier0ESD,
Environment_t::AOD,
Environment_t::altprod
} |
| Specifies the processing environment. More...
|
|
enum | DataType_t {
DataType_t::userDefined = 0,
DataType_t::monteCarlo,
DataType_t::collisions,
DataType_t::cosmics,
DataType_t::heavyIonCollisions
} |
| Specifies what type of input data is being monitored. More...
|
|
|
virtual | ~TileDigitsMonitorAlgorithm ()=default |
|
virtual StatusCode | initialize () override |
| initialize More...
|
|
virtual StatusCode | fillHistograms (const EventContext &ctx) const override |
| adds event to the monitoring histograms More...
|
|
| TileCalibMonitorAlgorithm (const std::string &name, ISvcLocator *svcLocator) |
|
| AthMonitorAlgorithm (const std::string &name, ISvcLocator *pSvcLocator) |
| Constructor. More...
|
|
virtual StatusCode | execute (const EventContext &ctx) const override |
| Applies filters and trigger requirements. More...
|
|
void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &&variables) const |
| Fills a vector of variables to a group by reference. More...
|
|
void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, const std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &variables) const |
| Fills a vector of variables to a group by reference. More...
|
|
template<typename... T> |
void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, T &&... variables) const |
| Fills a variadic list of variables to a group by reference. More...
|
|
void | fill (const std::string &groupName, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &&variables) const |
| Fills a vector of variables to a group by name. More...
|
|
void | fill (const std::string &groupName, const std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &variables) const |
| Fills a vector of variables to a group by name. More...
|
|
template<typename... T> |
void | fill (const std::string &groupName, T &&... variables) const |
| Fills a variadic list of variables to a group by name. More...
|
|
Environment_t | environment () const |
| Accessor functions for the environment. More...
|
|
Environment_t | envStringToEnum (const std::string &str) const |
| Convert the environment string from the python configuration to an enum object. More...
|
|
DataType_t | dataType () const |
| Accessor functions for the data type. More...
|
|
DataType_t | dataTypeStringToEnum (const std::string &str) const |
| Convert the data type string from the python configuration to an enum object. More...
|
|
const ToolHandle< GenericMonitoringTool > & | getGroup (const std::string &name) const |
| Get a specific monitoring tool from the tool handle array. More...
|
|
const ToolHandle< Trig::TrigDecisionTool > & | getTrigDecisionTool () const |
| Get the trigger decision tool member. More...
|
|
bool | trigChainsArePassed (const std::vector< std::string > &vTrigNames) const |
| Check whether triggers are passed. More...
|
|
SG::ReadHandle< xAOD::EventInfo > | GetEventInfo (const EventContext &) const |
| Return a ReadHandle for an EventInfo object (get run/event numbers, etc.) More...
|
|
virtual float | lbAverageInteractionsPerCrossing (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the average mu, i.e. More...
|
|
virtual float | lbInteractionsPerCrossing (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate instantaneous number of interactions, i.e. More...
|
|
virtual float | lbAverageLuminosity (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate average luminosity (in ub-1 s-1 => 10^30 cm-2 s-1). More...
|
|
virtual float | lbLuminosityPerBCID (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the instantaneous luminosity per bunch crossing. More...
|
|
virtual double | lbDuration (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the duration of the luminosity block (in seconds) More...
|
|
virtual float | lbAverageLivefraction (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the average luminosity livefraction. More...
|
|
virtual float | livefractionPerBCID (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the live fraction per bunch crossing ID. More...
|
|
virtual double | lbLumiWeight (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| Calculate the average integrated luminosity multiplied by the live fraction. More...
|
|
virtual StatusCode | parseList (const std::string &line, std::vector< std::string > &result) const |
| Parse a string into a vector. More...
|
|
virtual StatusCode | sysInitialize () override |
| Override sysInitialize. More...
|
|
virtual bool | isClonable () const override |
| Specify if the algorithm is clonable. More...
|
|
virtual unsigned int | cardinality () const override |
| Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant. More...
|
|
virtual StatusCode | sysExecute (const EventContext &ctx) override |
| Execute an algorithm. More...
|
|
virtual const DataObjIDColl & | extraOutputDeps () const override |
| Return the list of extra output dependencies. More...
|
|
virtual bool | filterPassed (const EventContext &ctx) const |
|
virtual void | setFilterPassed (bool state, const EventContext &ctx) const |
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
|
Gaudi::Property< std::string > | m_tileInfoName |
|
Gaudi::Property< std::vector< int > > | m_fragIDsToIgnoreDMUerrors |
|
Gaudi::Property< std::vector< int > > | m_fragIDsDemonstrators |
|
Gaudi::Property< int > | m_runType |
|
SG::ReadHandleKey< TileDQstatus > | m_dqStatusKey |
|
ServiceHandle< TileCablingSvc > | m_cablingSvc |
| Name of Tile cabling service. More...
|
|
const TileCablingService * | m_cabling {nullptr} |
|
const TileHWID * | m_tileHWID {nullptr} |
|
const TileInfo * | m_tileInfo {nullptr} |
|
ToolHandleArray< GenericMonitoringTool > | m_tools {this,"GMTools",{}} |
| Array of Generic Monitoring Tools. More...
|
|
PublicToolHandle< Trig::TrigDecisionTool > | m_trigDecTool {this, "TrigDecisionTool",""} |
| Tool to tell whether a specific trigger is passed. More...
|
|
ToolHandleArray< IDQFilterTool > | m_DQFilterTools {this,"FilterTools",{}} |
| Array of Data Quality filter tools. More...
|
|
SG::ReadCondHandleKey< LuminosityCondData > | m_lumiDataKey {this,"LuminosityCondDataKey","LuminosityCondData","SG Key of LuminosityCondData object"} |
|
SG::ReadCondHandleKey< LBDurationCondData > | m_lbDurationDataKey {this,"LBDurationCondDataKey","LBDurationCondData","SG Key of LBDurationCondData object"} |
|
SG::ReadCondHandleKey< TrigLiveFractionCondData > | m_trigLiveFractionDataKey {this,"TrigLiveFractionCondDataKey","TrigLiveFractionCondData", "SG Key of TrigLiveFractionCondData object"} |
|
AthMonitorAlgorithm::Environment_t | m_environment |
| Instance of the Environment_t enum. More...
|
|
AthMonitorAlgorithm::DataType_t | m_dataType |
| Instance of the DataType_t enum. More...
|
|
Gaudi::Property< std::string > | m_environmentStr {this,"Environment","user"} |
| Environment string pulled from the job option and converted to enum. More...
|
|
Gaudi::Property< std::string > | m_dataTypeStr {this,"DataType","userDefined"} |
| DataType string pulled from the job option and converted to enum. More...
|
|
Gaudi::Property< std::string > | m_triggerChainString {this,"TriggerChain",""} |
| Trigger chain string pulled from the job option and parsed into a vector. More...
|
|
std::vector< std::string > | m_vTrigChainNames |
| Vector of trigger chain names parsed from trigger chain string. More...
|
|
Gaudi::Property< std::string > | m_fileKey {this,"FileKey",""} |
| Internal Athena name for file. More...
|
|
Gaudi::Property< bool > | m_useLumi {this,"EnableLumi",false} |
| Allows use of various luminosity functions. More...
|
|
Gaudi::Property< float > | m_defaultLBDuration {this,"DefaultLBDuration",60.} |
| Default duration of one lumi block. More...
|
|
Gaudi::Property< int > | m_detailLevel {this,"DetailLevel",0} |
| Sets the level of detail used in the monitoring. More...
|
|
SG::ReadHandleKey< xAOD::EventInfo > | m_EventInfoKey {this,"EventInfoKey","EventInfo"} |
| Key for retrieving EventInfo from StoreGate. More...
|
|
|
enum | TileFragStatus {
ALL_OK = 0,
ALL_FF = 0x10,
ALL_00 = 0x20,
NO_FRAG = 0x40,
NO_ROB = 0x80
} |
|
enum | TileDigiErrors {
OK,
HEADER_FORM,
HEADER_PAR,
MEMO_PAR,
SINGLE_STB,
DOUBLE_STB,
DUMMY_FRAG,
NO_RECO_FRAG
} |
|
typedef std::vector< std::reference_wrapper< Monitored::IMonitoredVariable > > | MonVarVec_t |
|
typedef ServiceHandle< StoreGateSvc > | StoreGateSvc_t |
|
|
void | checkCRC (bool isCalibMode, uint32_t crc32, uint32_t crcMask, int nDMU, int ros, int drawer) const |
|
StatusCode | checkROD_CRC (const TileDQstatus *dqStatus, const EventContext &ctx) const |
|
bool | checkCorruptedData (const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> &headerWordsAll, uint32_t fragStatus, int ros, int drawer, std::vector< std::vector< bool >> &corruptedData) const |
|
void | checkBCID (const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> &headerWordsAll, uint32_t rodBCID, int ros, int drawer) const |
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKey> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleKeyArrayType &) |
| specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &hndl, const SG::VarHandleType &) |
| specialization for handling Gaudi::Property<SG::VarHandleBase> More...
|
|
Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T > &t, const SG::NotHandleType &) |
| specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More...
|
|
Class for Tile digi noise based monitoring.
Definition at line 22 of file TileDigitsMonitorAlgorithm.h.
◆ MonVarVec_t
◆ StoreGateSvc_t
◆ DataType_t
Specifies what type of input data is being monitored.
An enumeration of the different types of data the monitoring application may be running over. This can be used to select which histograms to produce, e.g. to prevent the production of colliding-beam histograms when running on cosmic-ray data. Strings of the same names may be given as jobOptions.
Enumerator |
---|
userDefined | |
monteCarlo | |
collisions | |
cosmics | |
heavyIonCollisions | |
Definition at line 191 of file AthMonitorAlgorithm.h.
◆ Environment_t
Specifies the processing environment.
The running environment may be used to select which histograms are produced, and where they are located in the output. For example, the output paths of the histograms are different for the "user", "online" and the various offline flags. Strings of the same names may be given as jobOptions.
Enumerator |
---|
user | |
online | |
tier0 | |
tier0Raw | |
tier0ESD | |
AOD | |
altprod | |
Definition at line 172 of file AthMonitorAlgorithm.h.
◆ RunType
Describes Tile Run Type.
Enumerator |
---|
UNKNOWN_RUN | |
PHYS_RUN | |
LAS_RUN | |
LED_RUN | |
PED_RUN | |
CIS_RUN | |
MONO_RUN | |
CIS_RAMP_RUN | |
Definition at line 64 of file TileCalibMonitorAlgorithm.h.
◆ TileDigiErrors
Enumerator |
---|
OK | |
HEADER_FORM | |
HEADER_PAR | |
MEMO_PAR | |
SINGLE_STB | |
DOUBLE_STB | |
DUMMY_FRAG | |
NO_RECO_FRAG | |
Definition at line 35 of file TileDigitsMonitorAlgorithm.h.
◆ TileFragStatus
◆ ~TileDigitsMonitorAlgorithm()
virtual TileDigitsMonitorAlgorithm::~TileDigitsMonitorAlgorithm |
( |
| ) |
|
|
virtualdefault |
◆ AthMonitorAlgorithm()
AthMonitorAlgorithm::AthMonitorAlgorithm |
|
inherited |
◆ cardinality()
Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
Override this to return 0 for reentrant algorithms.
Override this to return 0 for reentrant algorithms.
Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.
◆ checkBCID()
void TileDigitsMonitorAlgorithm::checkBCID |
( |
const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> & |
headerWordsAll, |
|
|
uint32_t |
rodBCID, |
|
|
int |
ros, |
|
|
int |
drawer |
|
) |
| const |
|
private |
Definition at line 532 of file TileDigitsMonitorAlgorithm.cxx.
537 for (
auto headerWords : headerWordsAll) {
544 if ((dmuBCID == rodBCID) || (dmuBCID == rodBCID - 1)
545 || ((rodBCID == 0) && ((dmuBCID == 3563) || (dmuBCID == 3564)))) {
◆ checkCorruptedData()
bool TileDigitsMonitorAlgorithm::checkCorruptedData |
( |
const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> & |
headerWordsAll, |
|
|
uint32_t |
fragStatus, |
|
|
int |
ros, |
|
|
int |
drawer, |
|
|
std::vector< std::vector< bool >> & |
corruptedData |
|
) |
| const |
|
private |
Definition at line 429 of file TileDigitsMonitorAlgorithm.cxx.
438 std::vector<int> dmus;
443 if (fragStatus & (TileFragStatus::ALL_FF | TileFragStatus::ALL_00)) {
445 }
else if (fragStatus & (TileFragStatus::NO_FRAG | TileFragStatus::NO_ROB)) {
448 for (
int dmu = 0; dmu <
MAX_DMU; ++dmu) {
453 for (
unsigned int gain = 0;
gain < Tile::MAX_GAIN; ++
gain) {
482 for (
auto headerWords : headerWordsAll) {
489 corruptedData[
gain][dmu] =
true;
493 corruptedData[
gain][dmu] =
true;
518 corruptedData[
gain][dmu] =
true;
◆ checkCRC()
void TileDigitsMonitorAlgorithm::checkCRC |
( |
bool |
isCalibMode, |
|
|
uint32_t |
crc32, |
|
|
uint32_t |
crcMask, |
|
|
int |
nDMU, |
|
|
int |
ros, |
|
|
int |
drawer |
|
) |
| const |
|
private |
bigain: dummy information
Definition at line 294 of file TileDigitsMonitorAlgorithm.cxx.
312 int dmuFE_EB[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 8, 9, 10, 11, 14, 15 };
313 int dmuFE_EB_special[16] = { 11, 0, 1, 2, 3, 4, 5, 6, 12, 13, 7, 8, 9, 10, 14, 15 };
319 int crcGlobal = (crc32 == 0) ? 0 : (crc0 == crc1) ? 1 : 2;
326 for (
int dmu = 0; dmu < nDMU; ++dmu) {
342 for (
int dmu = 0; dmu < nDMU; ++dmu) {
348 for (
int dmu = 0; dmu < nDMU; ++dmu) {
355 for (
int dmu = 0; dmu < nDMU; ++dmu) {
358 if ((fe_crc >> dmu & 0
x1) == 0x0) {
365 if ((fe_crc >> dmuFE_EB_special[dmu] & 0
x1) == 0x0) {
369 if ((fe_crc >> dmuFE_EB[dmu] & 0
x1) == 0x0) {
374 if ((rod_crc >> dmu & 0
x1) == 0x0) {
◆ checkROD_CRC()
StatusCode TileDigitsMonitorAlgorithm::checkROD_CRC |
( |
const TileDQstatus * |
dqStatus, |
|
|
const EventContext & |
ctx |
|
) |
| const |
|
private |
Definition at line 387 of file TileDigitsMonitorAlgorithm.cxx.
406 if (rawChannelCollection->empty())
continue;
408 HWIdentifier hwid = rawChannelCollection->front()->adc_HWID();
411 uint32_t crc32 = rawChannelCollection->getFragGlobalCRC() & 1;
419 uint32_t maskCRC = rawChannelCollection->getFragRODChipMask();
420 maskCRC = maskCRC << 16;
421 maskCRC += rawChannelCollection->getFragFEChipMask();
425 return StatusCode::SUCCESS;
◆ dataType()
DataType_t AthMonitorAlgorithm::dataType |
( |
| ) |
const |
|
inlineinherited |
Accessor functions for the data type.
- Returns
- the current value of the class's DataType_t instance.
Definition at line 221 of file AthMonitorAlgorithm.h.
◆ dataTypeStringToEnum()
Convert the data type string from the python configuration to an enum object.
- Returns
- a value in the DataType_t enumeration which matches the input string.
Definition at line 140 of file AthMonitorAlgorithm.cxx.
142 std::string lowerCaseStr =
str;
146 if( lowerCaseStr ==
"userdefined" ) {
148 }
else if( lowerCaseStr ==
"montecarlo" ) {
150 }
else if( lowerCaseStr ==
"collisions" ) {
152 }
else if( lowerCaseStr ==
"cosmics" ) {
154 }
else if( lowerCaseStr ==
"heavyioncollisions" ) {
157 ATH_MSG_WARNING(
"AthMonitorAlgorithm::dataTypeStringToEnum(): Unknown data type "
158 <<
str<<
", returning userDefined.");
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ environment()
Accessor functions for the environment.
- Returns
- the current value of the class's Environment_t instance.
Definition at line 205 of file AthMonitorAlgorithm.h.
◆ envStringToEnum()
Convert the environment string from the python configuration to an enum object.
- Returns
- a value in the Environment_t enumeration which matches the input string.
Definition at line 112 of file AthMonitorAlgorithm.cxx.
114 std::string lowerCaseStr =
str;
118 if( lowerCaseStr ==
"user" ) {
120 }
else if( lowerCaseStr ==
"online" ) {
122 }
else if( lowerCaseStr ==
"tier0" ) {
124 }
else if( lowerCaseStr ==
"tier0raw" ) {
126 }
else if( lowerCaseStr ==
"tier0esd" ) {
128 }
else if( lowerCaseStr ==
"aod" ) {
130 }
else if( lowerCaseStr ==
"altprod" ) {
133 ATH_MSG_WARNING(
"AthMonitorAlgorithm::envStringToEnum(): Unknown environment "
134 <<
str<<
", returning user.");
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
StatusCode AthMonitorAlgorithm::execute |
( |
const EventContext & |
ctx | ) |
const |
|
overridevirtualinherited |
Applies filters and trigger requirements.
Then, calls fillHistograms().
- Parameters
-
ctx | event context for reentrant Athena call |
- Returns
- StatusCode
Definition at line 73 of file AthMonitorAlgorithm.cxx.
78 if (!filterItr->accept()) {
80 return StatusCode::SUCCESS;
87 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
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()
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.
◆ fillHistograms()
StatusCode TileDigitsMonitorAlgorithm::fillHistograms |
( |
const EventContext & |
ctx | ) |
const |
|
overridevirtual |
adds event to the monitoring histograms
User will overwrite this function. Histogram booking is no longer done in C++. This function is called in execute once the filters are all passed.
- Parameters
-
ctx | forwarded from execute |
- Returns
- StatusCode
Implements TileCalibMonitorAlgorithm.
Definition at line 87 of file TileDigitsMonitorAlgorithm.cxx.
94 std::vector<float> meanSample[Tile::MAX_GAIN];
95 std::vector<float> meanSampleChannel[Tile::MAX_GAIN];
97 std::vector<float> meanSampleProd[Tile::MAX_GAIN];
98 std::vector<float> meanSampleProdChannel1[Tile::MAX_GAIN];
99 std::vector<float> meanSampleProdChannel2[Tile::MAX_GAIN];
110 if (digitsCollection->empty() )
continue;
112 HWIdentifier adc_id = digitsCollection->front()->adc_HWID();
118 const std::vector<uint32_t>& headerWordsLow = digitsCollection->getFragChipHeaderWords();
119 const std::vector<uint32_t>& headerWordsHigh = digitsCollection->getFragChipHeaderWordsHigh();
120 std::vector<std::reference_wrapper<const std::vector<uint32_t>>> headerWordsAll{headerWordsLow};
121 if (headerWordsHigh.empty()) {
123 headerWordsAll.push_back(headerWordsLow);
125 headerWordsAll.push_back(headerWordsHigh);
128 std::vector<std::vector<bool>> corruptedData(Tile::MAX_GAIN, std::vector<bool>(
MAX_DMU));
129 uint32_t fragStatus = digitsCollection->getFragStatus();
135 uint32_t rodBCID = digitsCollection->getRODBCID();
138 bool isCalibMode = (dqStatus->
calibMode() == 1);
141 int nDMU = headerWordsLow.size();
142 uint32_t crc32 = digitsCollection->getFragCRC();
143 uint32_t crcMask = digitsCollection->getFragDMUMask();
153 charge = cispar[6] * cispar[7] * (2. * 4.096 / 4095.);
155 charge = cispar[6] * cispar[7] * (2. * 4.096 / 1023.);
158 const TileDigits* moduleDigits[Tile::MAX_CHAN][Tile::MAX_GAIN] = {{
nullptr}};
160 for (
const TileDigits* tile_digits : *digitsCollection) {
174 const std::vector<float>& digits = tile_digits->samples();
175 unsigned int nSamples = digits.size();
180 double pedestal = digits[0];
192 double sampleMean = 0.0;
193 double sampleRMS = 0.0;
195 for (
double sample : digits) {
200 fill(
"TileDigitsOverflow", monCharge);
205 sampleRMS = sampleRMS /
nSamples - sampleMean * sampleMean;
206 sampleRMS = (sampleRMS > 0.0) ? sqrt(sampleRMS *
nSamples / (
nSamples - 1)) : 0.0;
209 meanSample[
adc].push_back(sampleMean);
218 || (cispar[6] > 0. && (
adc < 1 ||
charge < 12.))) {
228 std::vector<int> sampleNumbers(
nSamples);
229 std::iota(sampleNumbers.begin(), sampleNumbers.end(), 0);
236 int evtMod32 = (ctx.evt() + 1) % 32;
245 for (
unsigned int gain = 0;
gain < Tile::MAX_GAIN; ++
gain) {
251 for (
int channel1 : meanSampleChannel[
gain]) {
252 const std::vector<float>& digits1 = moduleDigits[channel1][
gain]->
samples();
253 for (
int channel2 : meanSampleChannel[
gain]) {
254 const std::vector<float>& digits2 = moduleDigits[channel2][
gain]->
samples();
255 double sampleProdMean = 0.;
256 unsigned int nSamples = digits1.size();
258 sampleProdMean += digits1[
i] * digits2[
i];
261 meanSampleProd[
gain].push_back(sampleProdMean);
262 meanSampleProdChannel1[
gain].push_back(channel1);
263 meanSampleProdChannel2[
gain].push_back(channel2);
271 meanSample[
gain].clear();
272 meanSampleChannel[
gain].clear();
274 meanSampleProd[
gain].clear();
275 meanSampleProdChannel1[
gain].clear();
276 meanSampleProdChannel2[
gain].clear();
291 return StatusCode::SUCCESS;
◆ filterPassed()
◆ GetEventInfo()
Return a ReadHandle for an EventInfo object (get run/event numbers, etc.)
- Parameters
-
ctx | EventContext for the event |
- Returns
- a SG::ReadHandle<xAOD::EventInfo>
Definition at line 107 of file AthMonitorAlgorithm.cxx.
◆ getGroup()
Get a specific monitoring tool from the tool handle array.
Finds a specific GenericMonitoringTool instance from the list of monitoring tools (a ToolHandleArray). Throws a FATAL warning if the object found is empty.
- Parameters
-
name | string name of the desired tool |
- Returns
- reference to the desired monitoring tool
Definition at line 164 of file AthMonitorAlgorithm.cxx.
176 if (!isInitialized()) {
178 "It seems that the AthMonitorAlgorithm::initialize was not called "
179 "in derived class initialize method");
183 [](
const std::string&
s,
auto h) { return s +
"," + h.first; });
184 ATH_MSG_FATAL(
"The tool " <<
name <<
" could not be found in the tool array of the "
185 <<
"monitoring algorithm " <<
m_name <<
". This probably reflects a discrepancy between "
186 <<
"your python configuration and c++ filling code. Note: your available groups are {"
187 << available <<
"}.");
◆ getTrigDecisionTool()
Get the trigger decision tool member.
The trigger decision tool is used to check whether a specific trigger is passed by an event.
- Returns
- m_trigDecTool
Definition at line 194 of file AthMonitorAlgorithm.cxx.
◆ initialize()
StatusCode TileDigitsMonitorAlgorithm::initialize |
( |
| ) |
|
|
overridevirtual |
initialize
- Returns
- StatusCode
Reimplemented from TileCalibMonitorAlgorithm.
Definition at line 12 of file TileDigitsMonitorAlgorithm.cxx.
34 Tile::MAX_ROS - 1, Tile::MAX_DRAWER,
38 Tile::MAX_ROS - 1, Tile::MAX_DRAWER,
42 Tile::MAX_ROS - 1, Tile::MAX_DRAWER,
46 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
49 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
60 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
65 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
70 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
75 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
80 Tile::MAX_ROS - 1, Tile::MAX_DRAWER);
83 return StatusCode::SUCCESS;
◆ inputHandles()
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.
◆ isClonable()
◆ isHeaderFormatError()
bool TileCalibMonitorAlgorithm::isHeaderFormatError |
( |
uint32_t |
header | ) |
const |
|
inlineprotectedinherited |
◆ isHeaderParityError()
bool TileCalibMonitorAlgorithm::isHeaderParityError |
( |
uint32_t |
header | ) |
const |
|
inlineprotectedinherited |
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
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.
◆ parseList()
StatusCode AthMonitorAlgorithm::parseList |
( |
const std::string & |
line, |
|
|
std::vector< std::string > & |
result |
|
) |
| const |
|
virtualinherited |
Parse a string into a vector.
The input string is a single long string of all of the trigger names. It parses this string and turns it into a vector, where each element is one trigger or trigger category.
- Parameters
-
line | The input string. |
result | The parsed output vector of strings. |
- Returns
- StatusCode
Definition at line 341 of file AthMonitorAlgorithm.cxx.
343 std::stringstream
ss(
line);
347 while ( std::getline(
ss,
item,
',') ) {
348 std::stringstream iss(
item);
353 return StatusCode::SUCCESS;
◆ renounce()
◆ renounceArray()
◆ setFilterPassed()
◆ sysExecute()
Execute an algorithm.
We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.
Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.
◆ sysInitialize()
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< Gaudi::Algorithm > >.
Reimplemented in InputMakerBase, and HypoBase.
Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.
110 if (
sc.isFailure()) {
118 if ( cs.retrieve().isFailure() ) {
120 return StatusCode::SUCCESS;
122 if (cs->regHandle(
this,*
h).isFailure()) {
123 sc = StatusCode::FAILURE;
124 ATH_MSG_ERROR(
"unable to register WriteCondHandle " <<
h->fullKey()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ TileCalibMonitorAlgorithm()
TileCalibMonitorAlgorithm::TileCalibMonitorAlgorithm |
|
inline |
◆ trigChainsArePassed()
bool AthMonitorAlgorithm::trigChainsArePassed |
( |
const std::vector< std::string > & |
vTrigNames | ) |
const |
|
inherited |
Check whether triggers are passed.
For the event, use the trigger decision tool to check that at least one of the triggers listed in the supplied vector is passed.
- Parameters
-
vTrigNames | List of trigger names. |
- Returns
- If empty input, default to true. If at least one trigger is specified, returns whether at least one trigger was passed.
Definition at line 199 of file AthMonitorAlgorithm.cxx.
203 if (vTrigNames.empty())
return true;
215 bool expressPass = passedBits & TrigDefs::Express_passed;
222 return group->isPassed();
◆ updateVHKA()
◆ AtlasVersion
TileDigitsMonitorAlgorithm.AtlasVersion |
◆ cfg
TileDigitsMonitorAlgorithm.cfg |
◆ enableLumiAccess
TileDigitsMonitorAlgorithm.enableLumiAccess |
◆ False
TileDigitsMonitorAlgorithm.False |
◆ Files
TileDigitsMonitorAlgorithm.Files |
◆ fillPedestalDifference
TileDigitsMonitorAlgorithm.fillPedestalDifference |
◆ flags
TileDigitsMonitorAlgorithm.flags |
◆ GlobalTag
TileDigitsMonitorAlgorithm.GlobalTag |
◆ HISTFileName
TileDigitsMonitorAlgorithm.HISTFileName |
◆ m_ADCmaxMinusEpsilon
float TileDigitsMonitorAlgorithm::m_ADCmaxMinusEpsilon |
|
private |
◆ m_bcidErrGroups
std::vector<std::vector<std::vector<int> > > TileDigitsMonitorAlgorithm::m_bcidErrGroups |
|
private |
◆ m_bcidGroups
std::vector<std::vector<std::vector<int> > > TileDigitsMonitorAlgorithm::m_bcidGroups |
|
private |
◆ m_cabling
◆ m_cablingSvc
Initial value:{ this,
"TileCablingSvc", "TileCablingSvc", "The Tile cabling service"}
Name of Tile cabling service.
Definition at line 93 of file TileCalibMonitorAlgorithm.h.
◆ m_crcErrGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_crcErrGroups |
|
private |
◆ m_crcGlobalGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_crcGlobalGroups |
|
private |
◆ m_dataType
◆ m_dataTypeStr
Gaudi::Property<std::string> AthMonitorAlgorithm::m_dataTypeStr {this,"DataType","userDefined"} |
|
protectedinherited |
◆ m_defaultLBDuration
Gaudi::Property<float> AthMonitorAlgorithm::m_defaultLBDuration {this,"DefaultLBDuration",60.} |
|
protectedinherited |
◆ m_detailLevel
Gaudi::Property<int> AthMonitorAlgorithm::m_detailLevel {this,"DetailLevel",0} |
|
protectedinherited |
◆ m_detStore
◆ m_digitsContainerKey
Initial value:{this,
"TileDigitsContainer", "TileDigitsCnt", "Input Tile digits container key"}
Definition at line 69 of file TileDigitsMonitorAlgorithm.h.
◆ m_DQFilterTools
ToolHandleArray<IDQFilterTool> AthMonitorAlgorithm::m_DQFilterTools {this,"FilterTools",{}} |
|
protectedinherited |
◆ m_dqStatusKey
◆ m_dummy
◆ m_enforceExpressTriggers
Gaudi::Property<bool> AthMonitorAlgorithm::m_enforceExpressTriggers |
|
privateinherited |
Initial value:{this,
"EnforceExpressTriggers", false,
"Requires that matched triggers made the event enter the express stream"}
Definition at line 372 of file AthMonitorAlgorithm.h.
◆ m_environment
◆ m_environmentStr
Gaudi::Property<std::string> AthMonitorAlgorithm::m_environmentStr {this,"Environment","user"} |
|
protectedinherited |
Environment string pulled from the job option and converted to enum.
Definition at line 352 of file AthMonitorAlgorithm.h.
◆ m_errorsGroups
std::vector<std::vector<std::vector<int> > > TileDigitsMonitorAlgorithm::m_errorsGroups |
|
private |
◆ m_EventInfoKey
◆ m_evtMod32Groups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_evtMod32Groups |
|
private |
◆ m_evtStore
◆ m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Empty if no symlinks were found.
Definition at line 114 of file AthCommonReentrantAlgorithm.h.
◆ m_fileKey
Gaudi::Property<std::string> AthMonitorAlgorithm::m_fileKey {this,"FileKey",""} |
|
protectedinherited |
◆ m_fillCorrelationsHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillCorrelationsHistograms |
|
private |
Initial value:{this,
"fillCorrelationsHistograms", true, "Fill histograms which are used to produce correlation and corvariance plots"}
Definition at line 66 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillErrorsHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillErrorsHistograms |
|
private |
Initial value:{this,
"fillErrorsHistograms", true, "Fill histograms per channel/gain with DMU, CRC, BCID errors"}
Definition at line 48 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillEventModule32Histograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillEventModule32Histograms |
|
private |
Initial value:{this,
"fillEventModule32Histograms", true, "Fill histograms per channel/gain with event number % 32"}
Definition at line 63 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillHighFrequencyNoiseHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillHighFrequencyNoiseHistograms |
|
private |
Initial value:{this,
"fillHighFrequencyNoiseHistograms", true, "Fill histograms per channel/gain with HFN"}
Definition at line 54 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillPedestalDifference
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillPedestalDifference |
|
private |
Initial value:{this,
"fillPedestalDifference", true, "Fill pedestal difference between monitored pedestal and one from DB"}
Definition at line 45 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillPedestalHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillPedestalHistograms |
|
private |
Initial value:{this,
"fillPedestalHistograms", true, "Fill histograms per channel/gain with pedestals"}
Definition at line 51 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillProfileHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillProfileHistograms |
|
private |
Initial value:{this,
"fillProfileHistograms", true, "Fill histograms per channel/gain with profile"}
Definition at line 60 of file TileDigitsMonitorAlgorithm.h.
◆ m_fillSamplesHistograms
Gaudi::Property<bool> TileDigitsMonitorAlgorithm::m_fillSamplesHistograms |
|
private |
Initial value:{this,
"fillSamplesHistograms", true, "Fill histograms per channel/gain with samples"}
Definition at line 57 of file TileDigitsMonitorAlgorithm.h.
◆ m_fragIDsDemonstrators
Gaudi::Property<std::vector<int> > TileCalibMonitorAlgorithm::m_fragIDsDemonstrators |
|
protectedinherited |
Initial value:{this,
"FragIDsDemonstrators", {}, "List of Tile frag IDs of Demonstrators"}
Definition at line 81 of file TileCalibMonitorAlgorithm.h.
◆ m_fragIDsToIgnoreDMUerrors
Gaudi::Property<std::vector<int> > TileCalibMonitorAlgorithm::m_fragIDsToIgnoreDMUerrors |
|
protectedinherited |
Initial value:{this,
"FragIDsToIgnoreDMUErrors", {}, "List of Tile frag IDs for which ignore DMU errors"}
Definition at line 78 of file TileCalibMonitorAlgorithm.h.
◆ m_hfnGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_hfnGroups |
|
private |
◆ m_is12bit
bool TileDigitsMonitorAlgorithm::m_is12bit {false} |
|
private |
◆ m_lbDurationDataKey
◆ m_lumiDataKey
◆ m_meanSampleGroups
std::vector<int> TileDigitsMonitorAlgorithm::m_meanSampleGroups |
|
private |
◆ m_meanSampleProdGroups
std::vector<int> TileDigitsMonitorAlgorithm::m_meanSampleProdGroups |
|
private |
◆ m_name
std::string AthMonitorAlgorithm::m_name |
|
privateinherited |
◆ m_pedGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_pedGroups |
|
private |
◆ m_profGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_profGroups |
|
private |
◆ m_rawChannelContainerKey
Initial value:{this,
"TileRawChannelContainer", "", "Input Tile raw channel container key"}
Definition at line 72 of file TileDigitsMonitorAlgorithm.h.
◆ m_runType
Gaudi::Property<int> TileCalibMonitorAlgorithm::m_runType |
|
protectedinherited |
Initial value:{this,
"RunType", 0, "Run type: 1 - phys, 2 - las, 4 - ped, 8 - cis, 9- mono"}
Definition at line 84 of file TileCalibMonitorAlgorithm.h.
◆ m_samplesGroups
std::vector<std::vector<int> > TileDigitsMonitorAlgorithm::m_samplesGroups |
|
private |
◆ m_tileCondToolNoiseSample
Initial value:{this,
"TileCondToolNoiseSample", "TileCondToolNoiseSample", "Tile sample noise tool"}
Definition at line 75 of file TileDigitsMonitorAlgorithm.h.
◆ m_tileHWID
◆ m_tileInfo
◆ m_tileInfoName
Gaudi::Property<std::string> TileCalibMonitorAlgorithm::m_tileInfoName |
|
protectedinherited |
Initial value:{this,
"TileInfo", "TileInfo", "Name of TileInfo object in Detector Store"}
Definition at line 75 of file TileCalibMonitorAlgorithm.h.
◆ m_toolLookupMap
std::unordered_map<std::string, size_t> AthMonitorAlgorithm::m_toolLookupMap |
|
privateinherited |
◆ m_tools
◆ m_trigDecTool
◆ m_triggerChainString
Gaudi::Property<std::string> AthMonitorAlgorithm::m_triggerChainString {this,"TriggerChain",""} |
|
protectedinherited |
Trigger chain string pulled from the job option and parsed into a vector.
Definition at line 355 of file AthMonitorAlgorithm.h.
◆ m_trigLiveFractionDataKey
◆ m_useLumi
Gaudi::Property<bool> AthMonitorAlgorithm::m_useLumi {this,"EnableLumi",false} |
|
protectedinherited |
◆ m_varHandleArraysDeclared
◆ m_vhka
◆ m_vTrigChainNames
std::vector<std::string> AthMonitorAlgorithm::m_vTrigChainNames |
|
protectedinherited |
◆ MAX_DMU
const int TileDigitsMonitorAlgorithm::MAX_DMU {16} |
|
staticprivate |
◆ MaxEvents
TileDigitsMonitorAlgorithm.MaxEvents |
◆ name
TileDigitsMonitorAlgorithm.name |
◆ readBeamElem
TileDigitsMonitorAlgorithm.readBeamElem |
◆ readMuRcv
TileDigitsMonitorAlgorithm.readMuRcv |
◆ sc
TileDigitsMonitorAlgorithm.sc |
◆ summariseProps
TileDigitsMonitorAlgorithm.summariseProps |
◆ True
TileDigitsMonitorAlgorithm.True |
◆ useTrigger
TileDigitsMonitorAlgorithm.useTrigger |
◆ withDetails
TileDigitsMonitorAlgorithm.withDetails |
The documentation for this class was generated from the following files:
Gaudi::Property< bool > m_fillCorrelationsHistograms
ToolHandle< TileCondToolNoiseSample > m_tileCondToolNoiseSample
const TileInfo * m_tileInfo
float m_ADCmaxMinusEpsilon
PublicToolHandle< Trig::TrigDecisionTool > m_trigDecTool
Tool to tell whether a specific trigger is passed.
Gaudi::Property< bool > m_fillEventModule32Histograms
bool isHeaderFormatError(uint32_t header) const
Gaudi::Property< int > m_runType
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
uint32_t calibMode() const
Calibration mode.
std::vector< std::string > m_vTrigChainNames
Vector of trigger chain names parsed from trigger chain string.
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)
SG::ReadHandleKey< xAOD::EventInfo > m_EventInfoKey
Key for retrieving EventInfo from StoreGate.
Gaudi::Property< bool > m_fillHighFrequencyNoiseHistograms
bool isHeaderParityError(uint32_t header) const
std::vector< std::vector< int > > m_samplesGroups
Gaudi::Property< bool > m_fillPedestalDifference
std::vector< int > m_meanSampleGroups
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
std::unordered_map< std::string, size_t > m_toolLookupMap
int frag(const HWIdentifier &id) const
extract frag field from HW identifier
AthMonitorAlgorithm::Environment_t m_environment
Instance of the Environment_t enum.
std::vector< std::vector< int > > m_crcErrGroups
const TileHWID * m_tileHWID
Gaudi::Property< bool > m_fillPedestalHistograms
void checkCRC(bool isCalibMode, uint32_t crc32, uint32_t crcMask, int nDMU, int ros, int drawer) const
bool empty() const
Test if the key is blank.
HWIdentifier adc_HWID(void) const
bool trigChainsArePassed(const std::vector< std::string > &vTrigNames) const
Check whether triggers are passed.
int channel(const HWIdentifier &id) const
extract channel field from HW identifier
def timer(name, disabled=False)
std::vector< std::vector< std::vector< int > > > m_bcidGroups
std::vector< std::vector< int > > m_hfnGroups
SG::ReadHandleKey< TileDigitsContainer > m_digitsContainerKey
ValuesCollection< T > Collection(std::string name, const T &collection)
Declare a monitored (double-convertible) collection.
virtual void setOwner(IDataHandleHolder *o)=0
const ToolHandle< GenericMonitoringTool > m_dummy
An algorithm that can be simultaneously executed in multiple threads.
int ros(const HWIdentifier &id) const
extract ros field from HW identifier
Gaudi::Property< bool > m_fillProfileHistograms
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
std::vector< std::vector< std::vector< int > > > m_errorsGroups
bool checkCorruptedData(const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> &headerWordsAll, uint32_t fragStatus, int ros, int drawer, std::vector< std::vector< bool >> &corruptedData) const
virtual const DataObjIDColl & extraOutputDeps() const override
Return the list of extra output dependencies.
Class that holds Data Quality fragment information and provides functions to extract the data quality...
int adc(const HWIdentifier &id) const
extract adc field from HW identifier
ToolHandleArray< IDQFilterTool > m_DQFilterTools
Array of Data Quality filter tools.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
Generic monitoring tool for athena components.
std::vector< std::vector< int > > m_pedGroups
::StatusCode StatusCode
StatusCode definition for legacy code.
SG::ReadHandleKey< TileRawChannelContainer > m_rawChannelContainerKey
void tolower(std::string &s)
virtual StatusCode fillHistograms(const EventContext &ctx) const =0
adds event to the monitoring histograms
virtual StatusCode sysExecute(const EventContext &ctx) override
Execute an algorithm.
Amg::Vector3D transform(Amg::Vector3D &v, Amg::Transform3D &tr)
Transform a point from a Trasformation3D.
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
void fill(const ToolHandle< GenericMonitoringTool > &groupHandle, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &&variables) const
Fills a vector of variables to a group by reference.
AthConfigFlags cosmics(AthConfigFlags flags, str instanceName, str recoMode)
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
const std::vector< float > & samples() const
Gaudi::Property< std::vector< int > > m_fragIDsToIgnoreDMUerrors
AthMonitorAlgorithm::DataType_t m_dataType
Instance of the DataType_t enum.
std::vector< int > m_meanSampleProdGroups
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
virtual StatusCode initialize() override
initialize
ToolHandleArray< GenericMonitoringTool > m_tools
Array of Generic Monitoring Tools.
SG::ReadHandleKey< TileDQstatus > m_dqStatusKey
std::string to_string(const DetectorType &type)
StatusCode checkROD_CRC(const TileDQstatus *dqStatus, const EventContext &ctx) const
void checkBCID(const std::vector< std::reference_wrapper< const std::vector< uint32_t >>> &headerWordsAll, uint32_t rodBCID, int ros, int drawer) const
double charge(const T &p)
Gaudi::Property< bool > m_enforceExpressTriggers
const uint32_t * cispar() const
CIS parameters.
std::vector< std::vector< int > > m_crcGlobalGroups
accumulate
Update flags based on parser line args.
bool empty() const noexcept
std::vector< std::vector< int > > m_profGroups
int drawer(const HWIdentifier &id) const
extract drawer field from HW identifier
#define ATH_MSG_WARNING(x)
AthMonitorAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
virtual StatusCode sysInitialize() override
Override sysInitialize.
std::vector< std::vector< std::vector< int > > > m_bcidErrGroups
std::vector< std::vector< int > > m_evtMod32Groups
static unsigned int getDrawerIdx(unsigned int ros, unsigned int drawer)
Returns a drawer hash.
Declare a monitored scalar variable.
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
Gaudi::Property< bool > m_fillSamplesHistograms
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
int ADCmax() const
Returns the maximum ADC output (10 bits --> 1023)
Gaudi::Property< bool > m_fillErrorsHistograms