Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
StripClusterTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef STRIPCLUSTERTOOL_H
6 #define STRIPCLUSTERTOOL_H
7 
9 #include "GaudiKernel/ITHistSvc.h"
10 #include "GaudiKernel/ServiceHandle.h"
11 
19 
26 
27 #include <functional>
28 #include <algorithm>
29 #include <map>
30 #include <utility>
31 
32 namespace MuonGM {
33  class MuonDetectorManager;
34 }
35 
36 
37 // namespace for the NSW LVL1 related classes
38 namespace NSWL1 {
39 
52  class StripClusterTool: virtual public IStripClusterTool,
53  public AthAlgTool {
54 
55  public:
56  StripClusterTool(const std::string& type,
57  const std::string& name,
58  const IInterface* parent);
59  virtual ~StripClusterTool()=default;
60  virtual StatusCode initialize() override;
61  virtual StatusCode cluster_strip_data(const EventContext& ctx, std::vector<std::unique_ptr<StripData>>& strips,std::vector<std::unique_ptr<StripClusterData>>& clusters) const override;
62 
63  private:
64  StatusCode fill_strip_validation_id(const EventContext& ctx,
65  std::vector<std::unique_ptr<StripClusterData>>& clusters,
66  std::vector< std::shared_ptr<std::vector<std::unique_ptr<StripData> >> > &cluster_cache) const;
67 
68  // needed Servives, Tools and Helpers
69  ServiceHandle< IIncidentSvc > m_incidentSvc{this, "IncidentSvc", "IncidentSvc"};
70  SG::ReadCondHandleKey<MuonGM::MuonDetectorManager> m_detManagerKey{this, "MuonManagerKey", "MuonDetectorManager"};
71  ServiceHandle<Muon::IMuonIdHelperSvc> m_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};
72 
73  Gaudi::Property<bool> m_isMC {this, "IsMC", true, "This is MC"};
74  SG::ReadHandleKey<MuonSimDataCollection> m_sTgcSdoContainerKey{this,"sTGC_SdoContainerName", "sTGC_SDO", "the name of the sTGC SDO container"};
75  }; // end of StripClusterTool class
76 } // namespace NSWL1
77 #endif
NSWL1::StripClusterTool::initialize
virtual StatusCode initialize() override
Definition: StripClusterTool.cxx:17
MuonGM
Ensure that the Athena extensions are properly loaded.
Definition: GeoMuonHits.h:27
TriggerTypes.h
IStripClusterTool.h
StripTdsOfflineTool.h
sTgcReadoutElement.h
NSWL1::StripClusterTool::m_sTgcSdoContainerKey
SG::ReadHandleKey< MuonSimDataCollection > m_sTgcSdoContainerKey
Definition: StripClusterTool.h:74
SG::ReadHandleKey< MuonSimDataCollection >
NSWL1::StripClusterTool::fill_strip_validation_id
StatusCode fill_strip_validation_id(const EventContext &ctx, std::vector< std::unique_ptr< StripClusterData >> &clusters, std::vector< std::shared_ptr< std::vector< std::unique_ptr< StripData > >> > &cluster_cache) const
Definition: StripClusterTool.cxx:28
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
NSWL1::StripClusterTool::m_incidentSvc
ServiceHandle< IIncidentSvc > m_incidentSvc
Athena/Gaudi incident Service.
Definition: StripClusterTool.h:69
NSWL1::StripClusterTool::m_detManagerKey
SG::ReadCondHandleKey< MuonGM::MuonDetectorManager > m_detManagerKey
Definition: StripClusterTool.h:70
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
NSWL1::StripClusterTool
interface for the StripTDS tools
Definition: StripClusterTool.h:53
test_pyathena.parent
parent
Definition: test_pyathena.py:15
StripOfflineData.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
NSWL1::StripClusterTool::cluster_strip_data
virtual StatusCode cluster_strip_data(const EventContext &ctx, std::vector< std::unique_ptr< StripData >> &strips, std::vector< std::unique_ptr< StripClusterData >> &clusters) const override
Definition: StripClusterTool.cxx:173
MuonDetectorManager.h
NSWL1::StripClusterTool::StripClusterTool
StripClusterTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: StripClusterTool.cxx:11
SG::ReadCondHandleKey< MuonGM::MuonDetectorManager >
NSWL1::StripClusterTool::~StripClusterTool
virtual ~StripClusterTool()=default
RunTileMonitoring.clusters
clusters
Definition: RunTileMonitoring.py:133
sTgcDigit.h
sTgcDigitContainer.h
PadTrigger.h
AthAlgTool
Definition: AthAlgTool.h:26
MuonSimDataCollection.h
NSWL1
A trigger trigger candidate for a stgc sector.
Definition: NSWL1Simulation.cxx:7
IMuonIdHelperSvc.h
NSWL1::StripClusterTool::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition: StripClusterTool.h:71
StripClusterOfflineData.h
MuonSimData.h
ServiceHandle< IIncidentSvc >
NSWL1::IStripClusterTool
interface for the Strip Cluster Tools
Definition: IStripClusterTool.h:34
NSWL1::StripClusterTool::m_isMC
Gaudi::Property< bool > m_isMC
Definition: StripClusterTool.h:73