ATLAS Offline Software
xAODPhotonRetriever.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_XAODPHOTONRETRIEVER_H
6 #define JIVEXML_XAODPHOTONRETRIEVER_H
7 
8 #include <string>
9 #include <vector>
10 #include <map>
11 
12 #include "JiveXML/IDataRetriever.h"
15 
16 namespace JiveXML{
17 
29  class xAODPhotonRetriever : virtual public IDataRetriever,
30  public AthAlgTool {
31 
32  public:
33 
35  xAODPhotonRetriever(const std::string& type,const std::string& name,const IInterface* parent);
36 
37  virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
38  virtual StatusCode initialize();
42  virtual std::string dataTypeName() const { return m_typeName; };
43 
44  private:
45 
47  const std::string m_typeName = "Photon";
48 
49  SG::ReadHandleKeyArray<xAOD::PhotonContainer> m_keys {this,"PhotonCollections", {"Photons"}, "Name of the Photon containers that will be written out to the JiveXML file"};
50 
51  };
52 }
53 #endif
JiveXML::xAODPhotonRetriever::retrieve
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
For each photon collection retrieve basic parameters.
Definition: xAODPhotonRetriever.cxx:33
JiveXML::xAODPhotonRetriever::getData
const DataMap getData(const xAOD::PhotonContainer *)
Puts the variables into a DataMap.
Definition: xAODPhotonRetriever.cxx:60
SG::HandleKeyArray
Definition: StoreGate/StoreGate/HandleKeyArray.h:38
JiveXML::DataMap
std::map< std::string, DataVect > DataMap
Definition: DataType.h:59
JiveXML::xAODPhotonRetriever::m_keys
SG::ReadHandleKeyArray< xAOD::PhotonContainer > m_keys
Definition: xAODPhotonRetriever.h:49
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
JiveXML::xAODPhotonRetriever::xAODPhotonRetriever
xAODPhotonRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
Definition: xAODPhotonRetriever.cxx:19
JiveXML::xAODPhotonRetriever::dataTypeName
virtual std::string dataTypeName() const
Return the name of the data type that is generated by this retriever.
Definition: xAODPhotonRetriever.h:42
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.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
DataVector
Derived DataVector<T>.
Definition: DataVector.h:794
JiveXML
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.
Definition: BadLArRetriever.cxx:22
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
JiveXML::xAODPhotonRetriever
Retrieves the Photon objects (Photons etc.)
Definition: xAODPhotonRetriever.h:30
JiveXML::xAODPhotonRetriever::initialize
virtual StatusCode initialize()
Definition: xAODPhotonRetriever.cxx:23
AthAlgTool
Definition: AthAlgTool.h:26
PhotonContainer.h
IDataRetriever.h
JiveXML::xAODPhotonRetriever::m_typeName
const std::string m_typeName
The data type that is generated by this retriever.
Definition: xAODPhotonRetriever.h:47