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

#include <SCTHitsNoiseMonAlg.h>

Inheritance diagram for SCTHitsNoiseMonAlg:

Public Types

enum class  Environment_t {
  user = 0 , online , tier0 , tier0Raw ,
  tier0ESD , AOD , altprod
}
 Specifies the processing environment. More...
enum class  DataType_t {
  userDefined = 0 , monteCarlo , collisions , cosmics ,
  heavyIonCollisions
}
 Specifies what type of input data is being monitored. More...

Public Member Functions

 SCTHitsNoiseMonAlg (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~SCTHitsNoiseMonAlg ()=default
virtual StatusCode initialize () override final
 initialize
virtual StatusCode fillHistograms (const EventContext &ctx) const override final
 adds event to the monitoring histograms
virtual StatusCode execute (const EventContext &ctx) const override
 Applies filters and trigger requirements.
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.
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.
template<typename... T>
void fill (const ToolHandle< GenericMonitoringTool > &groupHandle, T &&... variables) const
 Fills a variadic list of variables to a group by reference.
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.
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.
template<typename... T>
void fill (const std::string &groupName, T &&... variables) const
 Fills a variadic list of variables to a group by name.
Environment_t environment () const
 Accessor functions for the environment.
Environment_t envStringToEnum (const std::string &str) const
 Convert the environment string from the python configuration to an enum object.
DataType_t dataType () const
 Accessor functions for the data type.
DataType_t dataTypeStringToEnum (const std::string &str) const
 Convert the data type string from the python configuration to an enum object.
const ToolHandle< GenericMonitoringTool > & getGroup (const std::string &name) const
 Get a specific monitoring tool from the tool handle array.
const ToolHandle< Trig::TrigDecisionTool > & getTrigDecisionTool () const
 Get the trigger decision tool member.
bool trigChainsArePassed (const std::vector< std::string > &vTrigNames) const
 Check whether triggers are passed.
SG::ReadHandle< xAOD::EventInfoGetEventInfo (const EventContext &) const
 Return a ReadHandle for an EventInfo object (get run/event numbers, etc.).
virtual float lbAverageInteractionsPerCrossing (const EventContext &ctx) const
 Calculate the average mu, i.e.
virtual float lbInteractionsPerCrossing (const EventContext &ctx) const
 Calculate instantaneous number of interactions, i.e.
virtual float lbAverageLuminosity (const EventContext &ctx) const
 Calculate average luminosity (in ub-1 s-1 => 10^30 cm-2 s-1).
virtual float lbLuminosityPerBCID (const EventContext &ctx) const
 Calculate the instantaneous luminosity per bunch crossing.
virtual double lbDuration (const EventContext &ctx) const
 Calculate the duration of the luminosity block (in seconds).
virtual float lbAverageLivefraction (const EventContext &ctx) const
 Calculate the average luminosity livefraction.
virtual float livefractionPerBCID (const EventContext &ctx) const
 Calculate the live fraction per bunch crossing ID.
virtual double lbLumiWeight (const EventContext &ctx) const
 Calculate the average integrated luminosity multiplied by the live fraction.
virtual StatusCode parseList (const std::string &line, std::vector< std::string > &result) const
 Parse a string into a vector.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
 Get filter decision:
virtual void setFilterPassed (bool state, const EventContext &ctx) const
 Set filter decision:
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.

Protected Attributes

ToolHandleArray< GenericMonitoringToolm_tools {this,"GMTools",{}}
 Array of Generic Monitoring Tools.
PublicToolHandle< Trig::TrigDecisionToolm_trigDecTool
 Tool to tell whether a specific trigger is passed.
ToolHandleArray< IDQFilterToolm_DQFilterTools {this,"FilterTools",{}}
 Array of Data Quality filter tools.
SG::ReadCondHandleKey< LuminosityCondDatam_lumiDataKey {this,"LuminosityCondDataKey","LuminosityCondData","SG Key of LuminosityCondData object"}
SG::ReadCondHandleKey< LBDurationCondDatam_lbDurationDataKey {this,"LBDurationCondDataKey","LBDurationCondData","SG Key of LBDurationCondData object"}
SG::ReadCondHandleKey< TrigLiveFractionCondDatam_trigLiveFractionDataKey {this,"TrigLiveFractionCondDataKey","TrigLiveFractionCondData", "SG Key of TrigLiveFractionCondData object"}
AthMonitorAlgorithm::Environment_t m_environment
 Instance of the Environment_t enum.
AthMonitorAlgorithm::DataType_t m_dataType
 Instance of the DataType_t enum.
Gaudi::Property< std::string > m_environmentStr {this,"Environment","user"}
 Environment string pulled from the job option and converted to enum.
Gaudi::Property< std::string > m_dataTypeStr {this,"DataType","userDefined"}
 DataType string pulled from the job option and converted to enum.
Gaudi::Property< std::string > m_triggerChainString {this,"TriggerChain",""}
 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.
Gaudi::Property< std::string > m_fileKey {this,"FileKey",""}
 Internal Athena name for file.
Gaudi::Property< bool > m_useLumi {this,"EnableLumi",false}
 Allows use of various luminosity functions.
Gaudi::Property< float > m_defaultLBDuration {this,"DefaultLBDuration",60.}
 Default duration of one lumi block.
Gaudi::Property< int > m_detailLevel {this,"DetailLevel",0}
 Sets the level of detail used in the monitoring.
SG::ReadHandleKey< xAOD::EventInfom_EventInfoKey {this,"EventInfoKey","EventInfo"}
 Key for retrieving EventInfo from StoreGate.

Private Types

typedef std::vector< std::reference_wrapper< Monitored::IMonitoredVariable > > MonVarVec_t
typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

StatusCode generalHistsandNoise (const std::array< std::unordered_set< Identifier >, SCT_Monitoring::N_WAFERS > &rdosOnTracks, const EventContext &ctx) const
StatusCode makeVectorOfTrackRDOIdentifiers (std::array< std::unordered_set< Identifier >, SCT_Monitoring::N_WAFERS > &rdosOnTracks, const EventContext &ctx) const
StatusCode makeSPvsEventNumber () const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

std::atomic< int > m_numberOfEvents {0}
std::atomic< int > m_numberOfEventsTrigger {0}
std::atomic< int > m_numberOfEventsRecent {0}
std::atomic< int > m_skipEvents {0}
std::atomic< int > m_events_lb {0}
std::atomic< int > m_eventsTrigger_lb {0}
std::vector< int > m_nSP_buf {}
std::atomic< int > m_nSP_pos {0}
std::vector< int > m_nHits_buf {}
std::atomic< int > m_nHits_pos {0}
std::vector< int > m_nmaxHits_buf {}
std::vector< Identifierm_nmaxModule_buf {}
std::vector< int > m_nminHits_buf {}
StringProperty m_NOTriggerItem {this, "NOTrigger", "L1_RD0_EMPTY"}
 Name of the L1 Type to use for filling the extra NO histograms.
BooleanProperty m_doTrigger {this, "doTrigger", false}
BooleanProperty m_doOnline {this, "doOnlineMon", false}
BooleanProperty m_doPositiveEndcap {this, "doPositiveEndcap", true}
 Switch on or off the hitmaps histograms.
BooleanProperty m_doNegativeEndcap {this, "doNegativeEndcap", true}
BooleanProperty m_doTrackBasedNoise {this, "doTrackBasedNoise", false}
 Select the noise algorithm.
BooleanProperty m_doSpacePointBasedNoise {this, "doSpacePointBasedNoise", true}
BooleanProperty m_doTimeBinFilteringForNoise {this, "doTimeBinFilteringForNoise", true}
 Add time-bin filtering to space point NO algorithm.
IntegerProperty m_checkrate {this, "CheckRate", 1000}
 CheckHists() frequency.
IntegerProperty m_checkrecent {this, "CheckRecent", 30}
IntegerProperty m_evtsbins {this, "EvtsBins", 5000}
 ChechHists() frequency.
BooleanProperty m_doTrackHits {this, "doTrackHits", true}
UnsignedIntegerProperty m_maxTracks {this, "MaxTracks", 1000}
IntegerProperty m_localSummary {this, "localSummary", 0}
 Determines whether a local summary is written.
SG::ReadHandleKey< TrackCollectionm_tracksName {this, "tracksName", "CombinedInDetTracks"}
 Name of the Track collection to use.
SG::ReadHandleKey< InDet::SCT_ClusterContainer > m_clusContainerKey {this, "ClusterKey", "SCT_Clusters"}
SG::ReadHandleKey< SpacePointContainerm_SCTSPContainerName {this, "SpacePointKey", "SCT_SpacePoints"}
SG::ReadHandleKey< SCT_RDO_Containerm_dataObjectName {this, "RDOKey", "SCT_RDOs"}
 Data object name: for the SCT this is "SCT_RDOs".
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
ToolHandle< ISCT_ConfigurationConditionsToolm_ConfigurationTool
const SCT_IDm_pSCTHelper {nullptr}
 SCT Helper class.
std::string m_name
std::unordered_map< std::string, size_t > m_toolLookupMap
const ToolHandle< GenericMonitoringToolm_dummy
Gaudi::Property< bool > m_enforceExpressTriggers
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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

Definition at line 33 of file SCTHitsNoiseMonAlg.h.

Member Typedef Documentation

◆ MonVarVec_t

typedef std::vector<std::reference_wrapper<Monitored::IMonitoredVariable> > AthMonitorAlgorithm::MonVarVec_t
privateinherited

Definition at line 370 of file AthMonitorAlgorithm.h.

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Member Enumeration Documentation

◆ DataType_t

enum class AthMonitorAlgorithm::DataType_t
stronginherited

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.

194 {
195 userDefined = 0,
196 monteCarlo,
197 collisions,
198 cosmics,
199 heavyIonCollisions,
200 };
AthConfigFlags cosmics(AthConfigFlags flags, str instanceName, str recoMode)

◆ Environment_t

enum class AthMonitorAlgorithm::Environment_t
stronginherited

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.

175 {
176 user = 0,
177 online,
178 tier0,
179 tier0Raw,
180 tier0ESD,
181 AOD,
182 altprod,
183 };

Constructor & Destructor Documentation

◆ SCTHitsNoiseMonAlg()

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

Definition at line 62 of file SCTHitsNoiseMonAlg.cxx.

63 :AthMonitorAlgorithm(name,pSvcLocator)
64{
65}
Base class for Athena Monitoring Algorithms.

◆ ~SCTHitsNoiseMonAlg()

virtual SCTHitsNoiseMonAlg::~SCTHitsNoiseMonAlg ( )
virtualdefault

Member Function Documentation

◆ 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.

224{ return m_dataType; }
AthMonitorAlgorithm::DataType_t m_dataType
Instance of the DataType_t enum.

◆ dataTypeStringToEnum()

AthMonitorAlgorithm::DataType_t AthMonitorAlgorithm::dataTypeStringToEnum ( const std::string & str) const
inherited

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.

144 {
145 // convert the string to all lowercase
146 std::string lowerCaseStr = str;
147 std::transform(lowerCaseStr.begin(), lowerCaseStr.end(), lowerCaseStr.begin(), ::tolower);
148
149 // check if it matches one of the enum choices
150 if( lowerCaseStr == "userdefined" ) {
152 } else if( lowerCaseStr == "montecarlo" ) {
154 } else if( lowerCaseStr == "collisions" ) {
156 } else if( lowerCaseStr == "cosmics" ) {
157 return DataType_t::cosmics;
158 } else if( lowerCaseStr == "heavyioncollisions" ) {
160 } else { // otherwise, warn the user and return "userDefined"
161 ATH_MSG_WARNING("AthMonitorAlgorithm::dataTypeStringToEnum(): Unknown data type "
162 <<str<<", returning userDefined.");
164 }
165}
#define ATH_MSG_WARNING(x)
void tolower(std::string &s)

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::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< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

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

Definition at line 95 of file AthCommonDataStore.h.

◆ environment()

Environment_t AthMonitorAlgorithm::environment ( ) const
inlineinherited

Accessor functions for the environment.

Returns
the current value of the class's Environment_t instance.

Definition at line 208 of file AthMonitorAlgorithm.h.

208{ return m_environment; }
AthMonitorAlgorithm::Environment_t m_environment
Instance of the Environment_t enum.

◆ envStringToEnum()

AthMonitorAlgorithm::Environment_t AthMonitorAlgorithm::envStringToEnum ( const std::string & str) const
inherited

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.

116 {
117 // convert the string to all lowercase
118 std::string lowerCaseStr = str;
119 std::transform(lowerCaseStr.begin(), lowerCaseStr.end(), lowerCaseStr.begin(), ::tolower);
120
121 // check if it matches one of the enum choices
122 if( lowerCaseStr == "user" ) {
123 return Environment_t::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" ) {
133 return Environment_t::AOD;
134 } else if( lowerCaseStr == "altprod" ) {
136 } else { // otherwise, warn the user and return "user"
137 ATH_MSG_WARNING("AthMonitorAlgorithm::envStringToEnum(): Unknown environment "
138 <<str<<", returning user.");
139 return Environment_t::user;
140 }
141}

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::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 AthMonitorAlgorithm::execute ( const EventContext & ctx) const
overridevirtualinherited

Applies filters and trigger requirements.

Then, calls fillHistograms().

Parameters
ctxevent context for reentrant Athena call
Returns
StatusCode

Definition at line 77 of file AthMonitorAlgorithm.cxx.

77 {
78
79 // Checks that all of the DQ filters are passed. If any one of the filters
80 // fails, return SUCCESS code and do not fill the histograms with the event.
81 for ( const auto& filterItr : m_DQFilterTools ) {
82 if (!filterItr->accept(ctx)) {
83 ATH_MSG_DEBUG("Event rejected due to filter tool.");
84 return StatusCode::SUCCESS;
85 }
86 }
87
88 // Trigger: If there is a decision tool and the chains fail, skip the event.
90 ATH_MSG_DEBUG("Event rejected due to trigger filter.");
91 return StatusCode::SUCCESS;
92 }
93
94 ATH_MSG_DEBUG("Event accepted!");
95 return fillHistograms(ctx);
96}
#define ATH_MSG_DEBUG(x)
virtual StatusCode fillHistograms(const EventContext &ctx) const =0
adds event to the monitoring histograms
bool trigChainsArePassed(const std::vector< std::string > &vTrigNames) const
Check whether triggers are passed.
std::vector< std::string > m_vTrigChainNames
Vector of trigger chain names parsed from trigger chain string.
PublicToolHandle< Trig::TrigDecisionTool > m_trigDecTool
Tool to tell whether a specific trigger is passed.
ToolHandleArray< IDQFilterTool > m_DQFilterTools
Array of Data Quality filter tools.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::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 & AthCommonAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

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

