Loading [MathJax]/jax/output/SVG/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgT.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "AlgT.h"
6 #include "StoreGate/ReadHandle.h"
8 
9 AlgT::AlgT( const std::string& name,
10  ISvcLocator* pSvcLocator ) :
11  ::AthAlgorithm( name, pSvcLocator )
12 {}
13 
14 //---------------------------------------------------------------------------
15 
17  ATH_MSG_DEBUG("initialize " << name());
18 
19  if (m_rdh1.key() != "") ATH_CHECK( m_rdh1.initialize() );
22 
23  ATH_CHECK( m_tool1.retrieve() );
24  ATH_CHECK( m_tool2.retrieve() );
25  ATH_CHECK( m_tool3.retrieve() );
26 
27  return StatusCode::SUCCESS;
28 }
29 
30 //---------------------------------------------------------------------------
31 
33 
34  ATH_MSG_DEBUG("execute " << name());
35 
37  ATH_MSG_INFO(" EventInfo: r: " << evt->runNumber()
38  << " e: " << evt->eventNumber() );
39 
40 
42  ATH_CHECK( wh1.record( std::make_unique<HiveDataObj> (10000 + evt->eventNumber())));
43 
44  ATH_MSG_INFO(" write: " << wh1.key() << " = " << wh1->val() );
45 
46 
47  ATH_CHECK(m_tool1->doSomething());
48  ATH_CHECK(m_tool2->doSomething());
49  ATH_CHECK(m_tool3->doSomething());
50 
51 
52  return StatusCode::SUCCESS;
53 
54 }
55 
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
LArG4FSStartPointFilter.evt
evt
Definition: LArG4FSStartPointFilter.py:42
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
AlgT::initialize
virtual StatusCode initialize() override
Definition: AlgT.cxx:16
WriteHandle.h
Handle class for recording to StoreGate.
AlgT::m_tool3
ToolHandle< IHiveTool > m_tool3
Definition: AlgT.h:39
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
AlgT::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgT.h:33
AlgT::m_wrh1
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition: AlgT.h:34
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
AthAlgorithm
Definition: AthAlgorithm.h:47
AlgT::AlgT
AlgT(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgT.cxx:9
AlgT::m_tool1
ToolHandle< IHiveTool > m_tool1
Definition: AlgT.h:37
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
AlgT::execute
virtual StatusCode execute() override
Definition: AlgT.cxx:32
SG::VarHandleBase::key
virtual const std::string & key() const override final
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleBase.cxx:64
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:73
SG::WriteHandle::record
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
AlgT.h
HiveDataObj::val
void val(int i)
Definition: HiveDataObj.h:22
ReadHandle.h
Handle class for reading from StoreGate.
AlgT::m_evt
SG::ReadHandleKey< xAOD::EventInfo > m_evt
Definition: AlgT.h:32
AlgT::m_tool2
ToolHandle< IHiveTool > m_tool2
Definition: AlgT.h:38