ATLAS Offline Software
Loading...
Searching...
No Matches
CscRawDataProvider.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef MUONBYTESTREAM_CSCRAWDATAPROVIDER_H
6#define MUONBYTESTREAM_CSCRAWDATAPROVIDER_H
7
8// Base class
10#include "GaudiKernel/ServiceHandle.h"
11#include "GaudiKernel/ToolHandle.h"
16
17namespace Muon {
18
20 public:
22 CscRawDataProvider(const std::string &name, ISvcLocator *pSvcLocator);
23
25 virtual StatusCode initialize();
26
28 virtual StatusCode execute(const EventContext &ctx) const;
29
32
33 private:
34 ToolHandle<Muon::IMuonRawDataProviderTool> m_rawDataTool{this, "ProviderTool",
35 "Muon::CSC_RawDataProviderToolMT/CscRawDataProviderTool"};
36
38 ToolHandle<IRegSelTool> m_regsel_csc{this, "RegionSelectionTool", "RegSelTool/RegSelTool_CSC", "CSC Region Selector Tool"};
39
41 Gaudi::Property<bool> m_seededDecoding{this, "DoSeededDecoding", false, "If true do decoding in RoIs"};
42
44 SG::ReadHandleKey<TrigRoiDescriptorCollection> m_roiCollectionKey{this, "RoIs", "OutputRoIs", "Name of RoI collection to read in"};
45 // MuonDetectorManager from the conditions store
46 SG::ReadCondHandleKey<MuonGM::MuonDetectorManager> m_detMgrKey{this, "DetectorManagerKey", "MuonDetectorManager",
47 "Key of input MuonDetectorManager condition data"};
48
49 };
50} // namespace Muon
51
52#endif
An algorithm that can be simultaneously executed in multiple threads.
Gaudi::Property< bool > m_seededDecoding
Property to decide whether or not to do RoI based decoding.
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey
ReadHandle for the input RoIs.
virtual StatusCode execute(const EventContext &ctx) const
Execute.
ToolHandle< IRegSelTool > m_regsel_csc
Handle for region selector service.
virtual StatusCode initialize()
Initialize.
~CscRawDataProvider()=default
Destructor.
CscRawDataProvider(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
SG::ReadCondHandleKey< MuonGM::MuonDetectorManager > m_detMgrKey
ToolHandle< Muon::IMuonRawDataProviderTool > m_rawDataTool
Property holding a SG store/key/clid from which a ReadHandle is made.
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.