ATLAS Offline Software
Loading...
Searching...
No Matches
TrigMuonROIRetriever.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 JIVEXML_TRIGMUONROIRETRIEVER_H
6#define JIVEXML_TRIGMUONROIRETRIEVER_H
7
8
9
11#include "JiveXML/IFormatTool.h"
15#include "GaudiKernel/ToolHandle.h"
16#include <string>
17
18namespace JiveXML{
19
20 class TrigMuonROIRetriever : virtual public IDataRetriever, public AthAlgTool {
21
22 public:
23
25 TrigMuonROIRetriever(const std::string& type, const std::string& name, const IInterface* parent);
26
28 virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
29
31 virtual std::string dataTypeName() const { return "TrigMuonROI"; };
32
33 private:
35 SG::ReadHandleKey<LVL1_ROI> m_sgKey{this, "StoreGateKey", "LVL1_ROI", "Storegate key for LVL1 Muon RoIs"};
36 };
37
38}
39#endif
Property holding a SG store/key/clid from which a ReadHandle is made.
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
Interface for all DataRetriever classes, that extract event data from StoreGate and pass them on to a...
TrigMuonROIRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
SG::ReadHandleKey< LVL1_ROI > m_sgKey
The storegate key for the LVL1 Muon RoIs.
virtual std::string dataTypeName() const
Return the name of the data type.
Property holding a SG store/key/clid from which a ReadHandle is made.
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.