Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CondAlgX.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 "CondAlgX.h"
7 
9 
10 #include "GaudiKernel/ServiceHandle.h"
11 
12 #include "GaudiKernel/EventIDBase.h"
13 #include "GaudiKernel/EventIDRange.h"
14 
15 #include <chrono>
16 
17 CondAlgX::CondAlgX( const std::string& name,
18  ISvcLocator* pSvcLocator ) :
19  ::AthAlgorithm( name, pSvcLocator )
20 {
21 }
22 
24  ATH_MSG_DEBUG("initialize " << name());
25 
27 
28  ATH_CHECK( m_cds.retrieve() );
29 
32 
33  return StatusCode::SUCCESS;
34 }
35 
37  ATH_MSG_DEBUG("execute " << name());
38  const EventContext& ctx = Gaudi::Hive::currentContext();
39 
41  if (!evt.isValid()) {
42  ATH_MSG_ERROR ("Could not retrieve EventInfo");
43  return StatusCode::FAILURE;
44  }
45 
46  ATH_MSG_DEBUG(" EventInfo: r: " << evt->runNumber()
47  << " e: " << evt->eventNumber() );
48 
49 
50  EventIDBase now(ctx.eventID());
51  if (evt->eventNumber() == 10) {
52  std::this_thread::sleep_for(std::chrono::milliseconds( 500 ));
53  }
54 
56  // do we have a valid m_wch for current time?
57  if ( wch.isValid(now) ) {
58  ATH_MSG_DEBUG("CondHandle is already valid for " << now
59  << ". In theory this should not be called, but may happen"
60  << " if multiple concurrent events are being processed out of order.");
61  return StatusCode::SUCCESS;
62 
63  }
64 
65  ATH_MSG_DEBUG(" CondHandle " << wch.key()
66  << " not valid. Getting new info for dbKey \""
67  << wch.dbKey() << "\" from CondDb");
68 
69  EventIDRange r;
71  if (m_cds->getRange(wch.dbKey(), getContext(), r, val).isFailure()) {
72  ATH_MSG_ERROR(" could not find dbKey \"" << wch.dbKey()
73  << "\" in CondSvc registry");
74  return StatusCode::FAILURE;
75  }
76 
77  CondDataObj* cdo = new CondDataObj( val );
78  if (wch.record(r, cdo).isFailure()) {
79  ATH_MSG_ERROR("could not record CondDataObj " << wch.key()
80  << " = " << *cdo
81  << " with EventRange " << r);
82  return StatusCode::FAILURE;
83  }
84 
85  ATH_MSG_INFO("recorded new CDO " << wch.key() << " = " << *cdo
86  << " with range " << r);
87 
88  return StatusCode::SUCCESS;
89 }
90 
beamspotman.r
def r
Definition: beamspotman.py:676
CondAlgX::initialize
virtual StatusCode initialize() override
Definition: CondAlgX.cxx:23
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
IASCIICondDbSvc.h
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
LArG4FSStartPointFilter.evt
evt
Definition: LArG4FSStartPointFilter.py:42
CondAlgX::m_dbKey
Gaudi::Property< std::string > m_dbKey
Definition: CondAlgX.h:34
SG::WriteCondHandle::record
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
Definition: WriteCondHandle.h:161
CondAlgX::m_cds
ServiceHandle< IASCIICondDbSvc > m_cds
Definition: CondAlgX.h:36
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
SG::WriteCondHandle::dbKey
const std::string & dbKey() const
Definition: WriteCondHandle.h:91
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
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
CondAlgX::CondAlgX
CondAlgX(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CondAlgX.cxx:17
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
CondAlgX.h
SG::WriteCondHandle::isValid
bool isValid() const
Definition: WriteCondHandle.h:252
CondAlgX::m_evt
SG::ReadHandleKey< xAOD::EventInfo > m_evt
Definition: CondAlgX.h:30
CondAlgX::m_wchk
SG::WriteCondHandleKey< CondDataObj > m_wchk
Definition: CondAlgX.h:32
SG::WriteCondHandle
Definition: WriteCondHandle.h:26
SG::CondHandleKey::setDbKey
void setDbKey(const std::string &dbKey)
Definition: CondHandleKey.h:32
CondAlgX::execute
virtual StatusCode execute() override
Definition: CondAlgX.cxx:36