Loading [MathJax]/jax/output/SVG/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CondAlgZ.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 "CondAlgZ.h"
8 
9 CondAlgZ::CondAlgZ( const std::string& name,
10  ISvcLocator* pSvcLocator ) :
11  ::AthAlgorithm( name, pSvcLocator )
12 {
13 }
14 
16  ATH_MSG_DEBUG("initialize " << name());
17 
21 
23 
24  return StatusCode::SUCCESS;
25 }
26 
28  ATH_MSG_DEBUG("execute " << name());
29  const EventContext& ctx = Gaudi::Hive::currentContext();
30  EventIDBase now(ctx.eventID());
31 
35 
36  const CondDataObj *cdo1 = *rch1;
37  const CondDataObjY *cdo2 = *rch2;
38  const CondDataObjY *cdo3 = *rch3;
39 
40  ATH_MSG_DEBUG(" rh1: " << cdo1->val() << " rh2: " << cdo2->val()
41  << " rh3: " << cdo3->val());
42 
44 
45  // do we have a valid m_wch for current time?
46  if ( wch.isValid(now) ) {
47  ATH_MSG_DEBUG("Found valid write handle for " << wch.key());
48  return StatusCode::SUCCESS;
49  }
50 
51  ATH_MSG_DEBUG(" CondHandle " << wch.key()
52  << " not valid.");
53 
54  wch.addDependency(rch1);
55  wch.addDependency(rch2,rch3);
56 
57  float val = rch1->val() + rch2->val() + rch3->val();
58 
59  if (wch.record( std::make_unique<CondDataObjZ>
60  ( CondDataObjZ(val) ) ).isFailure()) {
61  ATH_MSG_ERROR("could not record CondDataObjZ " << wch.key()
62  << " val: " << val
63  << " with EventRange " << wch.getRange() );
64  return StatusCode::FAILURE;
65  }
66 
67  ATH_MSG_INFO("recorded new CDO " << wch.key() << " = " << val
68  << " with range " << wch.getRange() );
69 
70  return StatusCode::SUCCESS;
71 
72 }
73 
CondAlgZ::m_wch
SG::WriteCondHandleKey< CondDataObjZ > m_wch
Definition: CondAlgZ.h:35
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
CondDataObjZ
Definition: CondDataObjZ.h:8
IASCIICondDbSvc.h
SG::WriteCondHandle::getRange
const EventIDRange & getRange() const
Definition: WriteCondHandle.h:93
CondDataObjY::val
void val(float f)
Definition: CondDataObjY.h:16
SG::WriteCondHandle::record
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
Definition: WriteCondHandle.h:161
CondAlgZ::m_rchk2
SG::ReadCondHandleKey< CondDataObjY > m_rchk2
Definition: CondAlgZ.h:32
CondAlgZ::initialize
virtual StatusCode initialize() override
Definition: CondAlgZ.cxx:15
CondDataObjY
Definition: CondDataObjY.h:8
python.handimod.now
now
Definition: handimod.py:675
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
WriteCondHandle.h
CondAlgZ::CondAlgZ
CondAlgZ(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CondAlgZ.cxx:9
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
CondDataObj
Definition: CondDataObj.h:8
CondAlgZ::m_rchk3
SG::ReadCondHandleKey< CondDataObjY > m_rchk3
Definition: CondAlgZ.h:33
CondAlgZ::execute
virtual StatusCode execute() override
Definition: CondAlgZ.cxx:27
AthAlgorithm
Definition: AthAlgorithm.h:47
CondAlgZ.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
SG::WriteCondHandle::key
const std::string & key() const
Definition: WriteCondHandle.h:44
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
CondAlgZ::m_rchk1
SG::ReadCondHandleKey< CondDataObj > m_rchk1
Definition: CondAlgZ.h:31
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
SG::WriteCondHandle::isValid
bool isValid() const
Definition: WriteCondHandle.h:252
CondDataObj::val
void val(int i)
Definition: CondDataObj.h:16
SG::WriteCondHandle
Definition: WriteCondHandle.h:26
SG::WriteCondHandle::addDependency
void addDependency(const EventIDRange &range)
Definition: WriteCondHandle.h:279