ATLAS Offline Software
TrigMuonROIRetriever.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef JIVEXML_TRIGMUONROIRETRIEVER_H
6 #define JIVEXML_TRIGMUONROIRETRIEVER_H
7 
8 #include <string>
9 
10 #include "JiveXML/IDataRetriever.h"
11 
14 
15 
16 namespace JiveXML{
17 
18  class TrigMuonROIRetriever : virtual public IDataRetriever, public AthAlgTool {
19 
20  public:
21 
23  TrigMuonROIRetriever(const std::string& type, const std::string& name, const IInterface* parent);
24 
26  virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
27 
29  virtual std::string dataTypeName() const { return "TrigMuonROI"; };
30 
31  private:
33  SG::ReadHandleKey<LVL1_ROI> m_sgKey{this, "StoreGateKey", "LVL1_ROI", "Storegate key for LVL1 Muon RoIs"};
34  };
35 
36 }
37 #endif
SG::ReadHandleKey< LVL1_ROI >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
LVL1_ROI.h
test_pyathena.parent
parent
Definition: test_pyathena.py:15
JiveXML::IDataRetriever
Interface for all DataRetriever classes, that extract event data from StoreGate and pass them on to a...
Definition: IDataRetriever.h:25
JiveXML::TrigMuonROIRetriever::m_sgKey
SG::ReadHandleKey< LVL1_ROI > m_sgKey
The storegate key for the LVL1 Muon RoIs.
Definition: TrigMuonROIRetriever.h:33
JiveXML::TrigMuonROIRetriever
Definition: TrigMuonROIRetriever.h:18
JiveXML
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.
Definition: BadLArRetriever.cxx:21
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
JiveXML::TrigMuonROIRetriever::retrieve
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
Definition: TrigMuonROIRetriever.cxx:25
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
AthAlgTool
Definition: AthAlgTool.h:26
JiveXML::TrigMuonROIRetriever::TrigMuonROIRetriever
TrigMuonROIRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
Definition: TrigMuonROIRetriever.cxx:15
JiveXML::TrigMuonROIRetriever::dataTypeName
virtual std::string dataTypeName() const
Return the name of the data type.
Definition: TrigMuonROIRetriever.h:29
IDataRetriever.h