Definition at line 89 of file AthCommonAlgorithm.cxx.

54{
55 // If we didn't find any symlinks to add, just return the collection
56 // from the base class. Otherwise, return the extended collection.
57 if (!m_extendedExtraObjects.empty()) {
59 }
61}
Common base class for algorithms.

◆ fillHistograms()

StatusCode SCTHitsNoiseMonAlg::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
ctxforwarded from execute
Returns
StatusCode

Implements AthMonitorAlgorithm.

Definition at line 91 of file SCTHitsNoiseMonAlg.cxx.

91 {
92 ++m_numberOfEvents;
93 ++m_numberOfEventsRecent;
94
95 // If track hits are selected, make the vector of track rdo identifiers
96 //Total stack use for this function is 473316 bytes.
97 //coverity[STACK_USE]
98 std::array<std::unordered_set<Identifier>, N_WAFERS> rdosOnTracks;
99 if (m_doTrackHits) {
100 if (makeVectorOfTrackRDOIdentifiers(rdosOnTracks, ctx).isFailure()) {
101 ATH_MSG_WARNING("Couldn't make vector of track RDO identifiers");
102 }
103 }
104 if (generalHistsandNoise(rdosOnTracks, ctx).isFailure()) {
105 ATH_MSG_WARNING("Error in generalHists");
106 }
107 if (makeSPvsEventNumber().isFailure()) {
108 ATH_MSG_WARNING("Error in makeSPvsEventNumber");
109 }
110
111 return StatusCode::SUCCESS;
112}
StatusCode makeSPvsEventNumber() const
StatusCode generalHistsandNoise(const std::array< std::unordered_set< Identifier >, SCT_Monitoring::N_WAFERS > &rdosOnTracks, const EventContext &ctx) const

◆ filterPassed()

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Get filter decision:

Definition at line 93 of file AthCommonAlgorithm.h.

93 {
94 return execState( ctx ).filterPassed();
95 }
virtual bool filterPassed(const EventContext &ctx) const
Get filter decision:

◆ generalHistsandNoise()

StatusCode SCTHitsNoiseMonAlg::generalHistsandNoise ( const std::array< std::unordered_set< Identifier >, SCT_Monitoring::N_WAFERS > & rdosOnTracks,
const EventContext & ctx ) const
private

Definition at line 114 of file SCTHitsNoiseMonAlg.cxx.

