Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgC.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 "AlgC.h"
6 #include "StoreGate/ReadHandle.h"
8 
9 AlgC::AlgC( const std::string& name,
10  ISvcLocator* pSvcLocator ) :
11  ::AthAlgorithm( name, pSvcLocator )
12 {}
13 
14 //---------------------------------------------------------------------------
15 
17  ATH_MSG_DEBUG("initialize " << name());
18 
21 
22  ATH_MSG_INFO( "m_rdh1 id: " << m_rdh1.fullKey() );
23  ATH_MSG_INFO( "m_rch id: " << m_rch.fullKey() );
24 
25 
26  return StatusCode::SUCCESS;
27 }
28 
29 //---------------------------------------------------------------------------
30 
32  ATH_MSG_DEBUG("execute " << name());
33 
35  if (!rh1.isValid()) {
36  ATH_MSG_ERROR ("Could not retrieve HiveDataObj with key " << m_rdh1.key());
37  return StatusCode::FAILURE;
38  }
39 
40  ATH_MSG_INFO(" read: " << rh1.key() << " = " << rh1->val() );
41 
42  EventIDBase t( getContext().eventID() );
43 
45  const CondDataObj *cdo = *rch;
46  if (cdo != 0) {
47  ATH_MSG_INFO(" read CH: " << rch.key() << " = " << *cdo );
48  } else {
49  ATH_MSG_ERROR(" CDO ptr for " << rch.key() << " == zero");
50  }
51 
52  return StatusCode::SUCCESS;
53 
54 }
55 
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
AlgC::AlgC
AlgC(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgC.cxx:9
AlgC::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgC.h:29
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
AlgC.h
ReadCondHandle.h
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
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
CondDataObj
Definition: CondDataObj.h:8
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
AlgC::m_rch
SG::ReadCondHandleKey< CondDataObj > m_rch
Definition: AlgC.h:31
AthAlgorithm
Definition: AthAlgorithm.h:47
SG::ReadHandle::isValid
virtual bool isValid() override final
Can the handle be successfully dereferenced?
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
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
AlgC::initialize
virtual StatusCode initialize() override
Definition: AlgC.cxx:16
HiveDataObj::val
void val(int i)
Definition: HiveDataObj.h:22
ReadHandle.h
Handle class for reading from StoreGate.
SG::ReadCondHandle::key
const std::string & key() const
Definition: ReadCondHandle.h:63
AlgC::execute
virtual StatusCode execute() override
Definition: AlgC.cxx:31