 |
ATLAS Offline Software
|
#include <CaloBaselineMonAlg.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...
|
| |
|
| | CaloBaselineMonAlg (const std::string &name, ISvcLocator *pSvcLocator) |
| |
| virtual | ~CaloBaselineMonAlg () |
| |
| virtual StatusCode | initialize () override final |
| | initialize More...
|
| |
| virtual StatusCode | fillHistograms (const EventContext &ctx) const override final |
| | adds event to the monitoring histograms More...
|
| |
| StatusCode | checkFilters (bool &ifPass, bool &passBeamBackgroundRemoval, const std::string &MonGroupName, const EventContext &ctx) const |
| |
| 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, V, H > &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 |
| |
|
| enum | LayerEnum {
EMBPA =0,
EMBPC,
EMB1A,
EMB1C,
EMB2A,
EMB2C,
EMB3A,
EMB3C,
HEC0A,
HEC0C,
HEC1A,
HEC1C,
HEC2A,
HEC2C,
HEC3A,
HEC3C,
EMECPA,
EMECPC,
EMEC1A,
EMEC1C,
EMEC2A,
EMEC2C,
EMEC3A,
EMEC3C,
FCAL1A,
FCAL1C,
FCAL2A,
FCAL2C,
FCAL3A,
FCAL3C,
MAXLAYER
} |
| |
| enum | LayerEnumNoSides {
EMBPNS =0,
EMB1NS,
EMB2NS,
EMB3NS,
HEC0NS,
HEC1NS,
HEC2NS,
HEC3NS,
EMECPNS,
EMEC1NS,
EMEC2NS,
EMEC3NS,
FCAL1NS,
FCAL2NS,
FCAL3NS,
MAXLYRNS
} |
| |
|
| const CaloCell_ID * | m_calo_id {nullptr} |
| |
| const std::map< unsigned, LayerEnumNoSides > | m_caloSamplingToLyrNS |
| |
| ToolHandleArray< GenericMonitoringTool > | m_tools {this,"GMTools",{}} |
| | Array of Generic Monitoring Tools. More...
|
| |
| PublicToolHandle< Trig::TrigDecisionTool > | m_trigDecTool |
| | 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...
|
| |
|
| StatusCode | retrieveTools () |
| |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &) |
| | specialization for handling Gaudi::Property<SG::VarHandleKey> More...
|
| |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyArrayType &) |
| | specialization for handling Gaudi::Property<SG::VarHandleKeyArray> More...
|
| |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleType &) |
| | specialization for handling Gaudi::Property<SG::VarHandleBase> More...
|
| |
| Gaudi::Details::PropertyBase & | declareGaudiProperty (Gaudi::Property< T, V, H > &t, const SG::NotHandleType &) |
| | specialization for handling everything that's not a Gaudi::Property<SG::VarHandleKey> or a <SG::VarHandleKeyArray> More...
|
| |
|
| SG::ReadHandleKey< CaloCellContainer > | m_cellContainerKey {this,"CellContainer","AllCalo","Input CaloCellContainer key"} |
| |
| SG::ReadCondHandleKey< BunchCrossingCondData > | m_bcDataKey {this, "BunchCrossingCondDataKey", "BunchCrossingData" ,"SG Key of BunchCrossing CDO"} |
| |
| Gaudi::Property< std::string > | m_MonGroupName {this, "MonGroupName", "CaloBaselineGroup"} |
| |
| const float | m_BCID0_min = 0. |
| |
| const float | m_BCID0_max = 3563. |
| |
| const int | m_BCID0_nbins = 3563 |
| |
| Gaudi::Property< int > | m_pedestalMon_BCIDmin {this, "pedestalMon_BCIDmin", 25} |
| |
| Gaudi::Property< int > | m_bcidtoolMon_BCIDmax {this, "bcidtoolMon_BCIDmax", 144} |
| |
| Gaudi::Property< std::vector< float > > | m_etaMax {this, "maximumEta", {}} |
| |
| Gaudi::Property< std::vector< float > > | m_etaMin {this, "minimumEta", {}} |
| |
| Gaudi::Property< std::vector< uint > > | m_nbOfEtaBins {this, "nbOfEtaBins", {}} |
| |
| Gaudi::Property< std::vector< std::string > > | m_partNames {this, "partionList", {}} |
| |
| std::vector< float > | m_etaBinWidth |
| |
| std::vector< float > | m_inv_etaBinWidth |
| |
| bool | m_bool_pedestalMon |
| |
| bool | m_bool_bcidtoolMon |
| |
| std::vector< std::vector< int > > | m_histoGroups |
| |
| std::vector< int > | m_partMap |
| |
| SG::ReadHandleKey< LArCollisionTime > | m_LArCollisionTimeKey {this,"LArCollisionTimeKey","LArCollisionTime"} |
| |
| SG::ReadHandleKey< BeamBackgroundData > | m_beamBackgroundKey {this,"BeamBackgroundKey","CSCBackgroundForCaloMon"} |
| |
| bool | m_useBadLBTool |
| |
| ToolHandle< IDQFilterTool > | m_BadLBTool {this, "DQBadLBFilterTool","DQBadLBFilterTool"} |
| |
| bool | m_useReadyFilterTool |
| |
| ToolHandle< IDQFilterTool > | m_ReadyFilterTool {this, "DQAtlasReadyFilterTool", "DQAtlasReadyFilterTool"} |
| |
| bool | m_useLArNoisyAlg |
| |
| bool | m_useCollisionFilterTool |
| |
| bool | m_useBeamBackgroundRemoval |
| |
| std::string | m_name |
| |
| std::unordered_map< std::string, size_t > | m_toolLookupMap |
| |
| const ToolHandle< GenericMonitoringTool > | m_dummy |
| |
| Gaudi::Property< bool > | m_enforceExpressTriggers |
| |
| DataObjIDColl | m_extendedExtraObjects |
| | Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks. More...
|
| |
| StoreGateSvc_t | m_evtStore |
| | Pointer to StoreGate (event store by default) More...
|
| |
| StoreGateSvc_t | m_detStore |
| | Pointer to StoreGate (detector store by default) More...
|
| |
| std::vector< SG::VarHandleKeyArray * > | m_vhka |
| |
| bool | m_varHandleArraysDeclared |
| |
Definition at line 24 of file CaloBaselineMonAlg.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 194 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 175 of file AthMonitorAlgorithm.h.
◆ LayerEnum
| Enumerator |
|---|
| EMBPA | |
| EMBPC | |
| EMB1A | |
| EMB1C | |
| EMB2A | |
| EMB2C | |
| EMB3A | |
| EMB3C | |
| HEC0A | |
| HEC0C | |
| HEC1A | |
| HEC1C | |
| HEC2A | |
| HEC2C | |
| HEC3A | |
| HEC3C | |
| EMECPA | |
| EMECPC | |
| EMEC1A | |
| EMEC1C | |
| EMEC2A | |
| EMEC2C | |
| EMEC3A | |
| EMEC3C | |
| FCAL1A | |
| FCAL1C | |
| FCAL2A | |
| FCAL2C | |
| FCAL3A | |
| FCAL3C | |
| MAXLAYER | |
Definition at line 48 of file CaloMonAlgBase.h.
◆ LayerEnumNoSides
| Enumerator |
|---|
| EMBPNS | |
| EMB1NS | |
| EMB2NS | |
| EMB3NS | |
| HEC0NS | |
| HEC1NS | |
| HEC2NS | |
| HEC3NS | |
| EMECPNS | |
| EMEC1NS | |
| EMEC2NS | |
| EMEC3NS | |
| FCAL1NS | |
| FCAL2NS | |
| FCAL3NS | |
| MAXLYRNS | |
Definition at line 54 of file CaloMonAlgBase.h.
◆ CaloBaselineMonAlg()
| CaloBaselineMonAlg::CaloBaselineMonAlg |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ ~CaloBaselineMonAlg()
| virtual CaloBaselineMonAlg::~CaloBaselineMonAlg |
( |
| ) |
|
|
inlinevirtual |
◆ 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.
◆ checkFilters()
| StatusCode CaloMonAlgBase::checkFilters |
( |
bool & |
ifPass, |
|
|
bool & |
passBeamBackgroundRemoval, |
|
|
const std::string & |
MonGroupName, |
|
|
const EventContext & |
ctx |
|
) |
| const |
|
inherited |
Definition at line 59 of file CaloMonAlgBase.cxx.
61 ATH_MSG_DEBUG(
"CaloMonAlgBase:checkFilters() starts "<<MonGroupName);
64 fill(MonGroupName,evtbin);
71 fill(MonGroupName,evtbin);
76 fill(MonGroupName,evtbin);
80 ATH_MSG_DEBUG(
"CaloMonAlgBase::checkFilters() ATLAS Ready done");
87 if(ifPass) {evtbin=3;
fill(MonGroupName,evtbin);}
94 if(ifPass) {evtbin=3;
fill(MonGroupName,evtbin);}
97 ATH_MSG_DEBUG(
"CaloMonAlgBase::checkFilters() BadLBTool done");
103 if(!larTime.isValid()){
105 if(ifPass) {evtbin=4;
fill(MonGroupName,evtbin);}
108 if (larTime->timeC()!=0 && larTime->timeA()!=0 && std::fabs(larTime->timeC() - larTime->timeA())<10) {
112 ifPass = ifPass && 1;
113 if(ifPass) {evtbin=4;
fill(MonGroupName,evtbin);}
118 if(ifPass) {evtbin=4;
fill(MonGroupName,evtbin);}
120 ATH_MSG_DEBUG(
"CaloMonAlgBase::checkFilters() CollisionFilterTool done");
123 passBeamBackgroundRemoval=
true;
126 if(!beamBackgroundData.isValid()){
130 if( beamBackgroundData->GetNumSegment() > 0 ) {
131 passBeamBackgroundRemoval =
false;
136 passBeamBackgroundRemoval =
true;
137 ifPass = ifPass && 1;
138 if(ifPass){evtbin=5;
fill(MonGroupName,evtbin);}
143 ifPass = ifPass && 1;
144 if(ifPass) {evtbin=5;
fill(MonGroupName,evtbin);}
147 ATH_MSG_DEBUG(
"CaloMonAlgBase::checkFilters() m_useBeamBackgroundRemoval done");
149 std::string TheTrigger;
151 TheTrigger=
"NoTrigSel";
152 ifPass = ifPass && 1;
153 if(ifPass) {evtbin=6;
fill(MonGroupName,evtbin);}
157 if(ifPass) {evtbin=6;
fill(MonGroupName,evtbin);}
164 ifPass = ifPass && 1;
165 if(ifPass) {evtbin=7;
fill(MonGroupName,evtbin);}
169 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 224 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 144 of file AthMonitorAlgorithm.cxx.
146 std::string lowerCaseStr =
str;
150 if( lowerCaseStr ==
"userdefined" ) {
152 }
else if( lowerCaseStr ==
"montecarlo" ) {
154 }
else if( lowerCaseStr ==
"collisions" ) {
156 }
else if( lowerCaseStr ==
"cosmics" ) {
158 }
else if( lowerCaseStr ==
"heavyioncollisions" ) {
161 ATH_MSG_WARNING(
"AthMonitorAlgorithm::dataTypeStringToEnum(): Unknown data type "
162 <<
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 208 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 116 of file AthMonitorAlgorithm.cxx.
118 std::string lowerCaseStr =
str;
122 if( lowerCaseStr ==
"user" ) {
124 }
else if( lowerCaseStr ==
"online" ) {
126 }
else if( lowerCaseStr ==
"tier0" ) {
128 }
else if( lowerCaseStr ==
"tier0raw" ) {
130 }
else if( lowerCaseStr ==
"tier0esd" ) {
132 }
else if( lowerCaseStr ==
"aod" ) {
134 }
else if( lowerCaseStr ==
"altprod" ) {
137 ATH_MSG_WARNING(
"AthMonitorAlgorithm::envStringToEnum(): Unknown environment "
138 <<
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 77 of file AthMonitorAlgorithm.cxx.
82 if (!filterItr->accept()) {
84 return StatusCode::SUCCESS;
91 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 CaloBaselineMonAlg::fillHistograms |
( |
const EventContext & |
ctx | ) |
const |
|
finaloverridevirtual |
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 AthMonitorAlgorithm.
Definition at line 74 of file CaloBaselineMonAlg.cxx.
79 bool passBeamBackgroundRemoval = 0;
81 if(
sc.isFailure() || !ifPass)
return StatusCode::SUCCESS;
85 int lumiBlock = ctx.eventID().lumi_block();
86 int bcid = ctx.eventID().bunch_crossing_id();
88 bool thisEvent_bool_pedestalMon =
false;
89 bool thisEvent_bool_bcidtoolMon =
false;
94 ATH_MSG_WARNING(
"Failed to retrieve Bunch Crossing data, no monitoring in this event");
95 return StatusCode::SUCCESS;
101 if(!bunchCrossing->
isInTrain(
bcid)) thisEvent_bool_pedestalMon =
true;
110 ATH_MSG_DEBUG(thisEvent_bool_pedestalMon<<
" "<<thisEvent_bool_bcidtoolMon);
112 if (not (thisEvent_bool_pedestalMon or thisEvent_bool_bcidtoolMon))
return sc;
116 if(!cellCont.isValid() ) {
122 std::vector<std::vector<float>> sum_partition_eta;
130 sum_partition_eta[iPart][
iEta] = 0.;
137 for ( ;
it!=it_e;++
it) {
143 double eta =
cell->caloDDE()->eta_raw();
145 int partThisAlgo = 0;
161 if (thisEvent_bool_pedestalMon ) {
177 if (thisEvent_bool_bcidtoolMon ) {
◆ 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 111 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 168 of file AthMonitorAlgorithm.cxx.
180 if (!isInitialized()) {
182 "It seems that the AthMonitorAlgorithm::initialize was not called "
183 "in derived class initialize method");
187 [](
const std::string&
s,
auto h) { return s +
"," + h.first; });
188 ATH_MSG_FATAL(
"The tool " <<
name <<
" could not be found in the tool array of the "
189 <<
"monitoring algorithm " <<
m_name <<
". This probably reflects a discrepancy between "
190 <<
"your python configuration and c++ filling code. Note: your available groups are {"
191 << available <<
"}.");
◆ getHistoCoordinates()
| void CaloMonAlgBase::getHistoCoordinates |
( |
const CaloDetDescrElement * |
dde, |
|
|
float & |
celleta, |
|
|
float & |
cellphi, |
|
|
unsigned & |
iLyr, |
|
|
unsigned & |
iLyrNS |
|
) |
| const |
|
protectedinherited |
◆ 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 198 of file AthMonitorAlgorithm.cxx.
◆ initialize()
| StatusCode CaloBaselineMonAlg::initialize |
( |
| ) |
|
|
finaloverridevirtual |
◆ 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()
◆ 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 345 of file AthMonitorAlgorithm.cxx.
347 std::stringstream
ss(
line);
351 while ( std::getline(
ss,
item,
',') ) {
352 std::stringstream iss(
item);
357 return StatusCode::SUCCESS;
◆ renounce()
◆ renounceArray()
◆ retrieveTools()
| StatusCode CaloBaselineMonAlg::retrieveTools |
( |
| ) |
|
|
private |
◆ 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.
◆ 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 203 of file AthMonitorAlgorithm.cxx.
207 if (vTrigNames.empty())
return true;
219 bool expressPass = passedBits & TrigDefs::Express_passed;
226 return group->isPassed();
◆ updateVHKA()
◆ cfg
| CaloBaselineMonAlg.cfg = MainServicesCfg(flags) |
◆ doPileupOffsetBCIDCorr
| CaloBaselineMonAlg.doPileupOffsetBCIDCorr |
◆ enableLumiAccess
| CaloBaselineMonAlg.enableLumiAccess |
◆ Files
◆ flags
| CaloBaselineMonAlg.flags = initConfigFlags() |
◆ HISTFileName
| CaloBaselineMonAlg.HISTFileName |
◆ m_BadLBTool
◆ m_bcDataKey
◆ m_BCID0_max
| const float CaloBaselineMonAlg::m_BCID0_max = 3563. |
|
private |
◆ m_BCID0_min
| const float CaloBaselineMonAlg::m_BCID0_min = 0. |
|
private |
◆ m_BCID0_nbins
| const int CaloBaselineMonAlg::m_BCID0_nbins = 3563 |
|
private |
◆ m_bcidtoolMon_BCIDmax
| Gaudi::Property<int> CaloBaselineMonAlg::m_bcidtoolMon_BCIDmax {this, "bcidtoolMon_BCIDmax", 144} |
|
private |
◆ m_beamBackgroundKey
◆ m_bool_bcidtoolMon
| bool CaloBaselineMonAlg::m_bool_bcidtoolMon |
|
private |
◆ m_bool_pedestalMon
| bool CaloBaselineMonAlg::m_bool_pedestalMon |
|
private |
◆ m_calo_id
◆ m_caloSamplingToLyrNS
◆ m_cellContainerKey
◆ 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_DQFilterTools
| ToolHandleArray<IDQFilterTool> AthMonitorAlgorithm::m_DQFilterTools {this,"FilterTools",{}} |
|
protectedinherited |
◆ 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 377 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 357 of file AthMonitorAlgorithm.h.
◆ m_etaBinWidth
| std::vector<float> CaloBaselineMonAlg::m_etaBinWidth |
|
private |
◆ m_etaMax
| Gaudi::Property<std::vector<float> > CaloBaselineMonAlg::m_etaMax {this, "maximumEta", {}} |
|
private |
◆ m_etaMin
| Gaudi::Property<std::vector<float> > CaloBaselineMonAlg::m_etaMin {this, "minimumEta", {}} |
|
private |
◆ m_EventInfoKey
◆ 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_histoGroups
| std::vector<std::vector<int> > CaloBaselineMonAlg::m_histoGroups |
|
private |
◆ m_inv_etaBinWidth
| std::vector<float> CaloBaselineMonAlg::m_inv_etaBinWidth |
|
private |
◆ m_LArCollisionTimeKey
◆ m_lbDurationDataKey
◆ m_lumiDataKey
◆ m_MonGroupName
| Gaudi::Property<std::string> CaloBaselineMonAlg::m_MonGroupName {this, "MonGroupName", "CaloBaselineGroup"} |
|
private |
◆ m_name
| std::string AthMonitorAlgorithm::m_name |
|
privateinherited |
◆ m_nbOfEtaBins
| Gaudi::Property<std::vector<uint> > CaloBaselineMonAlg::m_nbOfEtaBins {this, "nbOfEtaBins", {}} |
|
private |
◆ m_partMap
| std::vector<int> CaloBaselineMonAlg::m_partMap |
|
private |
◆ m_partNames
| Gaudi::Property<std::vector<std::string> > CaloBaselineMonAlg::m_partNames {this, "partionList", {}} |
|
private |
◆ m_pedestalMon_BCIDmin
| Gaudi::Property<int> CaloBaselineMonAlg::m_pedestalMon_BCIDmin {this, "pedestalMon_BCIDmin", 25} |
|
private |
◆ m_ReadyFilterTool
◆ 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 360 of file AthMonitorAlgorithm.h.
◆ m_trigLiveFractionDataKey
◆ m_useBadLBTool
| bool CaloMonAlgBase::m_useBadLBTool |
|
privateinherited |
◆ m_useBeamBackgroundRemoval
| bool CaloMonAlgBase::m_useBeamBackgroundRemoval |
|
privateinherited |
◆ m_useCollisionFilterTool
| bool CaloMonAlgBase::m_useCollisionFilterTool |
|
privateinherited |
◆ m_useLArNoisyAlg
| bool CaloMonAlgBase::m_useLArNoisyAlg |
|
privateinherited |
◆ m_useLumi
| Gaudi::Property<bool> AthMonitorAlgorithm::m_useLumi {this,"EnableLumi",false} |
|
protectedinherited |
◆ m_useReadyFilterTool
| bool CaloMonAlgBase::m_useReadyFilterTool |
|
privateinherited |
◆ m_varHandleArraysDeclared
◆ m_vhka
◆ m_vTrigChainNames
| std::vector<std::string> AthMonitorAlgorithm::m_vTrigChainNames |
|
protectedinherited |
◆ OutputLevel
| CaloBaselineMonAlg.OutputLevel |
◆ useTrigger
| CaloBaselineMonAlg.useTrigger |
The documentation for this class was generated from the following files:
def retrieve(aClass, aKey=None)
StatusCode checkFilters(bool &ifPass, bool &passBeamBackgroundRemoval, const std::string &MonGroupName, const EventContext &ctx) const
bool is_lar_em_endcap_inner() const
cell belongs to the inner wheel of EM end cap
Const iterator class for DataVector/DataList.
int region(const Identifier id) const
LAr field values (NOT_VALID == invalid request)
PublicToolHandle< Trig::TrigDecisionTool > m_trigDecTool
Tool to tell whether a specific trigger is passed.
SG::ReadHandleKey< LArCollisionTime > m_LArCollisionTimeKey
std::vector< std::vector< int > > m_histoGroups
SG::ReadCondHandleKey< BunchCrossingCondData > m_bcDataKey
Gaudi::Property< std::vector< float > > m_etaMax
Scalar eta() const
pseudorapidity method
accumulate
Update flags based on parser line args.
Gaudi::Property< std::string > m_triggerChainString
Trigger chain string pulled from the job option and parsed into a vector.
std::vector< std::string > m_vTrigChainNames
Vector of trigger chain names parsed from trigger chain string.
bool m_useCollisionFilterTool
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.
bool m_useBeamBackgroundRemoval
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
AthMonitorAlgorithm::Environment_t m_environment
Instance of the Environment_t enum.
virtual StatusCode initialize()
initialize
@ LAr
The LAr calorimeter.
const std::map< unsigned, LayerEnumNoSides > m_caloSamplingToLyrNS
bool is_hec(const Identifier id) const
test if the id belongs to the HEC
bool trigChainsArePassed(const std::vector< std::string > &vTrigNames) const
Check whether triggers are passed.
float eta_raw() const
cell eta_raw
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual void setOwner(IDataHandleHolder *o)=0
const ToolHandle< GenericMonitoringTool > m_dummy
@ Error
The sub-detector issued an error.
std::vector< float > m_inv_etaBinWidth
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
virtual const DataObjIDColl & extraOutputDeps() const override
Return the list of extra output dependencies.
Identifier identify() const override final
cell identifier
bool is_em(const Identifier id) const
test if the id belongs to LArEM
setSAddress setEtaMS setDirPhiMS setDirZMS setBarrelRadius setEndcapAlpha setEndcapRadius setInterceptInner setEtaMap etaBin
ToolHandleArray< IDQFilterTool > m_DQFilterTools
Array of Data Quality filter tools.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
Gaudi::Property< std::vector< uint > > m_nbOfEtaBins
CaloMonAlgBase(const std::string &name, ISvcLocator *pSvcLocator)
Gaudi::Property< int > m_bcidtoolMon_BCIDmax
bool is_fcal(const Identifier id) const
test if the id belongs to the FCAL - true also for MiniFCAL
::StatusCode StatusCode
StatusCode definition for legacy code.
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
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.
@ BunchCrossings
Distance in units of 25 nanoseconds.
Gaudi::Property< std::vector< std::string > > m_partNames
const CaloCell_ID * m_calo_id
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)
ToolHandle< IDQFilterTool > m_BadLBTool
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
SG::ReadHandle< xAOD::EventInfo > GetEventInfo(const EventContext &) const
Return a ReadHandle for an EventInfo object (get run/event numbers, etc.)
AthMonitorAlgorithm::DataType_t m_dataType
Instance of the DataType_t enum.
int distanceFromFront(const bcid_type bcid, const BunchDistanceType type=NanoSec) const
The distance of the specific bunch crossing from the front of the train.
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
ToolHandleArray< GenericMonitoringTool > m_tools
Array of Generic Monitoring Tools.
std::vector< float > m_etaBinWidth
Gaudi::Property< bool > m_enforceExpressTriggers
StatusCode initialize(bool used=true)
setEventNumber setTimeStamp bcid
virtual float lbAverageInteractionsPerCrossing(const EventContext &ctx=Gaudi::Hive::currentContext()) const
Calculate the average mu, i.e.
bool isInTrain(const bcid_type bcid) const
Function deciding if a given bunch crossing is in a filled train.
SG::ReadHandleKey< CaloCellContainer > m_cellContainerKey
Data object for each calorimeter readout cell.
CaloCell_ID::CaloSample getSampling() const
cell sampling
Gaudi::Property< std::string > m_MonGroupName
#define ATH_MSG_WARNING(x)
std::vector< int > m_partMap
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
virtual StatusCode sysInitialize() override
Override sysInitialize.
bool m_useReadyFilterTool
SG::ReadHandleKey< BeamBackgroundData > m_beamBackgroundKey
ToolHandle< IDQFilterTool > m_ReadyFilterTool
Gaudi::Property< int > m_pedestalMon_BCIDmin
Declare a monitored scalar variable.
Gaudi::Property< std::vector< float > > m_etaMin
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
setScale setgFexType iEta
float phi_raw() const
cell phi_raw