114 {
115 static const unsigned int limits[N_REGIONS] = {
117 };
118
119 const EventIDBase& pEvent{ctx.eventID()};
120 const int lumi_block{static_cast<int>(pEvent.lumi_block())};
121
122 SG::ReadHandle<SCT_RDO_Container> rdoContainer{m_dataObjectName, ctx};
123 if (not rdoContainer.isValid()) {
124 ATH_MSG_WARNING("SCT_RDO_Container not valid");
125 return StatusCode::FAILURE;
126 }
127 // Get the space point container
128 SG::ReadHandle<SpacePointContainer> spacePointContainer{m_SCTSPContainerName, ctx};
129 if (not spacePointContainer.isValid()) {
130 ATH_MSG_WARNING("SpacePointContainer not valid");
131 return StatusCode::FAILURE;
132 }
133
134 bool isSelectedTrigger{false};
135 // EDAVIES - have now changed back to using L1_RD0_EMPTY
136 if (m_doTrigger and !m_trigDecTool.empty()) {
138 if (m_trigDecTool->isPassed(m_NOTriggerItem)) {
139 isSelectedTrigger = true;
141 }
142 }
143 }
144 m_events_lb++;
145 if (isSelectedTrigger) {
147 }
148
149 std::vector<float> occ(N_WAFERS, 0.);
150 std::vector<float> hitOcc(N_WAFERS, 0.);
151
152 int local_tothits{0};
153
154 std::vector<int> barrel_local_nhitslayer(N_BARRELSx2, 0);
155 std::vector<int> ECp_local_nhitslayer(N_DISKSx2, 0);
156 std::vector<int> ECm_local_nhitslayer(N_DISKSx2, 0);
157 std::vector<int>* hitsInLayer[N_REGIONS] = {
158 &ECm_local_nhitslayer, &barrel_local_nhitslayer, &ECp_local_nhitslayer
159 };
160 const bool doThisSubsystem[N_REGIONS] = {
162 };
163 // vectors to store data to decrease number of fill() calls for better perfomance
164 std::vector<int> vLumiBlock[N_REGIONS];
165 std::vector<int> vNumberOfHitsFromAllRDOs[N_REGIONS];
166 std::vector<int> vNumberOfHitsFromSPs[N_REGIONS];
167 std::vector<bool> vIsSelectedTriggerHits[N_REGIONS];
168 for (unsigned int jReg{0}; jReg<N_REGIONS; jReg++) {
169 unsigned int size{0};
171 else if (jReg==BARREL_INDEX) size = N_SIDES * N_MOD_BARREL;
172 vLumiBlock[jReg].reserve(size);
173 vNumberOfHitsFromAllRDOs[jReg].reserve(size);
174 vNumberOfHitsFromSPs[jReg].reserve(size);
175 vIsSelectedTriggerHits[jReg].reserve(size);
176 }
177
178 std::vector<int> vEtaOnTrack;
179 std::vector<int> vPhiOnTrack;
180 std::vector<float> vSystemIndexOnTrack;
181 std::vector<bool> vDTbinOnTrack;
182
183 std::vector<int> vEta;
184 std::vector<int> vPhi;
185 std::vector<int> vNumberOfStrips;
186
187 // Outer Loop on RDO Collection
188 for (const InDetRawDataCollection<SCT_RDORawData>* rdoCollection: *rdoContainer) {
189 // MJW new code- try getting the ID of the collection using the identify() method
190 const Identifier wafer_id{rdoCollection->identify()};
191 const IdentifierHash wafer_hash{rdoCollection->identifyHash()};
192 const Identifier module_id{m_pSCTHelper->module_id(wafer_id)};
193 const IdentifierHash theModuleHash0{m_pSCTHelper->wafer_hash(module_id)}; // This hash is not necessarily for side 0.
194 IdentifierHash theModuleHash1; // This hash is not necessarily for side 1.
195 m_pSCTHelper->get_other_side(theModuleHash0, theModuleHash1);
196 const int barrel_ec{m_pSCTHelper->barrel_ec(wafer_id)};
197 const unsigned int systemIndex{bec2Index(barrel_ec)};
198
199 const int thisLayerDisk{m_pSCTHelper->layer_disk(wafer_id)};
200 const int thisPhi{m_pSCTHelper->phi_module(wafer_id)};
201 const int thisEta{m_pSCTHelper->eta_module(wafer_id)};
202 const int thisSide{m_pSCTHelper->side(wafer_id)};
203 const int thisElement{(N_SIDES * thisLayerDisk) + thisSide};
204
205 LayerSideFormatter layerSide{static_cast<unsigned int>(thisElement), systemIndex};
206
207 int numberOfHitsFromSPs{0};
208 int numberOfHitsFromAllRDOs{0};
209 // Now we want the space point container for this module
210 // We have to compare module IDs- the SP collection is defined for the 'normal' (i.e. no stereo) module side
211 // Define a set of spIDs
212 std::unordered_set<Identifier> mySetOfSPIds;
213 for (int side{0}; side<N_SIDES; side++) {
214 auto spContainerIterator{spacePointContainer->indexFindPtr(side==0 ? theModuleHash0 : theModuleHash1)};
215 if (spContainerIterator==nullptr) continue;
216 for (const Trk::SpacePoint* sp: *spContainerIterator) {
217 const std::vector<Identifier>& rdoList{(thisSide==side ? sp->clusterList().first : sp->clusterList().second)->rdoList()};
218 mySetOfSPIds.insert(rdoList.begin(), rdoList.end());
219 }
220 }
221
222 vEtaOnTrack.clear();
223 vPhiOnTrack.clear();
224 vEta.clear();
225 vPhi.clear();
226 vNumberOfStrips.clear();
227
228 // Now we loop over the RDOs in the RDO collection, and add to the NO vector any that are in the mySetOfSPIds
229 for (const SCT_RDORawData* rdo: *rdoCollection) {
230 const int numberOfStrips{rdo->getGroupSize()};
231 (*hitsInLayer[systemIndex])[thisElement] += numberOfStrips;
232 local_tothits += numberOfStrips;
233
234 if (doThisSubsystem[systemIndex]) {
235 const SCT3_RawData* rdo3{dynamic_cast<const SCT3_RawData*>(rdo)};
236 int tbin{3};
237 if (rdo3) {
238 tbin = rdo3->getTimeBin();
239 }
240 const Identifier strip_id{rdo->identify()};
241 const int firstStrip{m_pSCTHelper->strip(strip_id)};
242 const int limit{firstStrip + numberOfStrips};
243
244 if (rdosOnTracks[wafer_hash].find(strip_id) != rdosOnTracks[wafer_hash].end()) {
245 for (int ichan{firstStrip}; ichan < limit; ++ichan) {
246 vEtaOnTrack.push_back(thisEta);
247 vPhiOnTrack.push_back(thisPhi);
248 vDTbinOnTrack.push_back((tbin == 2) or (tbin == 3));
249 vSystemIndexOnTrack.push_back(systemIndex);
250 }
251 }
252 vEta.push_back(thisEta);
253 vPhi.push_back(thisPhi);
254 vNumberOfStrips.push_back(numberOfStrips);
255
256 numberOfHitsFromAllRDOs += numberOfStrips;
257 // Record number of hits in space points if timebin filtering is on hits not in bin X1X are counted as in space
258 // points
259 if (mySetOfSPIds.find(strip_id) != mySetOfSPIds.end()) {
260 numberOfHitsFromSPs += numberOfStrips;
261 } else if (m_doTimeBinFilteringForNoise and (not timeBinInPattern(tbin, XIX))) {
262 numberOfHitsFromSPs += numberOfStrips;
263 }
264 }
265
266 } // End of Loop on rdoCollection, so end of loop over the RDOs in the RDO container
267 // We can now do the NO calculation for this wafer
268 // For the Time Dependent plots
269
270 const std::string streamhitmap{"mapsOfHitsOnTracks" + abbreviations[systemIndex] + "_" +
271 "trackhitsmap_" + layerSide.name()};
272
273 auto etaMapsOfHitsOnTracksAcc{Monitored::Collection("eta_"+streamhitmap, vEtaOnTrack)};
274 auto phiMapsOfHitsOnTracksAcc{Monitored::Collection("phi_"+streamhitmap, vPhiOnTrack)};
275 fill("SCTHitsNoiseMonitor_" + std::to_string(systemIndex), etaMapsOfHitsOnTracksAcc, phiMapsOfHitsOnTracksAcc);
276
277 const std::string hitmap{"hitsmap" + abbreviations[systemIndex] + "_" + layerSide.name()};
278
279 auto etahitsmapAcc{Monitored::Collection("eta_"+hitmap, vEta)};
280 auto phihitsmapAcc{Monitored::Collection("phi_"+hitmap, vPhi)};
281 auto numberOfStripsAcc{Monitored::Collection("numberOfStrips_"+hitmap, vNumberOfStrips)};
282 fill("SCTHitsNoiseMonitor_" + std::to_string(systemIndex), etahitsmapAcc, phihitsmapAcc, numberOfStripsAcc);
283
284 if (m_doOnline){
285 const std::string hitmaprecent{"hitsmaprecent" + abbreviations[systemIndex] + "_" + layerSide.name()};
286 auto etahitsmapRecentAcc{Monitored::Collection("eta_"+hitmaprecent, vEta)};
287 auto phihitsmapRecentAcc{Monitored::Collection("phi_"+hitmaprecent, vPhi)};
288 auto numberOfStripsRecentAcc{Monitored::Collection("numberOfStrips_"+hitmaprecent, vNumberOfStrips)};
289 fill("SCTHitsNoiseMonitor_" + std::to_string(systemIndex), etahitsmapRecentAcc, phihitsmapRecentAcc, numberOfStripsAcc);
290
291 const std::string streamhitmaprecent{"mapsOfHitsOnTracksrecent" + abbreviations[systemIndex] + "_" +
292 "trackhitsmap_" + layerSide.name()};
293
294 auto etaMapsOfHitsOnTracksRecentAcc{Monitored::Collection("eta_"+streamhitmaprecent, vEtaOnTrack)};
295 auto phiMapsOfHitsOnTracksRecentAcc{Monitored::Collection("phi_"+streamhitmaprecent, vPhiOnTrack)};
296 fill("SCTHitsNoiseMonitor_" + std::to_string(systemIndex), etaMapsOfHitsOnTracksRecentAcc, phiMapsOfHitsOnTracksRecentAcc);
297 }
298
299 if (numberOfHitsFromAllRDOs > 0) {
300 int den{N_STRIPS - numberOfHitsFromSPs};
301 int num{numberOfHitsFromAllRDOs - numberOfHitsFromSPs};
302 if (num < 0) {
303 num = 0;
304 ATH_MSG_WARNING("Too many reconstructed space points for number of real hits");
305 }
306 if (den > 0) {
307 occ[wafer_hash] = static_cast<float>(num) / static_cast<float>(den) * 1.E5;
308 }
309
310 hitOcc[wafer_hash] = static_cast<float>(numberOfHitsFromAllRDOs) / static_cast<float>(N_STRIPS) * 1.E5;
311
312 vLumiBlock[systemIndex].push_back(lumi_block);
313 vNumberOfHitsFromAllRDOs[systemIndex].push_back(numberOfHitsFromAllRDOs);
314 vNumberOfHitsFromSPs[systemIndex].push_back(numberOfHitsFromSPs);
315 vIsSelectedTriggerHits[systemIndex].push_back(isSelectedTrigger);
316 // end of hit occupancy
317 }
318 }// End of Loop on RDO container
319
320 auto Bec_TBinFracAllAcc{Monitored::Collection("Bec_TBinFracAll", vSystemIndexOnTrack)};
321 auto TBin_TBinFracAllAcc{Monitored::Collection("TBin_TBinFracAll", vDTbinOnTrack)};
322 fill("SCTHitsNoiseMonitorGeneral", Bec_TBinFracAllAcc, TBin_TBinFracAllAcc);
323
324 for (unsigned int jReg{0}; jReg<N_REGIONS; jReg++) {
325 auto lbHitsAcc{Monitored::Collection("LBHits", vLumiBlock[jReg])};
326 auto numberOfHitsFromAllRDOsAcc{Monitored::Collection("numberOfHitsFromAllRDOs", vNumberOfHitsFromAllRDOs[jReg])};
327 auto numberOfHitsFromSPsAcc{Monitored::Collection("numberOfHitsFromSPs", vNumberOfHitsFromSPs[jReg])};
328 auto isSelectedTriggerHitsAcc{Monitored::Collection("isSelectedTriggerHits", vIsSelectedTriggerHits[jReg])};
329 fill("SCTHitsNoiseMonitor_" + std::to_string(jReg), lbHitsAcc, numberOfHitsFromAllRDOsAcc, numberOfHitsFromSPsAcc, isSelectedTriggerHitsAcc);
330 }
331
332 // Fill Cluster size histogram
333 SG::ReadHandle<InDet::SCT_ClusterContainer> clusterContainer{m_clusContainerKey, ctx};
334 if (not clusterContainer.isValid()) {
335 ATH_MSG_WARNING("Couldn't retrieve clusters");
336 }
337
338 std::vector<long unsigned int> vGroupSize;
339 for (const InDet::SCT_ClusterCollection* clusterCollection: *clusterContainer) {
340 for (const InDet::SCT_Cluster* cluster: *clusterCollection) {
341 vGroupSize.push_back(cluster->rdoList().size());
342 }
343 }
344 auto cluSizeAcc{Monitored::Collection("clu_size", vGroupSize)};
345 fill("SCTHitsNoiseMonitorGeneral", cluSizeAcc);
346 auto hitsAcc{Monitored::Scalar<int>("sct_hits", local_tothits)};
347 fill("SCTHitsNoiseMonitorGeneral", hitsAcc);
348
349 // Fill hit occupancy and noise occupancy plots
350 // vectors for storing the data and then use only one fill call to decrease time
351 std::vector<int> vLB[N_REGIONS_INC_GENERAL];
352 std::vector<float> vNO[N_REGIONS_INC_GENERAL];
353 std::vector<float> vHO[N_REGIONS_INC_GENERAL];
354 std::vector<bool> vIsSelectedTrigger[N_REGIONS_INC_GENERAL];
355 std::vector<std::vector<float>> vNO2D[N_REGIONS];
356 std::vector<std::vector<float>> vHO2D[N_REGIONS];
357 std::vector<std::vector<int>> vEtaNOHO[N_REGIONS];
358 std::vector<std::vector<int>> vPhiNOHO[N_REGIONS];
359 std::vector<std::vector<bool>> vIsSelectedTriggerNOHO[N_REGIONS];
360 for (unsigned int jReg{0}; jReg<N_REGIONS_INC_GENERAL; jReg++) {
361 unsigned int size{N_WAFERS};
363 else if (jReg==BARREL_INDEX) size = N_SIDES * N_MOD_BARREL;
364 vLB[jReg].reserve(size);
365 vNO[jReg].reserve(size);
366 vHO[jReg].reserve(size);
367 vIsSelectedTrigger[jReg].reserve(size);
368
369 if (jReg<GENERAL_INDEX) {
370 vNO2D[jReg].resize(limits[jReg], {});
371 vHO2D[jReg].resize(limits[jReg], {});
372 vEtaNOHO[jReg].resize(limits[jReg], {});
373 vPhiNOHO[jReg].resize(limits[jReg], {});
374 vIsSelectedTriggerNOHO[jReg].resize(limits[jReg], {});
375 for (unsigned int element{0}; element< limits[jReg]; ++element) {
376 const int nWafers{getNumModules(jReg, element)*N_SIDES};
377 vNO2D[jReg][element].reserve(nWafers);
378 vHO2D[jReg][element].reserve(nWafers);
379 vEtaNOHO[jReg][element].reserve(nWafers);
380 vPhiNOHO[jReg][element].reserve(nWafers);
381 vIsSelectedTriggerNOHO[jReg][element].reserve(nWafers);
382 }
383 }
384 }
385
386 for (unsigned int iHash{0}; iHash<N_WAFERS; iHash++) {
387 const IdentifierHash wafer_hash{iHash};
388 if (not m_ConfigurationTool->isGood(wafer_hash, ctx)) continue;
389
390 const Identifier wafer_id{m_pSCTHelper->wafer_id(wafer_hash)};
391 const int barrel_ec{m_pSCTHelper->barrel_ec(wafer_id)};
392 const unsigned int systemIndex{bec2Index(barrel_ec)};
393 vLB[systemIndex].push_back(lumi_block);
394 vNO[systemIndex].push_back(occ[iHash]);
395 vHO[systemIndex].push_back(hitOcc[iHash]);
396 vIsSelectedTrigger[systemIndex].push_back(isSelectedTrigger);
397 vLB[GENERAL_INDEX].push_back(lumi_block);
398 vNO[GENERAL_INDEX].push_back(occ[iHash]);
399 vHO[GENERAL_INDEX].push_back(hitOcc[iHash]);
400 vIsSelectedTrigger[GENERAL_INDEX].push_back(isSelectedTrigger);
401 if (doThisSubsystem[systemIndex]) {
402 const int element{N_SIDES * m_pSCTHelper->layer_disk(wafer_id) + m_pSCTHelper->side(wafer_id)};
403 vNO2D[systemIndex][element].push_back(occ[iHash]);
404 vHO2D[systemIndex][element].push_back(hitOcc[iHash]);
405 vEtaNOHO[systemIndex][element].push_back(m_pSCTHelper->eta_module(wafer_id));
406 vPhiNOHO[systemIndex][element].push_back(m_pSCTHelper->phi_module(wafer_id));
407 vIsSelectedTriggerNOHO[systemIndex][element].push_back(isSelectedTrigger);
408 }
409 }
410
411 for (unsigned int jReg{0}; jReg<N_REGIONS_INC_GENERAL; jReg++) {
412 std::string monitor;
413 if (jReg==GENERAL_INDEX) monitor = "SCTHitsNoiseMonitorGeneral";
414 else monitor = "SCTHitsNoiseMonitor_" + std::to_string(jReg);
415
416 auto LBAcc{Monitored::Collection("LB", vLB[jReg])};
417 auto noAcc{Monitored::Collection("NO", vNO[jReg])};
418 auto hoAcc{Monitored::Collection("HO", vHO[jReg])};
419 auto IsSelectedTriggerAcc{Monitored::Collection("IsSelectedTrigger", vIsSelectedTrigger[jReg])};
420 fill(monitor, LBAcc, noAcc, hoAcc, IsSelectedTriggerAcc);
421 }
422
423 for (unsigned int jReg{0}; jReg<N_REGIONS; ++jReg){
424 for (unsigned int element{0}; element < limits[jReg]; ++element) {
425 LayerSideFormatter layerSide{element, jReg};
426 const std::string occMap{"occupancymap" + abbreviations[jReg] + "_" + layerSide.name()};
427 auto etaEacc{Monitored::Collection("eta_" + occMap, vEtaNOHO[jReg][element])};
428 auto phiAcc{Monitored::Collection("phi_" + occMap, vPhiNOHO[jReg][element])};
429 auto hoAcc{Monitored::Collection("HO_" + occMap, vHO2D[jReg][element])};
430 auto noAcc{Monitored::Collection("NO_" + occMap, vNO2D[jReg][element])};
431 auto isSelectedTriggerAcc{Monitored::Collection("IsSelectedTrigger_"+occMap, vIsSelectedTriggerNOHO[jReg][element])};
432 fill("SCTHitsNoiseMonitor_" + std::to_string(jReg), etaEacc, phiAcc, hoAcc, noAcc, isSelectedTriggerAcc);
433
434 if (m_doOnline){
435 auto isSelectedTriggerRecentAcc{Monitored::Collection("IsSelectedTriggerRecent_"+occMap, vIsSelectedTriggerNOHO[jReg][element])};
436 fill("SCTHitsNoiseMonitor_" + std::to_string(jReg), etaEacc, phiAcc, hoAcc, noAcc, isSelectedTriggerRecentAcc);
437 }
438
439 }
440 }
441
442 return StatusCode::SUCCESS;
443}
static Double_t sp
size_t size() const
Number of registered mappings.
DataType_t dataType() const
Accessor functions for the data type.
int getTimeBin() const
std::atomic< int > m_eventsTrigger_lb
std::atomic< int > m_numberOfEventsTrigger
const SCT_ID * m_pSCTHelper
SCT Helper class.
SG::ReadHandleKey< SpacePointContainer > m_SCTSPContainerName
SG::ReadHandleKey< SCT_RDO_Container > m_dataObjectName
Data object name: for the SCT this is "SCT_RDOs".
std::atomic< int > m_events_lb
SG::ReadHandleKey< InDet::SCT_ClusterContainer > m_clusContainerKey
BooleanProperty m_doPositiveEndcap
Switch on or off the hitmaps histograms.
BooleanProperty m_doNegativeEndcap
ToolHandle< ISCT_ConfigurationConditionsTool > m_ConfigurationTool
int layer_disk(const Identifier &id) const
Definition SCT_ID.h:687
int side(const Identifier &id) const
Definition SCT_ID.h:705
IdentifierHash wafer_hash(const Identifier &wafer_id) const
wafer hash from id - optimized
Definition SCT_ID.h:487
Identifier wafer_id(int barrel_ec, int layer_disk, int phi_module, int eta_module, int side) const
For a single side of module.
Definition SCT_ID.h:459
int phi_module(const Identifier &id) const
Definition SCT_ID.h:693
Identifier module_id(int barrel_ec, int layer_disk, int phi_module, int eta_module) const
For a single crystal.
Definition SCT_ID.h:411
int strip(const Identifier &id) const
Definition SCT_ID.h:717
int barrel_ec(const Identifier &id) const
Values of different levels (failure returns 0).
Definition SCT_ID.h:681
int eta_module(const Identifier &id) const
Definition SCT_ID.h:699
int get_other_side(const IdentifierHash &id, IdentifierHash &other) const
Wafer hash on other side.
Definition SCT_ID.cxx:427
std::string name(std::string_view delimiter="_") const
virtual bool isValid() override final
Can the handle be successfully dereferenced?
std::string find(const std::string &s)
return a remapped string
Definition hcg.cxx:140
ValuesCollection< T > Collection(std::string name, const T &collection)
Declare a monitored (double-convertible) collection.
unsigned int bec2Index(const int becVal)
Conversion bec->index.
int getNumModules(const int reg, const int layer)
void fill(H5::Group &out_file, size_t iterations)

