ATLAS Offline Software
TrackAnalysisAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ACTSTRKANALYSIS_TRACKANALYSISALG_H
6 #define ACTSTRKANALYSIS_TRACKANALYSISALG_H
7 
11 
12 namespace ActsTrk {
13 
14  class TrackAnalysisAlg final :
15  public AthMonitorAlgorithm {
16  public:
17  TrackAnalysisAlg(const std::string& name, ISvcLocator* pSvcLocator);
18  virtual ~TrackAnalysisAlg() override = default;
19 
20  virtual StatusCode initialize() override;
21  virtual StatusCode fillHistograms(const EventContext& ctx) const override;
22 
23  private:
25  "Input track collection"};
26 
27  Gaudi::Property< std::string > m_monGroupName
28  {this, "MonGroupName", "ActsSeedAnalysisAlg"};
29  };
30 
31 }
32 
33 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
ActsTrk::TrackAnalysisAlg::fillHistograms
virtual StatusCode fillHistograms(const EventContext &ctx) const override
adds event to the monitoring histograms
Definition: TrackAnalysisAlg.cxx:60
ActsTrk::TrackAnalysisAlg::m_tracksKey
SG::ReadHandleKey< ActsTrk::TrackContainer > m_tracksKey
Definition: TrackAnalysisAlg.h:24
ActsTrk::TrackAnalysisAlg
Definition: TrackAnalysisAlg.h:15
SG::ReadHandleKey< ActsTrk::TrackContainer >
ActsTrk::TrackAnalysisAlg::initialize
virtual StatusCode initialize() override
initialize
Definition: TrackAnalysisAlg.cxx:20
AthMonitorAlgorithm
Base class for Athena Monitoring Algorithms.
Definition: AthMonitorAlgorithm.h:36
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthMonitorAlgorithm.h
ActsTrk::TrackAnalysisAlg::~TrackAnalysisAlg
virtual ~TrackAnalysisAlg() override=default
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
ActsTrk
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Definition: MuonDetectorBuilderTool.cxx:34
ActsTrk::TrackAnalysisAlg::TrackAnalysisAlg
TrackAnalysisAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrackAnalysisAlg.cxx:16
TrackContainer.h
ActsTrk::TrackAnalysisAlg::m_monGroupName
Gaudi::Property< std::string > m_monGroupName
Definition: TrackAnalysisAlg.h:28