ATLAS Offline Software
sTgcRawDataProvider.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef MUONBYTESTREAM_STGCRAWDATAPROVIDER_H
6 #define MUONBYTESTREAM_STGCRAWDATAPROVIDER_H
7 
9 #include "GaudiKernel/ToolHandle.h"
13 
14 namespace Muon {
16  public:
18  sTgcRawDataProvider(const std::string &name, ISvcLocator *pSvcLocator);
19 
21  virtual StatusCode initialize() override;
22 
24  virtual StatusCode execute(const EventContext &ctx) const override;
25 
27  ~sTgcRawDataProvider() = default;
28 
29  private:
31  ToolHandle<Muon::IMuonRawDataProviderTool> m_rawDataTool{this, "ProviderTool",
32  "Muon::STGC_RawDataProviderToolMT/sTgcRawDataProviderTool"};
33 
35  ToolHandle<IRegSelTool> m_regsel_stgc{this, "RegionSelectionTool", "RegSelTool/RegSelTool_STGC", "sTGC Region Selector Tool"};
36 
38  Gaudi::Property<bool> m_seededDecoding{this, "DoSeededDecoding", false, "If true do decoding in RoIs"};
39 
41  SG::ReadHandleKey<TrigRoiDescriptorCollection> m_roiCollectionKey{this, "RoIs", "OutputRoIs", "Name of RoI collection to read in"};
42  };
43 } // namespace Muon
44 
45 #endif
IRegSelTool.h
Muon::sTgcRawDataProvider::m_rawDataTool
ToolHandle< Muon::IMuonRawDataProviderTool > m_rawDataTool
Handle for the RawDataProviderTool.
Definition: sTgcRawDataProvider.h:31
Muon::sTgcRawDataProvider
Definition: sTgcRawDataProvider.h:15
IMuonRawDataProviderTool.h
Muon::sTgcRawDataProvider::sTgcRawDataProvider
sTgcRawDataProvider(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
Definition: sTgcRawDataProvider.cxx:8
SG::ReadHandleKey< TrigRoiDescriptorCollection >
Muon
This class provides conversion from CSC RDO data to CSC Digits.
Definition: TrackSystemController.h:49
Muon::sTgcRawDataProvider::initialize
virtual StatusCode initialize() override
Initialize.
Definition: sTgcRawDataProvider.cxx:12
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
Muon::sTgcRawDataProvider::~sTgcRawDataProvider
~sTgcRawDataProvider()=default
Destructor.
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthReentrantAlgorithm.h
Muon::sTgcRawDataProvider::execute
virtual StatusCode execute(const EventContext &ctx) const override
Execute.
Definition: sTgcRawDataProvider.cxx:32
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
Muon::sTgcRawDataProvider::m_roiCollectionKey
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey
ReadHandle for the input RoIs.
Definition: sTgcRawDataProvider.h:41
TrigRoiDescriptor.h
Muon::sTgcRawDataProvider::m_regsel_stgc
ToolHandle< IRegSelTool > m_regsel_stgc
Handle for region selector service.
Definition: sTgcRawDataProvider.h:35
Muon::sTgcRawDataProvider::m_seededDecoding
Gaudi::Property< bool > m_seededDecoding
Property to decide whether or not to do RoI based decoding.
Definition: sTgcRawDataProvider.h:38