◆ GetEventInfo()

SG::ReadHandle< xAOD::EventInfo > AthMonitorAlgorithm::GetEventInfo ( const EventContext & ctx) const
inherited

Return a ReadHandle for an EventInfo object (get run/event numbers, etc.).

Parameters
ctxEventContext for the event
Returns
a SG::ReadHandle<xAOD::EventInfo>

Definition at line 111 of file AthMonitorAlgorithm.cxx.

111 {
112 return SG::ReadHandle<xAOD::EventInfo>(m_EventInfoKey, ctx);
113}
SG::ReadHandleKey< xAOD::EventInfo > m_EventInfoKey
Key for retrieving EventInfo from StoreGate.

◆ getGroup()

const ToolHandle< GenericMonitoringTool > & AthMonitorAlgorithm::getGroup ( const std::string & name) const
inherited

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
namestring name of the desired tool
Returns
reference to the desired monitoring tool

Definition at line 168 of file AthMonitorAlgorithm.cxx.

168 {
169 // get the pointer to the tool, and check that it exists
170 auto idx = m_toolLookupMap.find(name);
171 //Check if the tool exists in the map
172 if (ATH_LIKELY(idx != m_toolLookupMap.end())) {
173 return m_tools[idx->second];
174 }
175 else {
176 //Check if the map is empty
177 if (m_toolLookupMap.empty()) {
178 ATH_MSG_FATAL("The m_toolLookupMap is empty. The tool " << name << " cannot be found in an empty map.");
179 return m_dummy;
180 }
181 //If the map is not empty and the tool was not found, print a fatal error
182 if (!m_toolLookupMap.empty()) {
183 std::string available = std::accumulate(
184 m_toolLookupMap.begin(), m_toolLookupMap.end(), std::string(""),
185 [](const std::string& s, auto h) { return s + "," + h.first; });
186 ATH_MSG_FATAL("The tool " << name << " could not be found in the tool array of the "
187 << "monitoring algorithm " << m_name << ". This probably reflects a discrepancy between "
188 << "your python configuration and c++ filling code. Note: your available groups are {"
189 << available << "}.");
190
191 return m_dummy;
192 }
193 if (!isInitialized()) {
195 "It seems that the AthMonitorAlgorithm::initialize was not called "
196 "in derived class initialize method, group name: " << name);
197 }
198 }
199 return m_dummy;
200}
#define ATH_MSG_FATAL(x)
#define ATH_LIKELY(x)
std::unordered_map< std::string, size_t > m_toolLookupMap
const ToolHandle< GenericMonitoringTool > m_dummy
ToolHandleArray< GenericMonitoringTool > m_tools
Array of Generic Monitoring Tools.

