Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgD.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 "AlgD.h"
6 #include "StoreGate/ReadHandle.h"
8 
9 AlgD::AlgD( const std::string& name,
10  ISvcLocator* pSvcLocator ) :
11  ::AthAlgorithm( name, pSvcLocator )
12 {
13 }
14 
15 //---------------------------------------------------------------------------
16 
18  ATH_MSG_DEBUG("initialize " << name());
19 
23 
24  ATH_MSG_INFO( "m_rdh1 id: " << m_rdh1.fullKey() );
25  ATH_MSG_INFO( "m_rch1 id: " << m_rch1.fullKey() );
26  ATH_MSG_INFO( "m_rch2 id: " << m_rch2.fullKey() );
27 
28  return StatusCode::SUCCESS;
29 }
30 
31 //---------------------------------------------------------------------------
32 
34  ATH_MSG_DEBUG("execute " << name());
35 
37  if (!rh1.isValid()) {
38  ATH_MSG_ERROR ("Could not retrieve HiveDataObj with key " << m_rdh1.key());
39  return StatusCode::FAILURE;
40  }
41 
42  ATH_MSG_INFO(" read: " << rh1.key() << " = " << rh1->val() );
43 
46 
47  EventIDBase t( getContext().eventID() );
48 
49  const CondDataObj *cdo = *ch1;
50  if (cdo != 0) {
51  ATH_MSG_INFO(" CDO1: " << *cdo );
52  } else {
53  ATH_MSG_ERROR(" CDO1 ptr == zero");
54  }
55 
56  cdo = *ch2;
57  if (cdo != 0) {
58  ATH_MSG_INFO(" CDO2: " << *cdo );
59  } else {
60  ATH_MSG_ERROR(" CDO2 ptr == zero");
61  }
62 
63  ATH_MSG_INFO("test: " << getContext().eventID().event_number() << " "
64  << rh1->val() << " " << **ch1 << " " << **ch2);
65 
66  return StatusCode::SUCCESS;
67 
68 }
69 
AlgD::initialize
virtual StatusCode initialize() override
Definition: AlgD.cxx:17
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
AlgD::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgD.h:29
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
AlgD.h
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
ReadCondHandle.h
AlgD::AlgD
AlgD(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgD.cxx:9
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
AlgD::m_rch1
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition: AlgD.h:31
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
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
AlgD::execute
virtual StatusCode execute() override
Definition: AlgD.cxx:33
AlgD::m_rch2
SG::ReadCondHandleKey< CondDataObj > m_rch2
Definition: AlgD.h:32
HiveDataObj::val
void val(int i)
Definition: HiveDataObj.h:22
ReadHandle.h
Handle class for reading from StoreGate.