ATLAS Offline Software
Loading...
Searching...
No Matches
DQTLumiMonAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
10
11#ifndef DQTLUMIMONALG_H
12#define DQTLUMIMONALG_H
13
15
19
21public:
22 DQTLumiMonAlg(const std::string& name, ISvcLocator* pSvcLocator);
23 virtual ~DQTLumiMonAlg();
24 virtual StatusCode initialize() override;
25 virtual StatusCode fillHistograms(const EventContext& ctx) const override;
26private:
27 template <class T> using RH = SG::ReadHandle<T>;
28 template <class T> using RHK = SG::ReadHandleKey<T>;
29 template <class T> using GP = Gaudi::Property<T>;
30
31 RHK<xAOD::VertexContainer> m_VertexContainerKey {this, "VertexContainerKey", "PrimaryVertices", ""};
32 RHK<InDet::PixelClusterContainer> m_PixelClustersKey {this, "PixelClustersKey", "PixelClusters", ""};
33 RHK<PixelID> m_PixelIDKey {this, "PixelIDKey", "DetectorStore+PixelID", ""};
34
35 GP<float> m_tightTrackWeight {this, "TightTrackWeight", 0.01};
36 GP<int> m_tightNTracks {this, "TightNTracks", 4};
37};
38#endif
This is an Identifier helper class for the Pixel subdetector.
AthMonitorAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
SG::ReadHandle< T > RH
virtual StatusCode fillHistograms(const EventContext &ctx) const override
adds event to the monitoring histograms
RHK< PixelID > m_PixelIDKey
SG::ReadHandleKey< T > RHK
RHK< xAOD::VertexContainer > m_VertexContainerKey
GP< float > m_tightTrackWeight
GP< int > m_tightNTracks
RHK< InDet::PixelClusterContainer > m_PixelClustersKey
Gaudi::Property< T > GP
Property holding a SG store/key/clid from which a ReadHandle is made.
void initialize()