◆ getTrigDecisionTool()

const ToolHandle< Trig::TrigDecisionTool > & AthMonitorAlgorithm::getTrigDecisionTool ( ) const
inherited

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 203 of file AthMonitorAlgorithm.cxx.

203 {
204 return m_trigDecTool;
205}

◆ initialize()

StatusCode SCTHitsNoiseMonAlg::initialize ( )
finaloverridevirtual

initialize

Returns
StatusCode

Reimplemented from AthMonitorAlgorithm.

Definition at line 68 of file SCTHitsNoiseMonAlg.cxx.

68 {
69
70 ATH_CHECK(m_dataObjectName.initialize());
71 ATH_CHECK(m_SCTSPContainerName.initialize());
72 ATH_CHECK(m_dataObjectName.initialize());
73 ATH_CHECK(m_clusContainerKey.initialize());
74 ATH_CHECK(m_tracksName.initialize());
75
76 ATH_CHECK(m_SCTDetEleCollKey.initialize());
77
78 // Get the helper:
79 ATH_CHECK(detStore()->retrieve(m_pSCTHelper, "SCT_ID"));
80 ATH_CHECK(m_ConfigurationTool.retrieve());
81
82 if (m_pSCTHelper->wafer_hash_max()!=SCT_Monitoring::N_WAFERS) {
83 ATH_MSG_ERROR("wafer_hash_max()=" << m_pSCTHelper->wafer_hash_max() <<
84 " differs from SCT_Monitoring::N_WAFERS=" << SCT_Monitoring::N_WAFERS);
85 return StatusCode::RECOVERABLE;
86 }
88}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
virtual StatusCode initialize() override
initialize
size_type wafer_hash_max() const
Definition SCT_ID.cxx:621
StatusCode initialize(bool used=true)
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::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.

