ATLAS Offline Software
xAODCaloClusterRetriever.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_XAODCALOCLUSTERRetriever_H
6 #define JIVEXML_XAODCALOCLUSTERRetriever_H
7 
8 #include <string>
9 #include <vector>
10 #include <map>
11 
12 #include "JiveXML/IDataRetriever.h"
15 
17 
18 namespace JiveXML{
19 
32  class xAODCaloClusterRetriever : virtual public IDataRetriever,
33  public AthAlgTool {
34 
35  public:
36 
38  xAODCaloClusterRetriever(const std::string& type,const std::string& name,const IInterface* parent);
39 
40  virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
41  virtual StatusCode initialize();
45  virtual std::string dataTypeName() const { return m_typeName; };
46 
47  private:
48 
50  const std::string m_typeName = "Cluster";
51 
52  SG::ReadHandleKeyArray<xAOD::CaloClusterContainer> m_keys {this,"ClusterCollections", {"egammaClusters","CaloCalTopoClusters"}, "Name of the Cluster containers that will be written out to the JiveXML file"};
53 
54  };
55 }
56 #endif
JiveXML::xAODCaloClusterRetriever::xAODCaloClusterRetriever
xAODCaloClusterRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
Definition: xAODCaloClusterRetriever.cxx:19
JiveXML::xAODCaloClusterRetriever::retrieve
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
For each cluster collection retrieve basic parameters.
Definition: xAODCaloClusterRetriever.cxx:35
JiveXML::xAODCaloClusterRetriever::m_keys
SG::ReadHandleKeyArray< xAOD::CaloClusterContainer > m_keys
Definition: xAODCaloClusterRetriever.h:52
CaloClusterContainer
Storable container for CaloCluster.
Definition: Calorimeter/CaloEvent/CaloEvent/CaloClusterContainer.h:37
SG::HandleKeyArray
Definition: StoreGate/StoreGate/HandleKeyArray.h:38
JiveXML::DataMap
std::map< std::string, DataVect > DataMap
Definition: DataType.h:59
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
JiveXML::xAODCaloClusterRetriever::dataTypeName
virtual std::string dataTypeName() const
Return the name of the data type that is generated by this retriever.
Definition: xAODCaloClusterRetriever.h:45
JiveXML::xAODCaloClusterRetriever::getData
const DataMap getData(const xAOD::CaloClusterContainer *)
Puts the variables into a DataMap.
Definition: xAODCaloClusterRetriever.cxx:64
JiveXML::xAODCaloClusterRetriever::initialize
virtual StatusCode initialize()
Definition: xAODCaloClusterRetriever.cxx:24
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
JiveXML::xAODCaloClusterRetriever
Retrieves the Calo Cluster objects.
Definition: xAODCaloClusterRetriever.h:33
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
CaloClusterContainer.h
AthAlgTool
Definition: AthAlgTool.h:26
JiveXML::xAODCaloClusterRetriever::m_typeName
const std::string m_typeName
The data type that is generated by this retriever.
Definition: xAODCaloClusterRetriever.h:50
IDataRetriever.h