 |
ATLAS Offline Software
|
#include <tauMonitorAlgorithm.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...
|
| |
|
| | tauMonitorAlgorithm (const std::string &name, ISvcLocator *pSvcLocator) |
| |
| virtual | ~tauMonitorAlgorithm () |
| |
| virtual StatusCode | initialize () override |
| | initialize More...
|
| |
| virtual StatusCode | fillHistograms (const EventContext &ctx) const override |
| | adds event to the monitoring histograms More...
|
| |
| virtual StatusCode | execute (const EventContext &ctx) const override |
| | Applies filters and trigger requirements. More...
|
| |
| void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &&variables) const |
| | Fills a vector of variables to a group by reference. More...
|
| |
| void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, const std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &variables) const |
| | Fills a vector of variables to a group by reference. More...
|
| |
| template<typename... T> |
| void | fill (const ToolHandle< GenericMonitoringTool > &groupHandle, T &&... variables) const |
| | Fills a variadic list of variables to a group by reference. More...
|
| |
| void | fill (const std::string &groupName, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &&variables) const |
| | Fills a vector of variables to a group by name. More...
|
| |
| void | fill (const std::string &groupName, const std::vector< std::reference_wrapper< Monitored::IMonitoredVariable >> &variables) const |
| | Fills a vector of variables to a group by name. More...
|
| |
| template<typename... T> |
| void | fill (const std::string &groupName, T &&... variables) const |
| | Fills a variadic list of variables to a group by name. More...
|
| |
| Environment_t | environment () const |
| | Accessor functions for the environment. More...
|
| |
| Environment_t | envStringToEnum (const std::string &str) const |
| | Convert the environment string from the python configuration to an enum object. More...
|
| |
| DataType_t | dataType () const |
| | Accessor functions for the data type. More...
|
| |
| DataType_t | dataTypeStringToEnum (const std::string &str) const |
| | Convert the data type string from the python configuration to an enum object. More...
|
| |
| const ToolHandle< GenericMonitoringTool > & | getGroup (const std::string &name) const |
| | Get a specific monitoring tool from the tool handle array. More...
|
| |
| const ToolHandle< Trig::TrigDecisionTool > & | getTrigDecisionTool () const |
| | Get the trigger decision tool member. More...
|
| |
| bool | trigChainsArePassed (const std::vector< std::string > &vTrigNames) const |
| | Check whether triggers are passed. More...
|
| |
| SG::ReadHandle< xAOD::EventInfo > | GetEventInfo (const EventContext &) const |
| | Return a ReadHandle for an EventInfo object (get run/event numbers, etc.) More...
|
| |
| virtual float | lbAverageInteractionsPerCrossing (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the average mu, i.e. More...
|
| |
| virtual float | lbInteractionsPerCrossing (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate instantaneous number of interactions, i.e. More...
|
| |
| virtual float | lbAverageLuminosity (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate average luminosity (in ub-1 s-1 => 10^30 cm-2 s-1). More...
|
| |
| virtual float | lbLuminosityPerBCID (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the instantaneous luminosity per bunch crossing. More...
|
| |
| virtual double | lbDuration (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the duration of the luminosity block (in seconds) More...
|
| |
| virtual float | lbAverageLivefraction (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the average luminosity livefraction. More...
|
| |
| virtual float | livefractionPerBCID (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the live fraction per bunch crossing ID. More...
|
| |
| virtual double | lbLumiWeight (const EventContext &ctx=Gaudi::Hive::currentContext()) const |
| | Calculate the average integrated luminosity multiplied by the live fraction. More...
|
| |
| virtual StatusCode | parseList (const std::string &line, std::vector< std::string > &result) const |
| | Parse a string into a vector. More...
|
| |
| virtual StatusCode | sysInitialize () override |
| | Override sysInitialize. More...
|
| |
| virtual bool | isClonable () const override |
| | Specify if the algorithm is clonable. More...
|
| |
| virtual unsigned int | cardinality () const override |
| | Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant. More...
|
| |
| virtual StatusCode | sysExecute (const EventContext &ctx) override |
| | Execute an algorithm. More...
|
| |
| virtual const DataObjIDColl & | extraOutputDeps () const override |
| | Return the list of extra output dependencies. More...
|
| |
| virtual bool | filterPassed (const EventContext &ctx) const |
| |
| virtual void | setFilterPassed (bool state, const EventContext &ctx) const |
| |
| ServiceHandle< StoreGateSvc > & | evtStore () |
| | The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc. More...
|
| |
| const ServiceHandle< StoreGateSvc > & | evtStore () const |
| | The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc. More...
|
| |
| const ServiceHandle< StoreGateSvc > & | detStore () const |
| | The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc. More...
|
| |
| virtual StatusCode | sysStart () override |
| | Handle START transition. More...
|
| |
| virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| | Return this algorithm's input handles. More...
|
| |
| virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| | Return this algorithm's output handles. More...
|
| |
| Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T, 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 |
| |
|
| ToolHandleArray< GenericMonitoringTool > | m_tools {this,"GMTools",{}} |
| | Array of Generic Monitoring Tools. More...
|
| |
| PublicToolHandle< Trig::TrigDecisionTool > | m_trigDecTool {this, "TrigDecisionTool",""} |
| | Tool to tell whether a specific trigger is passed. More...
|
| |
| ToolHandleArray< IDQFilterTool > | m_DQFilterTools {this,"FilterTools",{}} |
| | Array of Data Quality filter tools. More...
|
| |
| SG::ReadCondHandleKey< LuminosityCondData > | m_lumiDataKey {this,"LuminosityCondDataKey","LuminosityCondData","SG Key of LuminosityCondData object"} |
| |
| SG::ReadCondHandleKey< LBDurationCondData > | m_lbDurationDataKey {this,"LBDurationCondDataKey","LBDurationCondData","SG Key of LBDurationCondData object"} |
| |
| SG::ReadCondHandleKey< TrigLiveFractionCondData > | m_trigLiveFractionDataKey {this,"TrigLiveFractionCondDataKey","TrigLiveFractionCondData", "SG Key of TrigLiveFractionCondData object"} |
| |
| AthMonitorAlgorithm::Environment_t | m_environment |
| | Instance of the Environment_t enum. More...
|
| |
| AthMonitorAlgorithm::DataType_t | m_dataType |
| | Instance of the DataType_t enum. More...
|
| |
| Gaudi::Property< std::string > | m_environmentStr {this,"Environment","user"} |
| | Environment string pulled from the job option and converted to enum. More...
|
| |
| Gaudi::Property< std::string > | m_dataTypeStr {this,"DataType","userDefined"} |
| | DataType string pulled from the job option and converted to enum. More...
|
| |
| Gaudi::Property< std::string > | m_triggerChainString {this,"TriggerChain",""} |
| | Trigger chain string pulled from the job option and parsed into a vector. More...
|
| |
| std::vector< std::string > | m_vTrigChainNames |
| | Vector of trigger chain names parsed from trigger chain string. More...
|
| |
| Gaudi::Property< std::string > | m_fileKey {this,"FileKey",""} |
| | Internal Athena name for file. More...
|
| |
| Gaudi::Property< bool > | m_useLumi {this,"EnableLumi",false} |
| | Allows use of various luminosity functions. More...
|
| |
| Gaudi::Property< float > | m_defaultLBDuration {this,"DefaultLBDuration",60.} |
| | Default duration of one lumi block. More...
|
| |
| Gaudi::Property< int > | m_detailLevel {this,"DetailLevel",0} |
| | Sets the level of detail used in the monitoring. More...
|
| |
| SG::ReadHandleKey< xAOD::EventInfo > | m_EventInfoKey {this,"EventInfoKey","EventInfo"} |
| | Key for retrieving EventInfo from StoreGate. More...
|
| |
|
| 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...
|
| |
|
| std::vector< int > | m_abGroups1 |
| |
| std::vector< std::vector< int > > | m_abGroups2 |
| |
| std::map< std::string, int > | m_cGroups1 |
| |
| std::map< std::string, std::map< std::string, int > > | m_cGroups2 |
| |
| SG::ReadHandleKey< xAOD::TauJetContainer > | m_TauContainerKey {this, "TauRecContainer", "TauJets"} |
| |
| SG::ReadDecorHandleKey< xAOD::TauJetContainer > | m_offlineGNTauScoreDecorKey {this, "OfflineGNTauScoreDecorKey", "GNTauScore_v0prune", "Offline GNTau Score decoration key"} |
| |
| SG::ReadDecorHandleKey< xAOD::TauJetContainer > | m_offlineGNTauTransScoreDecorKey {this, "OfflineGNTauTransScoreDecorKey", "GNTauScoreSigTrans_v0prune", "Offline GNTau Trans Score decoration key"} |
| |
| SG::ReadDecorHandleKey< xAOD::TauJetContainer > | m_offlineGNTauLooseWPDecorKey {this, "OfflineGNTauLooseWPDecorKey", "GNTauL_v0prune", "Offline GNTau Loose WP decoration key"} |
| |
| SG::ReadDecorHandleKey< xAOD::TauJetContainer > | m_offlineGNTauMediumWPDecorKey {this, "OfflineGNTauMediumWPDecorKey", "GNTauM_v0prune", "Offline GNTau Medium WP decoration key"} |
| |
| SG::ReadDecorHandleKey< xAOD::TauJetContainer > | m_offlineGNTauTightWPDecorKey {this, "OfflineGNTauTightWPDecorKey", "GNTauT_v0prune", "Offline GNTau Tight WP decoration key"} |
| |
| Gaudi::Property< float > | m_etaMin {this, "etaMin", -1.} |
| |
| Gaudi::Property< float > | m_etaMax {this, "etaMax", 3.0} |
| |
| Gaudi::Property< std::string > | m_kinGroupName {this, "kinGroupName", "tauMonKinGroupBA"} |
| |
| 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 18 of file tauMonitorAlgorithm.h.
◆ MonVarVec_t
◆ StoreGateSvc_t
◆ DataType_t
Specifies what type of input data is being monitored.
An enumeration of the different types of data the monitoring application may be running over. This can be used to select which histograms to produce, e.g. to prevent the production of colliding-beam histograms when running on cosmic-ray data. Strings of the same names may be given as jobOptions.
| Enumerator |
|---|
| userDefined | |
| monteCarlo | |
| collisions | |
| cosmics | |
| heavyIonCollisions | |
Definition at line 191 of file AthMonitorAlgorithm.h.
◆ Environment_t
Specifies the processing environment.
The running environment may be used to select which histograms are produced, and where they are located in the output. For example, the output paths of the histograms are different for the "user", "online" and the various offline flags. Strings of the same names may be given as jobOptions.
| Enumerator |
|---|
| user | |
| online | |
| tier0 | |
| tier0Raw | |
| tier0ESD | |
| AOD | |
| altprod | |
Definition at line 172 of file AthMonitorAlgorithm.h.
◆ tauMonitorAlgorithm()
| tauMonitorAlgorithm::tauMonitorAlgorithm |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
◆ ~tauMonitorAlgorithm()
| tauMonitorAlgorithm::~tauMonitorAlgorithm |
( |
| ) |
|
|
virtual |
◆ 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.
◆ dataType()
| DataType_t AthMonitorAlgorithm::dataType |
( |
| ) |
const |
|
inlineinherited |
Accessor functions for the data type.
- Returns
- the current value of the class's DataType_t instance.
Definition at line 221 of file AthMonitorAlgorithm.h.
◆ dataTypeStringToEnum()
Convert the data type string from the python configuration to an enum object.
- Returns
- a value in the DataType_t enumeration which matches the input string.
Definition at line 140 of file AthMonitorAlgorithm.cxx.
142 std::string lowerCaseStr =
str;
146 if( lowerCaseStr ==
"userdefined" ) {
148 }
else if( lowerCaseStr ==
"montecarlo" ) {
150 }
else if( lowerCaseStr ==
"collisions" ) {
152 }
else if( lowerCaseStr ==
"cosmics" ) {
154 }
else if( lowerCaseStr ==
"heavyioncollisions" ) {
157 ATH_MSG_WARNING(
"AthMonitorAlgorithm::dataTypeStringToEnum(): Unknown data type "
158 <<
str<<
", returning userDefined.");
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
| name | Name of the property. |
| hndl | Object holding the property value. |
| doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
| name | Name of the property. |
| hndl | Object holding the property value. |
| doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
| name | Name of the property. |
| property | Object holding the property value. |
| doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey. It just forwards to the base class version of declareProperty.
Definition at line 333 of file AthCommonDataStore.h.
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
| name | Name of the property. |
| property | Object holding the property value. |
| doc | Documentation string for the property. |
This dispatches to either the generic declareProperty or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ environment()
Accessor functions for the environment.
- Returns
- the current value of the class's Environment_t instance.
Definition at line 205 of file AthMonitorAlgorithm.h.
◆ envStringToEnum()
Convert the environment string from the python configuration to an enum object.
- Returns
- a value in the Environment_t enumeration which matches the input string.
Definition at line 112 of file AthMonitorAlgorithm.cxx.
114 std::string lowerCaseStr =
str;
118 if( lowerCaseStr ==
"user" ) {
120 }
else if( lowerCaseStr ==
"online" ) {
122 }
else if( lowerCaseStr ==
"tier0" ) {
124 }
else if( lowerCaseStr ==
"tier0raw" ) {
126 }
else if( lowerCaseStr ==
"tier0esd" ) {
128 }
else if( lowerCaseStr ==
"aod" ) {
130 }
else if( lowerCaseStr ==
"altprod" ) {
133 ATH_MSG_WARNING(
"AthMonitorAlgorithm::envStringToEnum(): Unknown environment "
134 <<
str<<
", returning user.");
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ execute()
| StatusCode AthMonitorAlgorithm::execute |
( |
const EventContext & |
ctx | ) |
const |
|
overridevirtualinherited |
Applies filters and trigger requirements.
Then, calls fillHistograms().
- Parameters
-
| ctx | event context for reentrant Athena call |
- Returns
- StatusCode
Definition at line 73 of file AthMonitorAlgorithm.cxx.
78 if (!filterItr->accept()) {
80 return StatusCode::SUCCESS;
87 return StatusCode::SUCCESS;
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ extraOutputDeps()
Return the list of extra output dependencies.
This list is extended to include symlinks implied by inheritance relations.
Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.
◆ fillHistograms()
| StatusCode tauMonitorAlgorithm::fillHistograms |
( |
const EventContext & |
ctx | ) |
const |
|
overridevirtual |
adds event to the monitoring histograms
User will overwrite this function. Histogram booking is no longer done in C++. This function is called in execute once the filters are all passed.
- Parameters
-
| ctx | forwarded from execute |
- Returns
- StatusCode
Implements AthMonitorAlgorithm.
Definition at line 44 of file tauMonitorAlgorithm.cxx.
48 if (!taus.isValid()) {
49 ATH_MSG_ERROR(
"evtStore() does not contain tau Collection with name "
51 return StatusCode::FAILURE;
55 std::unique_ptr<xAOD::TauJetContainer> shallowTaus(shallowCopy.first);
56 std::unique_ptr<xAOD::ShallowAuxContainer> shallowTausAux(shallowCopy.second);
58 const int lowerEtThreshold = 15;
59 const int higherEtThreshold = 75;
67 std::string tauid =
"";
76 auto panModeEt15Loose =
78 auto panModeSubstructure =
89 auto JetScoreSigTrans =
97 auto NumTracksEt15Loose =
101 auto nHighPtTauCandidates =
104 auto nClustersEt15Loose =
193 auto trackZ0SinthetaTJVA =
196 auto trackZ0sinthetaSigTJVA =
202 auto trackPtRatioSeedJet =
205 auto trackNInnermostPixHits =
209 auto trackeProbabilityHT =
211 auto trackeProbabilityNN =
213 auto trackeProbabilityHTorNN =
224 auto clusterSecondLambda =
226 auto clusterCenterLambda =
228 auto clusterFirstEngDens =
231 auto clustersMeanCenterLambda =
233 auto clustersMeanFirstEngDens =
235 auto clustersMeanEMProbability =
237 auto clustersMeanSecondLambda =
239 auto clustersMeanPresamplerFrac =
241 auto clustersPFOEngRelDiff =
248 for (
const auto tau : *shallowTaus) {
250 if (!passThinningAcc.withDefault(*tau,
true))
continue;
254 tauEt = tau->pt() /
GeV;
255 tauCharge = tau->charge();
256 NumTracks = tau->nTracks();
268 jetSeedEta = tau->etaJetSeed();
269 jetSeedPhi = tau->phiJetSeed();
270 jetSeedPt = tau->ptJetSeed() /
GeV;
280 if( trans_score.isAvailable()) {
284 JetScore =
score.isAvailable() ?
score(*tau) : -1234;
286 JetScoreSigTrans = trans_score(*tau);
289 tauLoose = tauid_loose.isAvailable() ? tauid_loose(*tau) : -1234;
292 tauMedium = tauid_medium.isAvailable() ? tauid_medium(*tau) : -1234;
295 tauTight = tauid_tight.isAvailable() ? tauid_tight(*tau) : -1234;
313 panEta = tau->etaPanTauCellBased();
314 panPhi = tau->phiPanTauCellBased();
315 panPt = tau->ptPanTauCellBased() /
GeV;
320 EMFrac = EMFracFixedAcc(*tau);
324 nNeutPFO = tau->nProtoNeutralPFOs();
325 nShot = tau->nShotPFOs();
327 int panModeDummy = -1;
328 int panModeSubstructureDummy = -1;
332 if( tauEt > lowerEtThreshold) {
336 if (tauEt > higherEtThreshold) {
337 nHighPtTauCandidates += 1;
342 tauEt > lowerEtThreshold && tauLoose) {
344 tauPhiEt15Loose = tau->phi();
345 tauEtaEt15Loose = tau->eta();
346 tauEtEt15Loose = tau->pt() /
GeV;
349 NumTracksEt15Loose = tau->nTracks();
353 panModeEt15Loose = panModeDummy;
354 fill(
tool, tauPhiEt15Loose, tauEtaEt15Loose,
355 nClustersEt15Loose, NumTracksEt15Loose, tauEtEt15Loose,
360 tauPhiLoose = tau->phi();
361 tauEtaLoose = tau->eta();
362 tauEtLoose = tau->pt() /
GeV;
363 NumTracksLoose = tau->nTracks();
365 fill(
tool, tauPhiLoose, tauEtaLoose, NumTracksLoose,
370 tauPhiMedium = tau->phi();
371 tauEtaMedium = tau->eta();
372 tauEtMedium = tau->pt() /
GeV;
373 NumTracksMedium = tau->nTracks();
375 fill(
tool, tauPhiMedium, tauEtaMedium, NumTracksMedium,
380 tauPhiTight = tau->phi();
381 tauEtaTight = tau->eta();
382 tauEtTight = tau->pt() /
GeV;
383 NumTracksTight = tau->nTracks();
385 fill(
tool, tauPhiTight, tauEtaTight, NumTracksTight,
391 if (tau->nTracks() != 0) {
399 if (d0SigTJVAAcc.isAvailable(*tau->track(0))) {
407 if (z0sinthetaSigTJVAAcc.isAvailable(*tau->track(0))) {
467 phiTrack = perigee.parameters()[
Trk::phi];
468 etaTrack = perigee.eta();
469 ptTrack = perigee.pT() /
GeV;
485 double tauSeedPt = tau->ptJetSeed();
486 double logTauSeedPt =
std::log(tauSeedPt);
487 trackLogSeedJetPt = logTauSeedPt;
500 trackAcc(
"trackLinks");
501 if (!trackAcc(*
track)[0]) {
508 trackZ0SinthetaTJVA =
track->z0sinThetaTJVA(*tau);
509 trackD0SigTJVA = 999.;
510 trackZ0sinthetaSigTJVA = 999.;
512 float rConvII = 999.;
514 if (z0sinthetaTJVAAcc.isAvailable(*
track)) {
516 trackZ0SinthetaTJVA =
track->z0sinthetaTJVA();
517 trackD0SigTJVA =
track->d0SigTJVA();
518 trackZ0sinthetaSigTJVA =
track->z0sinthetaSigTJVA();
519 rConv =
track->rConv();
520 rConvII =
track->rConvII();
526 uint8_t nInnermostPixelLayerHits = 0;
550 float eProbabilityNN = eProbabilityNNAcc.withDefault(*trackParticle, -1);
553 trackeProbabilityHTorNN =
560 trackd0TJVA = std::tanh(
d0TJVA / 10.);
561 trackCharge = trackParticle->
charge();
562 trackqOverP =
qOverP * 1000.;
564 trackTanhRConvII = std::tanh(rConvII / 500.0);
565 trackPtRatioSeedJet =
trackPt / tauSeedPt;
566 trackNInnermostPixHits = nInnermostPixelLayerHits;
572 trackD0SigTJVA, trackZ0sinthetaSigTJVA, trackCharge, trackqOverP,
573 trackLogRConv, trackTanhRConvII, trackPtRatioSeedJet,
574 trackdRJetSeedAxis, trackNInnermostPixHits,
577 trackeProbabilityHT, trackeProbabilityNN, trackeProbabilityHTorNN);
579 if (acc_trackScoreCharged.isAvailable(*
track)) {
580 float chargedScore = acc_trackScoreCharged(*
track);
581 float isolationScore = acc_trackScoreIso(*
track);
582 float conversionScore = acc_trackScoreConv(*
track);
583 float fakeScore = 1. - chargedScore - isolationScore - conversionScore;
588 trackIdScoreCharged = chargedScore;
589 trackIdScoreIso = isolationScore;
590 trackIdScoreConv = conversionScore;
591 trackIdScoreFake = fakeScore;
593 fill(
tool, trackIdScoreCharged, trackIdScoreIso, trackIdScoreConv,
599 std::vector<const xAOD::IParticle *> particleList = tau->clusters();
600 std::vector<xAOD::CaloVertexedTopoCluster>
clusters;
602 if (tau->vertexLink().isValid())
609 clusters.emplace_back(*cluster, xAOD::CaloCluster::State::CALIBRATED,
612 clusters.emplace_back(*cluster, xAOD::CaloCluster::State::CALIBRATED);
619 return lhs.
p4().Et() > rhs.p4().Et();
629 for (
const auto& vertexedCluster :
clusters) {
632 clusterLogEt = std::log10(vertexedCluster.p4().Et());
633 clusterEta = vertexedCluster.eta();
634 clusterPhi = vertexedCluster.phi();
637 clusterSecondR = std::log10(moment + 0.1);
641 clusterSecondLambda = std::log10(moment + 0.1);
645 clusterCenterLambda = std::log10(moment + 1
e-6);
650 moment = std::log10(std::abs(moment));
651 clusterFirstEngDens = moment;
655 clusterEMproba = moment;
657 fill(
tool, clusterLogEt, clusterEta, clusterPhi, clusterSecondR,
658 clusterSecondLambda, clusterCenterLambda, clusterFirstEngDens,
663 float avariable = 0.;
667 clustersMeanCenterLambda = avariable;
672 clustersMeanFirstEngDens = avariable;
677 clustersMeanEMProbability = avariable;
682 clustersMeanSecondLambda = avariable;
687 clustersMeanPresamplerFrac = avariable;
691 clustersPFOEngRelDiff = avariable;
693 fill(
tool, clustersMeanCenterLambda, clustersMeanFirstEngDens,
694 clustersMeanEMProbability, clustersMeanSecondLambda,
695 clustersMeanPresamplerFrac, clustersPFOEngRelDiff);
697 for (
unsigned int np = 0;
np < nNeutPFO;
np++) {
703 if (tauEt > lowerEtThreshold) {
704 tauPhiEt15 = tau->phi();
705 tauEtaEt15 = tau->eta();
712 muonVeto, tauLoose, tauMedium, tauTight, PSSFrac, EMFrac, EMFracTrk, nNeutPFO,
713 nShot, NumTracks, nClusters, jetSeedEta, jetSeedPhi, jetSeedPt,
717 panModeSubstructureDummy);
718 panModeSubstructure = panModeSubstructureDummy;
727 fill(
tool, nHighPtTauCandidates, nTauCandidates, nHighPtTaus);
729 return StatusCode::SUCCESS;
◆ filterPassed()
◆ GetEventInfo()
Return a ReadHandle for an EventInfo object (get run/event numbers, etc.)
- Parameters
-
| ctx | EventContext for the event |
- Returns
- a SG::ReadHandle<xAOD::EventInfo>
Definition at line 107 of file AthMonitorAlgorithm.cxx.
◆ getGroup()
Get a specific monitoring tool from the tool handle array.
Finds a specific GenericMonitoringTool instance from the list of monitoring tools (a ToolHandleArray). Throws a FATAL warning if the object found is empty.
- Parameters
-
| name | string name of the desired tool |
- Returns
- reference to the desired monitoring tool
Definition at line 164 of file AthMonitorAlgorithm.cxx.
176 if (!isInitialized()) {
178 "It seems that the AthMonitorAlgorithm::initialize was not called "
179 "in derived class initialize method");
183 [](
const std::string&
s,
auto h) { return s +
"," + h.first; });
184 ATH_MSG_FATAL(
"The tool " <<
name <<
" could not be found in the tool array of the "
185 <<
"monitoring algorithm " <<
m_name <<
". This probably reflects a discrepancy between "
186 <<
"your python configuration and c++ filling code. Note: your available groups are {"
187 << available <<
"}.");
◆ getTrigDecisionTool()
Get the trigger decision tool member.
The trigger decision tool is used to check whether a specific trigger is passed by an event.
- Returns
- m_trigDecTool
Definition at line 194 of file AthMonitorAlgorithm.cxx.
◆ initialize()
| StatusCode tauMonitorAlgorithm::initialize |
( |
| ) |
|
|
overridevirtual |
◆ 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 341 of file AthMonitorAlgorithm.cxx.
343 std::stringstream
ss(
line);
347 while ( std::getline(
ss,
item,
',') ) {
348 std::stringstream iss(
item);
353 return StatusCode::SUCCESS;
◆ renounce()
◆ renounceArray()
◆ setFilterPassed()
◆ sysExecute()
Execute an algorithm.
We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.
Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.
◆ sysInitialize()
Override sysInitialize.
Override sysInitialize from the base class.
Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc
Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc
Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.
Reimplemented in InputMakerBase, and HypoBase.
Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.
110 if (
sc.isFailure()) {
118 if ( cs.retrieve().isFailure() ) {
120 return StatusCode::SUCCESS;
122 if (cs->regHandle(
this,*
h).isFailure()) {
123 sc = StatusCode::FAILURE;
124 ATH_MSG_ERROR(
"unable to register WriteCondHandle " <<
h->fullKey()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ trigChainsArePassed()
| bool AthMonitorAlgorithm::trigChainsArePassed |
( |
const std::vector< std::string > & |
vTrigNames | ) |
const |
|
inherited |
Check whether triggers are passed.
For the event, use the trigger decision tool to check that at least one of the triggers listed in the supplied vector is passed.
- Parameters
-
| vTrigNames | List of trigger names. |
- Returns
- If empty input, default to true. If at least one trigger is specified, returns whether at least one trigger was passed.
Definition at line 199 of file AthMonitorAlgorithm.cxx.
203 if (vTrigNames.empty())
return true;
215 bool expressPass = passedBits & TrigDefs::Express_passed;
222 return group->isPassed();
◆ updateVHKA()
◆ cfg
| tauMonitorAlgorithm.cfg = MainServicesCfg(flags) |
◆ exampleMonitorAcc
◆ file
| string tauMonitorAlgorithm.file = 'data16_13TeV.00311321.physics_Main.recon.AOD.r9264/AOD.11038520._000001.pool.root.1' |
◆ Files
| tauMonitorAlgorithm.Files |
◆ flags
| tauMonitorAlgorithm.flags = initConfigFlags() |
◆ HISTFileName
| tauMonitorAlgorithm.HISTFileName |
◆ isMC
◆ m_abGroups1
| std::vector<int> tauMonitorAlgorithm::m_abGroups1 |
|
private |
◆ m_abGroups2
| std::vector<std::vector<int> > tauMonitorAlgorithm::m_abGroups2 |
|
private |
◆ m_cGroups1
| std::map<std::string,int> tauMonitorAlgorithm::m_cGroups1 |
|
private |
◆ m_cGroups2
| std::map<std::string,std::map<std::string,int> > tauMonitorAlgorithm::m_cGroups2 |
|
private |
◆ m_dataType
◆ m_dataTypeStr
| Gaudi::Property<std::string> AthMonitorAlgorithm::m_dataTypeStr {this,"DataType","userDefined"} |
|
protectedinherited |
◆ m_defaultLBDuration
| Gaudi::Property<float> AthMonitorAlgorithm::m_defaultLBDuration {this,"DefaultLBDuration",60.} |
|
protectedinherited |
◆ m_detailLevel
| Gaudi::Property<int> AthMonitorAlgorithm::m_detailLevel {this,"DetailLevel",0} |
|
protectedinherited |
◆ m_detStore
◆ m_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 372 of file AthMonitorAlgorithm.h.
◆ m_environment
◆ m_environmentStr
| Gaudi::Property<std::string> AthMonitorAlgorithm::m_environmentStr {this,"Environment","user"} |
|
protectedinherited |
Environment string pulled from the job option and converted to enum.
Definition at line 352 of file AthMonitorAlgorithm.h.
◆ m_etaMax
| Gaudi::Property<float> tauMonitorAlgorithm::m_etaMax {this, "etaMax", 3.0} |
|
private |
◆ m_etaMin
| Gaudi::Property<float> tauMonitorAlgorithm::m_etaMin {this, "etaMin", -1.} |
|
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_kinGroupName
| Gaudi::Property<std::string> tauMonitorAlgorithm::m_kinGroupName {this, "kinGroupName", "tauMonKinGroupBA"} |
|
private |
◆ m_lbDurationDataKey
◆ m_lumiDataKey
◆ m_name
| std::string AthMonitorAlgorithm::m_name |
|
privateinherited |
◆ m_offlineGNTauLooseWPDecorKey
◆ m_offlineGNTauMediumWPDecorKey
◆ m_offlineGNTauScoreDecorKey
◆ m_offlineGNTauTightWPDecorKey
◆ m_offlineGNTauTransScoreDecorKey
◆ m_TauContainerKey
◆ m_toolLookupMap
| std::unordered_map<std::string, size_t> AthMonitorAlgorithm::m_toolLookupMap |
|
privateinherited |
◆ m_tools
◆ m_trigDecTool
◆ m_triggerChainString
| Gaudi::Property<std::string> AthMonitorAlgorithm::m_triggerChainString {this,"TriggerChain",""} |
|
protectedinherited |
Trigger chain string pulled from the job option and parsed into a vector.
Definition at line 355 of file AthMonitorAlgorithm.h.
◆ m_trigLiveFractionDataKey
◆ m_useLumi
| Gaudi::Property<bool> AthMonitorAlgorithm::m_useLumi {this,"EnableLumi",false} |
|
protectedinherited |
◆ m_varHandleArraysDeclared
◆ m_vhka
◆ m_vTrigChainNames
| std::vector<std::string> AthMonitorAlgorithm::m_vTrigChainNames |
|
protectedinherited |
◆ nightly
| string tauMonitorAlgorithm.nightly = '/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/CommonInputs/' |
◆ OutputLevel
| tauMonitorAlgorithm.OutputLevel |
◆ withDetails
| tauMonitorAlgorithm.withDetails |
The documentation for this class was generated from the following files:
virtual double pt() const override final
The transverse momentum ( ) of the particle.
@ numberOfPixelHoles
number of pixel layers on track with absence of hits [unit8_t].
SG::ReadDecorHandleKey< xAOD::TauJetContainer > m_offlineGNTauScoreDecorKey
float nPixelDeadSensors(const U &p)
@ RNNJetScoreSigTrans
RNN score which is signal transformed/flattened.
Environment_t environment() const
Accessor functions for the environment.
virtual FourMom_t p4() const final
The full 4-momentum of the particle.
constexpr ParticleHypothesis particle[PARTICLEHYPOTHESES]
the array of masses
@ RNNEleScoreSigTrans
RNN score which is signal transformed/flattened.
@ numberOfSCTSharedHits
number of SCT hits shared by several tracks [unit8_t].
bool d0TJVA(const xAOD::TauJet &, const xAOD::TauTrack &track, float &out)
PublicToolHandle< Trig::TrigDecisionTool > m_trigDecTool
Tool to tell whether a specific trigger is passed.
bool trackEta(const xAOD::TauJet &, const xAOD::TauTrack &track, float &out)
Helper class to provide type-safe access to aux data.
float charge() const
Returns the charge.
bool trackPt(const xAOD::TauJet &, const xAOD::TauTrack &track, float &out)
@ ClustersMeanSecondLambda
Dummy class used to allow special convertors to be called for surfaces owned by a detector element.
accumulate
Update flags based on parser line args.
bool EM_PROBABILITY(const xAOD::TauJet &, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
bool summaryValue(uint8_t &value, const SummaryType &information) const
Accessor for TrackSummary values.
std::vector< std::string > m_vTrigChainNames
Vector of trigger chain names parsed from trigger chain string.
SG::ReadDecorHandleKey< xAOD::TauJetContainer > m_offlineGNTauLooseWPDecorKey
bool SECOND_R(const xAOD::TauJet &, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
SG::ReadHandleKey< xAOD::EventInfo > m_EventInfoKey
Key for retrieving EventInfo from StoreGate.
Gaudi::Property< float > m_etaMin
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
@ ClustersMeanPresamplerFrac
AthMonitorAlgorithm::Environment_t m_environment
Instance of the Environment_t enum.
@ numberOfPixelHits
these are the pixel hits, including the b-layer [unit8_t].
@ numberOfTRTHits
number of TRT hits [unit8_t].
std::vector< ElementLink< xAOD::TrackParticleContainer > > TrackParticleLinks_t
Class providing the definition of the 4-vector interface.
float nPixelHits(const U &p)
@ hadRadius
Get hadron calorimeter radius.
bool trigChainsArePassed(const std::vector< std::string > &vTrigNames) const
Check whether triggers are passed.
SG::ReadHandleKey< xAOD::TauJetContainer > m_TauContainerKey
@ numberOfTRTHighThresholdHits
number of TRT hits which pass the high threshold (only xenon counted) [unit8_t].
virtual void setOwner(IDataHandleHolder *o)=0
const ToolHandle< GenericMonitoringTool > m_dummy
@ centFrac
Get centrality fraction.
@ dRmax
Get maximal dR of tracks associated to calo-seeded tau.
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.
@ numberOfTRTHighThresholdOutliers
number of TRT high threshold outliers (only xenon counted) [unit8_t].
Description of a calorimeter cluster.
@ numberOfPixelSharedHits
number of Pixel all-layer hits shared by several tracks [unit8_t].
@ etHadAtEMScale
Get Hadronic energy at EM scale.
ToolHandleArray< IDQFilterTool > m_DQFilterTools
Array of Data Quality filter tools.
Handle class for reading a decoration on an object.
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
Return this algorithm's output handles.
Gaudi::Property< float > m_etaMax
float nSCTHits(const U &p)
::StatusCode StatusCode
StatusCode definition for legacy code.
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
@ trkAvgDist
Get calibrated EM transverse energy (DEPRECATED since r19)
@ eProbabilityNN
Electron probability from NN.
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.
Gaudi::Property< std::string > m_kinGroupName
bool FIRST_ENG_DENS(const xAOD::TauJet &, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
bool retrieveMoment(MomentType type, double &value) const
Retrieve individual moment.
SG::ReadDecorHandleKey< xAOD::TauJetContainer > m_offlineGNTauTransScoreDecorKey
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.
@ numberOfSCTHoles
number of SCT holes [unit8_t].
float bdtPi0Score() const
get BDT Score used to classify clusters as Pi0 like or not
@ numTopoClusters
get number of topocluster constituents of jet associated to tau candidate
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.
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.
float qOverP() const
Returns the parameter.
Class describing a particle flow object.
@ ClustersMeanEMProbability
@ ClustersMeanCenterLambda
Gaudi::Property< bool > m_enforceExpressTriggers
std::pair< std::unique_ptr< T >, std::unique_ptr< ShallowAuxContainer > > shallowCopyContainer(const T &cont, [[maybe_unused]] const EventContext &ctx)
Function making a shallow copy of a constant container.
SG::ReadDecorHandleKey< xAOD::TauJetContainer > m_offlineGNTauMediumWPDecorKey
@ RNNJetScore
RNN score for Jet rejection (not transformed)
virtual StatusCode initialize() override
initialize
@ numberOfTRTOutliers
number of TRT outliers [unit8_t].
Class describing a Vertex.
void sort(typename std::reverse_iterator< DataModel_detail::iterator< DVL > > beg, typename std::reverse_iterator< DataModel_detail::iterator< DVL > > end, const Compare &comp)
Specialization of sort for DataVector/List.
#define ATH_MSG_WARNING(x)
@ numberOfSCTDeadSensors
number of dead SCT sensors crossed [unit8_t].
bool CENTER_LAMBDA(const xAOD::TauJet &, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
AthMonitorAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
@ ClustersMeanFirstEngDens
@ eProbabilityHT
Electron probability from High Threshold (HT) information [float].
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
@ isolFrac
Get isolation fraction.
@ RNNEleScore
RNN score for Ele rejection (not transformed)
float nSCTDeadSensors(const U &p)
virtual StatusCode sysInitialize() override
Override sysInitialize.
@ numberOfSCTHits
number of hits in SCT [unit8_t].
SG::ReadDecorHandleKey< xAOD::TauJetContainer > m_offlineGNTauTightWPDecorKey
@ numberOfPixelDeadSensors
number of dead pixel sensors crossed [unit8_t].
Class describing a TrackParticle.
float nTRTHighThresholdHits(const U &p)
Declare a monitored scalar variable.
Evaluate cluster kinematics with a different vertex / signal state.
bool SECOND_LAMBDA(const xAOD::TauJet &, const xAOD::CaloVertexedTopoCluster &cluster, float &out)
DataObjIDColl m_extendedExtraObjects
Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
@ EMRadius
Get E_T radius.
const ToolHandle< GenericMonitoringTool > & getGroup(const std::string &name) const
Get a specific monitoring tool from the tool handle array.
@ etEMAtEMScale
Get EM energy at EM scale.
@ numberOfInnermostPixelLayerHits
these are the hits in the 0th pixel barrel layer