◆ isClonable()

virtual bool AthCommonAlgorithm< Gaudi::Algorithm >::isClonable ( ) const
inlineoverridevirtualinherited

Specify if the algorithm is clonable.

Only relevant for non-reentrant algorithms. Actual number of clones needs to be set via the "Cardinality" property.

Reimplemented in AFP_DigiTop, AlgB, AlgT, BCM_Digitization, CscDigitBuilder, CscDigitToCscRDO, G4AtlasAlg, G4RunAlg, HGTD_Digitization, HiveAlgBase, InDet::GNNSeedingTrackMaker, InDet::SCT_Clusterization, InDet::SiSPGNNTrackMaker, InDet::SiSPSeededTrackFinder, InDet::SiTrackerSpacePointFinder, ISF::SimKernelMT, ITk::StripDigitization, ITkPixelCablingAlg, ITkStripCablingAlg, LArHitEMapMaker, LArTTL1Maker, LUCID_DigiTop, LVL1::L1TopoSimulation, MergeCalibHits, MergeGenericMuonSimHitColl, MergeHijingPars, MergeMcEventCollection, MergeTrackRecordCollection, MergeTruthJets, MergeTruthParticles, MuonDigitizer, PileUpMTAlg, PixelDigitization, RoIBResultToxAOD, SCT_ByteStreamErrorsTestAlg, SCT_CablingCondAlgFromCoraCool, SCT_CablingCondAlgFromText, SCT_ConditionsParameterTestAlg, SCT_ConditionsSummaryTestAlg, SCT_ConfigurationConditionsTestAlg, SCT_Digitization, SCT_FlaggedConditionTestAlg, SCT_LinkMaskingTestAlg, SCT_MajorityConditionsTestAlg, SCT_ModuleVetoTestAlg, SCT_MonitorConditionsTestAlg, SCT_PrepDataToxAOD, SCT_RawDataToxAOD, SCT_ReadCalibChipDataTestAlg, SCT_ReadCalibDataTestAlg, SCT_RODVetoTestAlg, SCT_SensorsTestAlg, SCT_SiliconConditionsTestAlg, SCT_StripVetoTestAlg, SCT_TdaqEnabledTestAlg, SCT_TestCablingAlg, SCTEventFlagWriter, SCTRawDataProvider, SCTSiLorentzAngleTestAlg, SCTSiPropertiesTestAlg, SGInputLoader, Simulation::BeamEffectsAlg, TileHitVecToCnt, TileMuonFitter, TilePulseForTileMuonReceiver, TileRawChannelMaker, TRTDigitization, and ZDC_DigiTop.

Definition at line 68 of file AthCommonAlgorithm.h.

68 {
69 return true;
70 }

◆ makeSPvsEventNumber()

StatusCode SCTHitsNoiseMonAlg::makeSPvsEventNumber ( ) const
private

Definition at line 501 of file SCTHitsNoiseMonAlg.cxx.

501 {
502 return StatusCode::SUCCESS;
503}

◆ makeVectorOfTrackRDOIdentifiers()

StatusCode SCTHitsNoiseMonAlg::makeVectorOfTrackRDOIdentifiers ( std::array< std::unordered_set< Identifier >, SCT_Monitoring::N_WAFERS > & rdosOnTracks,
const EventContext & ctx ) const
private

Definition at line 446 of file SCTHitsNoiseMonAlg.cxx.

446 {
447 // Clear the rdosOnTracks vector
448 rdosOnTracks.fill(std::unordered_set<Identifier>());
449 SG::ReadHandle<SCT_RDO_Container> rdoContainer{m_dataObjectName, ctx};
450 if (not rdoContainer.isValid()) {
451 ATH_MSG_FATAL("Could not find the data object " << m_dataObjectName.key() << " !");
452 return StatusCode::FAILURE;
453 } else {
454 ATH_MSG_DEBUG("Data object " << m_dataObjectName.key() << " found");
455 }
456
457 SG::ReadHandle<TrackCollection> tracks{m_tracksName, ctx};
458 if (not tracks.isValid()) {
459 ATH_MSG_FATAL("No tracks for you!");
460 return StatusCode::FAILURE;
461 }
462 // Only do for events with less than some number of tracks
463 if (tracks->size() > m_maxTracks) {
464 ATH_MSG_DEBUG("The event has more than " << m_maxTracks
465 << " tracks. Don't do hits-on-track-hists");
466 return StatusCode::SUCCESS;
467 }
468 // assemble list of rdo ids associated with tracks
469 for (const Trk::Track* track : *tracks) {
470 if (track == nullptr) {
471 ATH_MSG_WARNING("no pointer to track!!!");
472 break;
473 }
474 // Get pointer to track state on surfaces
475 const Trk::TrackStates* trackStates{track->trackStateOnSurfaces()};
476 if (trackStates == nullptr) {
477 ATH_MSG_WARNING("for current track is TrackStateOnSurfaces == Null, no data will be written for this track");
478 } else {// Loop over all track states on surfaces
479 for (const Trk::TrackStateOnSurface* TSOS: *trackStates) {
480 // Get pointer to RIO of right type
481 const InDet::SiClusterOnTrack* clus{dynamic_cast<const InDet::SiClusterOnTrack*>(TSOS->measurementOnTrack())};
482 if (clus) {
483 // Get Pointer to prepRawDataObject
484 const InDet::SiCluster* RawDataClus{dynamic_cast<const InDet::SiCluster*>(clus->prepRawData())};
485 if (RawDataClus == nullptr) {
486 ATH_MSG_WARNING("SiCluster WITHOUT prepRawData!!!!");
487 break;
488 }
489 // if Cluster is in SCT ...
490 if (RawDataClus->detectorElement()->isSCT()) {
491 const std::vector<Identifier>& rdoList{RawDataClus->rdoList()};
492 rdosOnTracks[RawDataClus->detectorElement()->identifyHash()].insert(rdoList.begin(), rdoList.end());
493 }
494 }
495 }
496 }
497 }
498 return StatusCode::SUCCESS;
499}
virtual IdentifierHash identifyHash() const override final
identifier hash (inline)
virtual const InDetDD::SiDetectorElement * detectorElement() const override final
return the detector element corresponding to this PRD The pointer will be zero if the det el is not d...
SG::ReadHandleKey< TrackCollection > m_tracksName
Name of the Track collection to use.
const std::string & key() const
Return the StoreGate ID for the referenced object.
const std::vector< Identifier > & rdoList() const
return the List of rdo identifiers (pointers)
virtual const Trk::PrepRawData * prepRawData() const =0
returns the PrepRawData (also known as RIO) object to which this RIO_OnTrack is associated.
DataVector< const Trk::TrackStateOnSurface > TrackStates

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::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< Gaudi::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.

◆ 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
lineThe input string.
resultThe parsed output vector of strings.
Returns
StatusCode

Definition at line 350 of file AthMonitorAlgorithm.cxx.

350 {
351 std::string item;
352 std::stringstream ss(line);
353
354 ATH_MSG_DEBUG( "AthMonitorAlgorithm::parseList()" );
355
356 while ( std::getline(ss, item, ',') ) {
357 std::stringstream iss(item); // remove whitespace
358 iss >> item;
359 result.push_back(item);
360 }
361
362 return StatusCode::SUCCESS;
363}
static Double_t ss

◆ 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< Gaudi::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Set filter decision:

Reimplemented in AthFilterAlgorithm.

Definition at line 99 of file AthCommonAlgorithm.h.

