Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgA.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 "AlgA.h"
6 #include "StoreGate/ReadHandle.h"
8 
9 #include <memory>
10 
11 AlgA::AlgA( const std::string& name,
12  ISvcLocator* pSvcLocator ) :
13  ::AthAlgorithm( name, pSvcLocator )
14 {
15 }
16 
17 //---------------------------------------------------------------------------
18 
20  ATH_MSG_DEBUG("initialize " << name());
21 
25 
26  return StatusCode::SUCCESS;
27 }
28 
29 //---------------------------------------------------------------------------
30 
32 
33  ATH_MSG_DEBUG("execute " << name());
34 
36  ATH_MSG_INFO(" EventInfo: r: " << evt->runNumber()
37  << " e: " << evt->eventNumber()
38  << " evt: " << Gaudi::Hive::currentContextEvt() );
39 
40 
41  unsigned int i = Gaudi::Hive::currentContextEvt() + 1;
42 
44  ATH_CHECK( wh1.record( std::make_unique<HiveDataObj>
45  ( 10000 +
46  evt->eventNumber()*100 +
47  i) )
48  );
49  ATH_MSG_INFO(" write: " << wh1.key() << " = " << wh1->val() );
50 
51 
53  ATH_CHECK( wh2.record( std::make_unique< HiveDataObj >( 10050+i ) ) );
54  ATH_MSG_INFO(" write: " << wh2.key() << " = " << wh2->val() );
55 
56  return StatusCode::SUCCESS;
57 
58 }
59 
AlgA::execute
virtual StatusCode execute() override
Definition: AlgA.cxx:31
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
AlgA::m_wrh1
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition: AlgA.h:29
LArG4FSStartPointFilter.evt
evt
Definition: LArG4FSStartPointFilter.py:42
WriteHandle.h
Handle class for recording to StoreGate.
AlgA::m_wrh2
SG::WriteHandleKey< HiveDataObj > m_wrh2
Definition: AlgA.h:30
lumiFormat.i
int i
Definition: lumiFormat.py:85
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
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
AlgA.h
AthAlgorithm
Definition: AthAlgorithm.h:47
AlgA::AlgA
AlgA(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgA.cxx:11
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
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.
AlgA::initialize
virtual StatusCode initialize() override
Definition: AlgA.cxx:19
HiveDataObj::val
void val(int i)
Definition: HiveDataObj.h:22
ReadHandle.h
Handle class for reading from StoreGate.
AlgA::m_evt
SG::ReadHandleKey< xAOD::EventInfo > m_evt
Definition: AlgA.h:31