ATLAS Offline Software
Loading...
Searching...
No Matches
TRTMonitoringAlg.h
Go to the documentation of this file.
1/*
2Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef TRIGMINBIASMONITORING_TRTMonitoringAlg_H
5#define TRIGMINBIASMONITORING_TRTMonitoringAlg_H
6
7// Framework includes
9#include "GaudiKernel/ToolHandle.h"
12
13// STL includes
14#include <string>
15
21public:
22 TRTMonitoringAlg(const std::string &name, ISvcLocator *pSvcLocator);
23
24 virtual StatusCode initialize() override;
25 virtual StatusCode fillHistograms(const EventContext &context) const override;
26
27private:
28 SG::ReadHandleKey<xAOD::TrackParticleContainer> m_offlineTrkKey { this, "OfflineTrkKey", "InDetTrackParticles", "Name of Offline track counts info object produced by the HLT track counting FEX algorithm" };
29 ToolHandle<InDet::IInDetTrackSelectionTool> m_trackSelectionTool {this, "TrackSelectionTool", "InDetTrackSelectionTool", "Tool for selecting tracks"};
30
31 Gaudi::Property<std::vector<std::string>> m_triggerList {this, "triggerList", {}, "List of triggers to be monitored"};
32 Gaudi::Property<std::vector<std::string>> m_refTriggerList {this, "refTriggerList", {}, "List of reference triggers used to calculate efficiency"};
33};
34
35#endif // TRIGMINBIASMONITORING_TRTMonitoringAlg_H
AthMonitorAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
Property holding a SG store/key/clid from which a ReadHandle is made.
Gaudi::Property< std::vector< std::string > > m_refTriggerList
TRTMonitoringAlg(const std::string &name, ISvcLocator *pSvcLocator)
virtual StatusCode fillHistograms(const EventContext &context) const override
adds event to the monitoring histograms
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_offlineTrkKey
ToolHandle< InDet::IInDetTrackSelectionTool > m_trackSelectionTool
virtual StatusCode initialize() override
initialize
Gaudi::Property< std::vector< std::string > > m_triggerList