99 {
101 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const
Set filter decision:

◆ sysExecute()

StatusCode AthCommonAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

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.

Reimplemented in AthAnalysisAlgorithm.

Definition at line 80 of file AthCommonAlgorithm.cxx.

41{
42 return BaseAlg::sysExecute (ctx);
43}

◆ sysInitialize()

StatusCode AthCommonAlgorithm< Gaudi::Algorithm >::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< Gaudi::Algorithm > >.

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

Definition at line 60 of file AthCommonAlgorithm.cxx.

71 {
73
74 if (sc.isFailure()) {
75 return sc;
76 }
77
78 ServiceHandle<ICondSvc> cs("CondSvc",name());
79 for (auto h : outputHandles()) {
80 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
81 // do this inside the loop so we don't create the CondSvc until needed
82 if ( cs.retrieve().isFailure() ) {
83 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
85 }
86 if (cs->regHandle(this,*h).isFailure()) {
88 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
89 << " with CondSvc");
90 }
91 }
92 }
93 return sc;
94}
virtual StatusCode sysInitialize() override
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::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.

◆ 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
vTrigNamesList 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 208 of file AthMonitorAlgorithm.cxx.

208 {
209
210
211 // If no triggers were given, return true.
212 if (vTrigNames.empty()) return true;
213
214
215 // Trigger: Check if this Algorithm is being run as an Express Stream job.
216 // Events are entering the express stream are chosen randomly, and by chain,
217 // Hence an additional check should be aplied to see if the chain(s)
218 // monitored here are responsible for the event being selected for
219 // the express stream.
220
221 const auto group = m_trigDecTool->getChainGroup(vTrigNames);
223 const auto passedBits = m_trigDecTool->isPassedBits(group);
224 bool expressPass = passedBits & TrigDefs::Express_passed; //bitwise AND
225 if(!expressPass) {
226 return false;
227 }
228 }
229
230 // monitor the event if any of the chains in the chain group passes the event.
231 return group->isPassed();
232
233}
Gaudi::Property< bool > m_enforceExpressTriggers

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::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 }

Member Data Documentation

◆ m_checkrate

IntegerProperty SCTHitsNoiseMonAlg::m_checkrate {this, "CheckRate", 1000}
private

CheckHists() frequency.

Definition at line 79 of file SCTHitsNoiseMonAlg.h.

79{this, "CheckRate", 1000};

◆ m_checkrecent

IntegerProperty SCTHitsNoiseMonAlg::m_checkrecent {this, "CheckRecent", 30}
private

Definition at line 80 of file SCTHitsNoiseMonAlg.h.

80{this, "CheckRecent", 30};

◆ m_clusContainerKey

SG::ReadHandleKey<InDet::SCT_ClusterContainer> SCTHitsNoiseMonAlg::m_clusContainerKey {this, "ClusterKey", "SCT_Clusters"}
private

Definition at line 91 of file SCTHitsNoiseMonAlg.h.

91{this, "ClusterKey", "SCT_Clusters"};

◆ m_ConfigurationTool

ToolHandle<ISCT_ConfigurationConditionsTool> SCTHitsNoiseMonAlg::m_ConfigurationTool
private
Initial value:
{this, "conditionsTool",
"SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool", "Tool to retrieve SCT Configuration Tool"}

Definition at line 101 of file SCTHitsNoiseMonAlg.h.

101 {this, "conditionsTool",
102 "SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool", "Tool to retrieve SCT Configuration Tool"};

◆ m_dataObjectName

SG::ReadHandleKey<SCT_RDO_Container> SCTHitsNoiseMonAlg::m_dataObjectName {this, "RDOKey", "SCT_RDOs"}
private

Data object name: for the SCT this is "SCT_RDOs".

Definition at line 95 of file SCTHitsNoiseMonAlg.h.

95{this, "RDOKey", "SCT_RDOs"};

◆ m_dataType

AthMonitorAlgorithm::DataType_t AthMonitorAlgorithm::m_dataType
protectedinherited

Instance of the DataType_t enum.

Definition at line 356 of file AthMonitorAlgorithm.h.

◆ m_dataTypeStr

Gaudi::Property<std::string> AthMonitorAlgorithm::m_dataTypeStr {this,"DataType","userDefined"}
protectedinherited

DataType string pulled from the job option and converted to enum.

Definition at line 358 of file AthMonitorAlgorithm.h.

358{this,"DataType","userDefined"};

◆ m_defaultLBDuration

Gaudi::Property<float> AthMonitorAlgorithm::m_defaultLBDuration {this,"DefaultLBDuration",60.}
protectedinherited

Default duration of one lumi block.

Definition at line 365 of file AthMonitorAlgorithm.h.

365{this,"DefaultLBDuration",60.};

◆ m_detailLevel

Gaudi::Property<int> AthMonitorAlgorithm::m_detailLevel {this,"DetailLevel",0}
protectedinherited

Sets the level of detail used in the monitoring.

Definition at line 366 of file AthMonitorAlgorithm.h.

366{this,"DetailLevel",0};

◆ m_detStore

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

Pointer to StoreGate (detector store by default).

Definition at line 393 of file AthCommonDataStore.h.

◆ m_doNegativeEndcap

BooleanProperty SCTHitsNoiseMonAlg::m_doNegativeEndcap {this, "doNegativeEndcap", true}
private

Definition at line 72 of file SCTHitsNoiseMonAlg.h.

72{this, "doNegativeEndcap", true};

◆ m_doOnline

BooleanProperty SCTHitsNoiseMonAlg::m_doOnline {this, "doOnlineMon", false}
private

Definition at line 67 of file SCTHitsNoiseMonAlg.h.

67{this, "doOnlineMon", false};

◆ m_doPositiveEndcap

BooleanProperty SCTHitsNoiseMonAlg::m_doPositiveEndcap {this, "doPositiveEndcap", true}
private

Switch on or off the hitmaps histograms.

Switch on or off the endcaps

Definition at line 71 of file SCTHitsNoiseMonAlg.h.

71{this, "doPositiveEndcap", true};

◆ m_doSpacePointBasedNoise

BooleanProperty SCTHitsNoiseMonAlg::m_doSpacePointBasedNoise {this, "doSpacePointBasedNoise", true}
private

Definition at line 75 of file SCTHitsNoiseMonAlg.h.

75{this, "doSpacePointBasedNoise", true};

◆ m_doTimeBinFilteringForNoise

BooleanProperty SCTHitsNoiseMonAlg::m_doTimeBinFilteringForNoise {this, "doTimeBinFilteringForNoise", true}
private

Add time-bin filtering to space point NO algorithm.

Definition at line 77 of file SCTHitsNoiseMonAlg.h.

77{this, "doTimeBinFilteringForNoise", true};

◆ m_doTrackBasedNoise

BooleanProperty SCTHitsNoiseMonAlg::m_doTrackBasedNoise {this, "doTrackBasedNoise", false}
private

Select the noise algorithm.

Definition at line 74 of file SCTHitsNoiseMonAlg.h.

74{this, "doTrackBasedNoise", false};

◆ m_doTrackHits

BooleanProperty SCTHitsNoiseMonAlg::m_doTrackHits {this, "doTrackHits", true}
private

Definition at line 84 of file SCTHitsNoiseMonAlg.h.

84{this, "doTrackHits", true};

◆ m_doTrigger

BooleanProperty SCTHitsNoiseMonAlg::m_doTrigger {this, "doTrigger", false}
private

Definition at line 66 of file SCTHitsNoiseMonAlg.h.

66{this, "doTrigger", false};

◆ m_DQFilterTools

ToolHandleArray<IDQFilterTool> AthMonitorAlgorithm::m_DQFilterTools {this,"FilterTools",{}}
protectedinherited

Array of Data Quality filter tools.

Definition at line 346 of file AthMonitorAlgorithm.h.

346{this,"FilterTools",{}};

◆ m_dummy

const ToolHandle<GenericMonitoringTool> AthMonitorAlgorithm::m_dummy
privateinherited

Definition at line 374 of file AthMonitorAlgorithm.h.

◆ 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.

377 {this,
378 "EnforceExpressTriggers", false,
379 "Requires that matched triggers made the event enter the express stream"};

◆ m_environment

AthMonitorAlgorithm::Environment_t AthMonitorAlgorithm::m_environment
protectedinherited

Instance of the Environment_t enum.

Definition at line 355 of file AthMonitorAlgorithm.h.

◆ 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.

357{this,"Environment","user"};

◆ m_EventInfoKey

SG::ReadHandleKey<xAOD::EventInfo> AthMonitorAlgorithm::m_EventInfoKey {this,"EventInfoKey","EventInfo"}
protectedinherited

Key for retrieving EventInfo from StoreGate.

Definition at line 367 of file AthMonitorAlgorithm.h.

