Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CondAlgY.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 "CondAlgY.h"
8 
9 #include "GaudiKernel/ServiceHandle.h"
10 
11 CondAlgY::CondAlgY( const std::string& name,
12  ISvcLocator* pSvcLocator ) :
13  ::AthAlgorithm( name, pSvcLocator )
14 {
15 }
16 
18  ATH_MSG_DEBUG("initialize " << name());
19 
20  ATH_CHECK( m_cds.retrieve() );
21 
24 
27 
28  return StatusCode::SUCCESS;
29 }
30 
32  ATH_MSG_DEBUG("execute " << name());
33  const EventContext& ctx = Gaudi::Hive::currentContext();
34  EventIDBase now(ctx.eventID());
35 
38 
39  // do we have a valid m_wch for current time?
40  if ( wch1.isValid(now) ) {
41  ATH_MSG_DEBUG(" Found a valid write handle for " << wch1.key());
42  }
43  else {
44 
45  ATH_MSG_DEBUG(" CondHandle " << wch1.key()
46  << " not valid. Getting new info for dbKey \""
47  << wch1.dbKey() << "\" from CondDb");
48 
49  EventIDRange r;
51  if (m_cds->getRange(wch1.dbKey(), getContext(), r, val).isFailure()) {
52  ATH_MSG_ERROR(" could not find dbKey \"" << wch1.dbKey()
53  << "\" in CondSvc registry");
54  return StatusCode::FAILURE;
55  }
56 
57  CondDataObjY* cdo = new CondDataObjY( val );
58  if (wch1.record(r, cdo).isFailure()) {
59  ATH_MSG_ERROR("could not record CondDataObjY " << wch1.key()
60  << " = " << *cdo
61  << " with EventRange " << r);
62  return StatusCode::FAILURE;
63  }
64  ATH_MSG_INFO("recorded new CDO " << wch1.key() << " = " << *cdo
65  << " with range " << r);
66  }
67 
68  // do we have a valid wch for current time?
69  if ( wch2.isValid(now) ) {
70  ATH_MSG_DEBUG(" Found a valid write handle for " << wch2.key());
71  }
72  else {
73 
74  ATH_MSG_DEBUG(" CondHandle " << wch2.key()
75  << " not valid. Getting new info for dbKey \""
76  << wch2.dbKey() << "\" from CondDb");
77 
78  EventIDRange r;
80  if (m_cds->getRange(wch2.dbKey(), getContext(), r, val).isFailure()) {
81  ATH_MSG_ERROR(" could not find dbKey \"" << wch2.dbKey()
82  << "\" in CondSvc registry");
83  return StatusCode::FAILURE;
84  }
85 
86  CondDataObjY* cdo = new CondDataObjY( val );
87  if (wch2.record(r, cdo).isFailure()) {
88  ATH_MSG_ERROR("could not record CondDataObjY " << wch2.key()
89  << " = " << *cdo
90  << " with EventRange " << r);
91  return StatusCode::FAILURE;
92  }
93  ATH_MSG_INFO("recorded new CDO " << wch2.key() << " = " << *cdo
94  << " with range " << r);
95  }
96 
97  return StatusCode::SUCCESS;
98 
99 }
100 
beamspotman.r
def r
Definition: beamspotman.py:676
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
IASCIICondDbSvc.h
CondAlgY::CondAlgY
CondAlgY(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CondAlgY.cxx:11
SG::WriteCondHandle::record
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
Definition: WriteCondHandle.h:161
CondAlgY::execute
virtual StatusCode execute() override
Definition: CondAlgY.cxx:31
CondAlgY::initialize
virtual StatusCode initialize() override
Definition: CondAlgY.cxx:17
CondDataObjY
Definition: CondDataObjY.h:8
CondAlgY::m_dbk1
Gaudi::Property< std::string > m_dbk1
Definition: CondAlgY.h:30
python.handimod.now
now
Definition: handimod.py:675
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
CondAlgY::m_cds
ServiceHandle< IASCIICondDbSvc > m_cds
Definition: CondAlgY.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
SG::WriteCondHandle::dbKey
const std::string & dbKey() const
Definition: WriteCondHandle.h:91
CondAlgY::m_wch2
SG::WriteCondHandleKey< CondDataObjY > m_wch2
Definition: CondAlgY.h:28
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
AthAlgorithm
Definition: AthAlgorithm.h:47
IASCIICondDbSvc::dbData_t
float dbData_t
Definition: IASCIICondDbSvc.h:19
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)
CondAlgY.h
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
SG::WriteCondHandle::isValid
bool isValid() const
Definition: WriteCondHandle.h:252
SG::WriteCondHandle
Definition: WriteCondHandle.h:26
SG::CondHandleKey::setDbKey
void setDbKey(const std::string &dbKey)
Definition: CondHandleKey.h:32
CondAlgY::m_wch1
SG::WriteCondHandleKey< CondDataObjY > m_wch1
Definition: CondAlgY.h:27
CondAlgY::m_dbk2
Gaudi::Property< std::string > m_dbk2
Definition: CondAlgY.h:31