Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgE.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 "AlgE.h"
6 #include "StoreGate/ReadHandle.h"
8 
9 AlgE::AlgE( const std::string& name,
10  ISvcLocator* pSvcLocator ) :
11  ::AthAlgorithm( name, pSvcLocator )
12 {
13 }
14 
15 //---------------------------------------------------------------------------
16 
18  ATH_MSG_DEBUG("initialize " << name());
19 
25 
26  ATH_MSG_INFO( "m_rdh1 id: " << m_rdh1.fullKey() );
27  ATH_MSG_INFO( "m_rch1 id: " << m_rch1.fullKey() );
28  ATH_MSG_INFO( "m_rch2 id: " << m_rch2.fullKey() );
29  ATH_MSG_INFO( "m_rch3 id: " << m_rch3.fullKey() );
30  ATH_MSG_INFO( "m_rch4 id: " << m_rch4.fullKey() );
31 
32  return StatusCode::SUCCESS;
33 }
34 
35 //---------------------------------------------------------------------------
36 
38  ATH_MSG_DEBUG("execute " << name());
39 
41  if (!rh1.isValid()) {
42  ATH_MSG_ERROR ("Could not retrieve HiveDataObj with key " << m_rdh1.key());
43  return StatusCode::FAILURE;
44  }
45 
46  ATH_MSG_INFO(" read: " << rh1.key() << " = " << rh1->val() );
47 
52 
53  EventIDBase t( getContext().eventID() );
54 
55 
56  float val {0.0};
57 
58  const CondDataObj* cdo = *ch1;
59  if (cdo != 0) {
60  ATH_MSG_INFO(" CDO1: " << *cdo );
61  val += cdo->val();
62  } else {
63  ATH_MSG_ERROR(" CDO1 ptr == zero");
64  }
65 
66  const CondDataObjY* cdoy = *ch2;
67  if (cdoy != 0) {
68  ATH_MSG_INFO(" CDO2: " << *cdoy );
69  val += cdoy->val();
70  } else {
71  ATH_MSG_ERROR(" CDO2 ptr == zero");
72  }
73 
74  cdoy = *ch3;
75  if (cdoy != 0) {
76  ATH_MSG_INFO(" CDO3: " << *cdoy );
77  val += cdoy->val();
78  } else {
79  ATH_MSG_ERROR(" CDO3 ptr == zero");
80  }
81 
82  const CondDataObjZ *cdoz = *ch4;
83  if (cdoz != 0) {
84  ATH_MSG_INFO(" CDO4: " << *cdoz );
85 
86  if (cdoz->val() != val) {
87  ATH_MSG_ERROR(" value of CDO4 is incorrect ");
88  }
89 
90  } else {
91  ATH_MSG_ERROR(" CDO# ptr == zero");
92  }
93 
94 
95  ATH_MSG_INFO("TEST: " << getContext().eventID().event_number() << " "
96  << rh1->val() << " " << **ch1 << " " << **ch2 << " " << **ch3
97  << " " << **ch4);
98 
99  return StatusCode::SUCCESS;
100 
101 }
102 
CondDataObjZ::val
void val(float f)
Definition: CondDataObjZ.h:16
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
CondDataObjZ
Definition: CondDataObjZ.h:8
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
CondDataObjY::val
void val(float f)
Definition: CondDataObjY.h:16
AlgE::m_rch2
SG::ReadCondHandleKey< CondDataObjY > m_rch2
Definition: AlgE.h:34
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
AlgE.h
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
CondDataObjY
Definition: CondDataObjY.h:8
AlgE::m_rch4
SG::ReadCondHandleKey< CondDataObjZ > m_rch4
Definition: AlgE.h:37
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
AlgE::AlgE
AlgE(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgE.cxx:9
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
AlgE::m_rch1
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition: AlgE.h:33
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?
AlgE::execute
virtual StatusCode execute() override
Definition: AlgE.cxx:37
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
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
AlgE::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgE.h:31
AlgE::m_rch3
SG::ReadCondHandleKey< CondDataObjY > m_rch3
Definition: AlgE.h:35
CondDataObj::val
void val(int i)
Definition: CondDataObj.h:16
HiveDataObj::val
void val(int i)
Definition: HiveDataObj.h:22
ReadHandle.h
Handle class for reading from StoreGate.
AlgE::initialize
virtual StatusCode initialize() override
Definition: AlgE.cxx:17