ATLAS Offline Software
TrigEMClusterCnvAlg.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // $Id: TrigEMClusterCnvAlg.cxx 592334 2014-04-10 11:01:56Z krasznaa $
6 
7 // Gaudi/Athena include(s):
9 
10 // EDM include(s):
14 
15 // Local include(s):
16 #include "TrigEMClusterCnvAlg.h"
17 
18 namespace xAODMaker {
19 
21  ISvcLocator* svcLoc )
22  : AthAlgorithm( name, svcLoc ),
23  m_cnvTool( "xAODMaker::TrigEMClusterCnvTool/TrigEMClusterCnvTool", this ) {
24 
25  declareProperty( "AODKey", m_aodKey = "HLT_TrigT2CaloEgamma" );
26  declareProperty( "xAODKey", m_xaodKey = "HLT_TrigT2CaloEgamma" );
27  declareProperty( "CnvTool", m_cnvTool );
28  }
29 
31 
32  // Greet the user:
33  ATH_MSG_INFO( "Initializing" );
34  ATH_MSG_DEBUG( " AOD Key: " << m_aodKey );
35  ATH_MSG_DEBUG( "xAOD Key: " << m_xaodKey );
36 
37  // Retrieve the converter tool:
38  CHECK( m_cnvTool.retrieve() );
39 
40  // Return gracefully:
41  return StatusCode::SUCCESS;
42  }
43 
45 
46  // Retrieve the AOD container:
47  const TrigEMClusterContainer* aod = nullptr;
48  CHECK( evtStore()->retrieve( aod, m_aodKey ) );
49 
50  // Create the xAOD container and its auxiliary store:
53  xaod->setStore( aux );
54 
55  // Fill the xAOD container:
56  CHECK( m_cnvTool->convert( aod, xaod ) );
57 
58  // Record the xAOD containers:
59  CHECK( evtStore()->record( aux, m_xaodKey + "Aux." ) );
60  CHECK( evtStore()->record( xaod, m_xaodKey ) );
61 
62  // Return gracefully:
63  return StatusCode::SUCCESS;
64  }
65 
66 } // namespace xAODMaker
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
xAOD::TrigEMClusterAuxContainer_v2
Auxiliary container for trigger EM cluster containers.
Definition: TrigEMClusterAuxContainer_v2.h:31
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
Definition: AthCommonDataStore.h:145
TrigEMClusterContainer.h
xAOD::TrigEMClusterAuxContainer
TrigEMClusterAuxContainer_v2 TrigEMClusterAuxContainer
Define the latest version of the trigger EM cluster auxiliary container.
Definition: TrigEMClusterAuxContainer.h:16
xAODMaker
Definition: StoreGateSvc.h:72
TrigEMClusterContainer
Container from TrigEMCluster type objects.
Definition: Trigger/TrigEvent/TrigCaloEvent/TrigCaloEvent/TrigEMClusterContainer.h:32
xAODMaker::TrigEMClusterCnvAlg::TrigEMClusterCnvAlg
TrigEMClusterCnvAlg(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.
Definition: TrigEMClusterCnvAlg.cxx:20
xAODMaker::TrigEMClusterCnvAlg::m_xaodKey
std::string m_xaodKey
StoreGate key for the output container.
Definition: TrigEMClusterCnvAlg.h:49
xAODMaker::TrigEMClusterCnvAlg::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition: TrigEMClusterCnvAlg.cxx:30
AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore
ServiceHandle< StoreGateSvc > & evtStore()
The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:85
TrigEMClusterAuxContainer.h
TrigEMClusterCnvAlg.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
xAOD::TrigEMClusterContainer
TrigEMClusterContainer_v1 TrigEMClusterContainer
Define the latest version of the trigger EM cluster container.
Definition: Event/xAOD/xAODTrigCalo/xAODTrigCalo/TrigEMClusterContainer.h:17
DataVector
Derived DataVector<T>.
Definition: DataVector.h:581
AthAlgorithm
Definition: AthAlgorithm.h:47
xAODMaker::TrigEMClusterCnvAlg::m_aodKey
std::string m_aodKey
StoreGate key of the input container.
Definition: TrigEMClusterCnvAlg.h:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
xAODMaker::TrigEMClusterCnvAlg::m_cnvTool
ToolHandle< ITrigEMClusterCnvTool > m_cnvTool
Handle to the converter tool.
Definition: TrigEMClusterCnvAlg.h:52
errorcheck.h
Helpers for checking error return status codes and reporting errors.
TrigEMClusterContainer.h
xAODMaker::TrigEMClusterCnvAlg::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition: TrigEMClusterCnvAlg.cxx:44