367{this,"EventInfoKey","EventInfo"};

◆ m_events_lb

std::atomic<int> SCTHitsNoiseMonAlg::m_events_lb {0}
mutableprivate

Definition at line 51 of file SCTHitsNoiseMonAlg.h.

51{0};

◆ m_eventsTrigger_lb

std::atomic<int> SCTHitsNoiseMonAlg::m_eventsTrigger_lb {0}
mutableprivate

Definition at line 52 of file SCTHitsNoiseMonAlg.h.

52{0};

◆ m_evtsbins

IntegerProperty SCTHitsNoiseMonAlg::m_evtsbins {this, "EvtsBins", 5000}
private

ChechHists() frequency.

Definition at line 82 of file SCTHitsNoiseMonAlg.h.

82{this, "EvtsBins", 5000};

◆ m_evtStore

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

Pointer to StoreGate (event store by default).

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 108 of file AthCommonAlgorithm.h.

◆ m_fileKey

Gaudi::Property<std::string> AthMonitorAlgorithm::m_fileKey {this,"FileKey",""}
protectedinherited

Internal Athena name for file.

Definition at line 363 of file AthMonitorAlgorithm.h.

363{this,"FileKey",""};

◆ m_lbDurationDataKey

SG::ReadCondHandleKey<LBDurationCondData> AthMonitorAlgorithm::m_lbDurationDataKey {this,"LBDurationCondDataKey","LBDurationCondData","SG Key of LBDurationCondData object"}
protectedinherited

Definition at line 350 of file AthMonitorAlgorithm.h.

351{this,"LBDurationCondDataKey","LBDurationCondData","SG Key of LBDurationCondData object"};

◆ m_localSummary

IntegerProperty SCTHitsNoiseMonAlg::m_localSummary {this, "localSummary", 0}
private

Determines whether a local summary is written.

Definition at line 87 of file SCTHitsNoiseMonAlg.h.

87{this, "localSummary", 0};

◆ m_lumiDataKey

SG::ReadCondHandleKey<LuminosityCondData> AthMonitorAlgorithm::m_lumiDataKey {this,"LuminosityCondDataKey","LuminosityCondData","SG Key of LuminosityCondData object"}
protectedinherited

Definition at line 348 of file AthMonitorAlgorithm.h.

349{this,"LuminosityCondDataKey","LuminosityCondData","SG Key of LuminosityCondData object"};

◆ m_maxTracks

UnsignedIntegerProperty SCTHitsNoiseMonAlg::m_maxTracks {this, "MaxTracks", 1000}
private

Definition at line 85 of file SCTHitsNoiseMonAlg.h.

85{this, "MaxTracks", 1000};

◆ m_name

std::string AthMonitorAlgorithm::m_name
privateinherited

Definition at line 371 of file AthMonitorAlgorithm.h.

◆ m_nHits_buf

std::vector<int> SCTHitsNoiseMonAlg::m_nHits_buf {}
private

Definition at line 57 of file SCTHitsNoiseMonAlg.h.

57{};

◆ m_nHits_pos

std::atomic<int> SCTHitsNoiseMonAlg::m_nHits_pos {0}
mutableprivate

Definition at line 58 of file SCTHitsNoiseMonAlg.h.

58{0};

◆ m_nmaxHits_buf

std::vector<int> SCTHitsNoiseMonAlg::m_nmaxHits_buf {}
private

Definition at line 59 of file SCTHitsNoiseMonAlg.h.

59{};

◆ m_nmaxModule_buf

std::vector<Identifier> SCTHitsNoiseMonAlg::m_nmaxModule_buf {}
private

Definition at line 60 of file SCTHitsNoiseMonAlg.h.

60{};

◆ m_nminHits_buf

std::vector<int> SCTHitsNoiseMonAlg::m_nminHits_buf {}
private

Definition at line 61 of file SCTHitsNoiseMonAlg.h.

61{};

◆ m_NOTriggerItem

StringProperty SCTHitsNoiseMonAlg::m_NOTriggerItem {this, "NOTrigger", "L1_RD0_EMPTY"}
private

Name of the L1 Type to use for filling the extra NO histograms.

Definition at line 65 of file SCTHitsNoiseMonAlg.h.

65{this, "NOTrigger", "L1_RD0_EMPTY"};

◆ m_nSP_buf

std::vector<int> SCTHitsNoiseMonAlg::m_nSP_buf {}
private

Definition at line 55 of file SCTHitsNoiseMonAlg.h.

55{};

◆ m_nSP_pos

std::atomic<int> SCTHitsNoiseMonAlg::m_nSP_pos {0}
mutableprivate

Definition at line 56 of file SCTHitsNoiseMonAlg.h.

56{0};

◆ m_numberOfEvents

std::atomic<int> SCTHitsNoiseMonAlg::m_numberOfEvents {0}
mutableprivate

Definition at line 43 of file SCTHitsNoiseMonAlg.h.

43{0};

◆ m_numberOfEventsRecent

std::atomic<int> SCTHitsNoiseMonAlg::m_numberOfEventsRecent {0}
mutableprivate

Definition at line 47 of file SCTHitsNoiseMonAlg.h.

47{0};

◆ m_numberOfEventsTrigger

std::atomic<int> SCTHitsNoiseMonAlg::m_numberOfEventsTrigger {0}
mutableprivate

Definition at line 45 of file SCTHitsNoiseMonAlg.h.

45{0};

◆ m_pSCTHelper

const SCT_ID* SCTHitsNoiseMonAlg::m_pSCTHelper {nullptr}
private

SCT Helper class.

Definition at line 108 of file SCTHitsNoiseMonAlg.h.

108{nullptr};

◆ m_SCTDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> SCTHitsNoiseMonAlg::m_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
private

Definition at line 97 of file SCTHitsNoiseMonAlg.h.

97{this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"};

◆ m_SCTSPContainerName

SG::ReadHandleKey<SpacePointContainer> SCTHitsNoiseMonAlg::m_SCTSPContainerName {this, "SpacePointKey", "SCT_SpacePoints"}
private

Definition at line 93 of file SCTHitsNoiseMonAlg.h.

93{this, "SpacePointKey", "SCT_SpacePoints"};

◆ m_skipEvents

std::atomic<int> SCTHitsNoiseMonAlg::m_skipEvents {0}
mutableprivate

Definition at line 49 of file SCTHitsNoiseMonAlg.h.

49{0};

◆ m_toolLookupMap

std::unordered_map<std::string, size_t> AthMonitorAlgorithm::m_toolLookupMap
privateinherited

Definition at line 372 of file AthMonitorAlgorithm.h.

◆ m_tools

ToolHandleArray<GenericMonitoringTool> AthMonitorAlgorithm::m_tools {this,"GMTools",{}}
protectedinherited

Array of Generic Monitoring Tools.

Definition at line 341 of file AthMonitorAlgorithm.h.

341{this,"GMTools",{}};

◆ m_tracksName

SG::ReadHandleKey<TrackCollection> SCTHitsNoiseMonAlg::m_tracksName {this, "tracksName", "CombinedInDetTracks"}
private

Name of the Track collection to use.

Definition at line 90 of file SCTHitsNoiseMonAlg.h.

90{this, "tracksName", "CombinedInDetTracks"};

◆ m_trigDecTool

PublicToolHandle<Trig::TrigDecisionTool> AthMonitorAlgorithm::m_trigDecTool
protectedinherited

Tool to tell whether a specific trigger is passed.

Definition at line 345 of file AthMonitorAlgorithm.h.

◆ 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.

360{this,"TriggerChain",""};

◆ m_trigLiveFractionDataKey

SG::ReadCondHandleKey<TrigLiveFractionCondData> AthMonitorAlgorithm::m_trigLiveFractionDataKey {this,"TrigLiveFractionCondDataKey","TrigLiveFractionCondData", "SG Key of TrigLiveFractionCondData object"}
protectedinherited

Definition at line 352 of file AthMonitorAlgorithm.h.

353{this,"TrigLiveFractionCondDataKey","TrigLiveFractionCondData", "SG Key of TrigLiveFractionCondData object"};

◆ m_useLumi

Gaudi::Property<bool> AthMonitorAlgorithm::m_useLumi {this,"EnableLumi",false}
protectedinherited

Allows use of various luminosity functions.

Definition at line 364 of file AthMonitorAlgorithm.h.

364{this,"EnableLumi",false};

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.

◆ m_vTrigChainNames

std::vector<std::string> AthMonitorAlgorithm::m_vTrigChainNames
protectedinherited

Vector of trigger chain names parsed from trigger chain string.

Definition at line 361 of file AthMonitorAlgorithm.h.


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