ATLAS Offline Software
Loading...
Searching...
No Matches
OutputConditionsAlg Class Reference

#include <OutputConditionsAlg.h>

Inheritance diagram for OutputConditionsAlg:
Collaboration diagram for OutputConditionsAlg:

Public Member Functions

 OutputConditionsAlg (const std::string &name, ISvcLocator *pSvcLocator)
 ~OutputConditionsAlg ()
StatusCode initialize ()
StatusCode execute ()
StatusCode finalize ()
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ToolHandle< IAthenaOutputStreamToolIAthenaOutputStreamTool_t
typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

uint64_t timeToNano (unsigned long int timesec) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< IClassIDSvc > p_clidsvc {this,"ClassIDSvc","ClassIDSvc"}
ServiceHandle< IIOVRegistrationSvcp_regsvc {this, "IOVRegistrationSvc","IOVRegistrationSvc"}
IAthenaOutputStreamTool_t m_streamer
Gaudi::Property< std::vector< std::string > > m_objectList {this,"ObjectList",{},"List of object to be written","OrderedSet<std::string>"}
Gaudi::Property< std::string > m_streamName {this,"StreamName","ConditionsAlgStream"}
Gaudi::Property< bool > m_par_writeIOV {this,"WriteIOV",true}
Gaudi::Property< unsigned int > m_par_run1 {this,"Run1",IOVTime::MINRUN,"IOV start (run-number)"}
Gaudi::Property< unsigned int > m_par_lumib1 {this,"LB1",IOVTime::MINEVENT,"IOV start (LB-number)"}
Gaudi::Property< unsigned int > m_par_run2 {this,"Run2",IOVTime::MAXRUN,"IOV end (run-number)"}
Gaudi::Property< unsigned int > m_par_lumib2 {this,"LB2",IOVTime::MAXEVENT,"IOV end (LB-number)"}
UnsignedLongProperty m_par_time1 {this,"Time1",IOVTime::MINTIMESTAMP,"IOV start (timestamp)"}
UnsignedLongProperty m_par_time2 {this,"Time2",IOVTime::MAXEVENT,"IOV end (timestamp)"}
Gaudi::Property< bool > m_par_timestamp {this,"UseTime",false,"IOV in second or Run/LB"}
Gaudi::Property< std::vector< std::string > > m_par_iovtags {this,"IOVTagList",{},"List of Tags to be written","OrderedSet<std::string>"}
DataObjIDColl m_extendedExtraObjects
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 23 of file OutputConditionsAlg.h.

Member Typedef Documentation

◆ IAthenaOutputStreamTool_t

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ OutputConditionsAlg()

OutputConditionsAlg::OutputConditionsAlg ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 16 of file OutputConditionsAlg.cxx.

17 :
18 AthAlgorithm(name, pSvcLocator)
19{}
AthAlgorithm()
Default constructor:

◆ ~OutputConditionsAlg()

OutputConditionsAlg::~OutputConditionsAlg ( )

Definition at line 22 of file OutputConditionsAlg.cxx.

23{}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode OutputConditionsAlg::execute ( )

Definition at line 53 of file OutputConditionsAlg.cxx.

53 {
54
55 return StatusCode::SUCCESS;
56}

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ extraOutputDeps()

const DataObjIDColl & AthAlgorithm::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 50 of file AthAlgorithm.cxx.

51{
52 // If we didn't find any symlinks to add, just return the collection
53 // from the base class. Otherwise, return the extended collection.
54 if (!m_extendedExtraObjects.empty()) {
56 }
57 return Algorithm::extraOutputDeps();
58}
DataObjIDColl m_extendedExtraObjects

◆ finalize()

StatusCode OutputConditionsAlg::finalize ( )

Definition at line 58 of file OutputConditionsAlg.cxx.

58 {
59 ATH_MSG_INFO ("Finalize: preparing to write conditions objects ");
60
61 StatusCode sc = m_streamer->connectOutput();
62 if (sc.isFailure()) {
63 ATH_MSG_ERROR ("Could not connect stream to output");
64 return( StatusCode::FAILURE);
65 }
66 // create list of objects
67 std::vector<std::string> types;
68 std::vector<std::string> keys;
69 std::vector<std::string> folders;
70 std::vector<std::string> tags;
71 for (unsigned int iobj=0;iobj<m_objectList.size();++iobj) {
72 // if object name contains a '#', it represents a specific typename#key
73 std::string::size_type ihash=m_objectList[iobj].find_first_of("#");
74 if (ihash==std::string::npos) {
75 // no hash, get the default object for this class, and set key
76 // note this will only get ONE object
77 // first need to know CLID from typename
78 CLID clid;
79 if (StatusCode::SUCCESS==p_clidsvc->getIDOfTypeName(
80 m_objectList[iobj],clid)) {
81 SG::DataProxy* proxy=detStore()->proxy(clid);
82 if (proxy) {
83 types.push_back(m_objectList[iobj]);
84 keys.push_back(proxy->name());
85 folders.push_back(proxy->name());
86 if (iobj<m_par_iovtags.size()) {
87 tags.push_back(m_par_iovtags[iobj]);
88 } else {
89 tags.push_back("");
90 }
91 } else {
92 ATH_MSG_ERROR ("Could not get default proxy for CLID " <<
93 clid << " typename " << m_objectList[iobj]);
94 }
95 } else {
96 ATH_MSG_ERROR ("Could not get CLID from typename " <<
97 m_objectList[iobj]);
98 }
99 } else {
100 types.push_back(m_objectList[iobj].substr(0,ihash));
101 // a second hash allows the folder to be specified after the key
102 // otherwise the folder name is taken to be the same as the key name
103 std::string::size_type ihash2=m_objectList[iobj].find_first_of("#",ihash+1);
104 if (ihash2==std::string::npos) {
105 std::string key=m_objectList[iobj].substr(ihash+1,std::string::npos);
106 keys.push_back(key);
107 folders.push_back(std::move(key));
108 } else {
109 keys.push_back(m_objectList[iobj].substr(ihash+1,ihash2-ihash-1));
110 folders.push_back(m_objectList[iobj].substr(ihash2+1,
111 std::string::npos));
112 }
113 if (iobj<m_par_iovtags.size()) {
114 tags.push_back(m_par_iovtags[iobj]);
115 } else {
116 tags.push_back("");
117 }
118 }
119 }
120 // list out all typename/key pairs to be written and construct vector
121 int nObjects=types.size();
122 IAthenaOutputStreamTool::TypeKeyPairs typeKeys(nObjects);
123 ATH_MSG_INFO ("Identified a total of " << nObjects <<
124 " objects to write out:");
125 // leave now if nothing to write
126 if (nObjects==0) return StatusCode::SUCCESS;
127 for (int i=0;i<nObjects;i++) {
128 typeKeys[i]=IAthenaOutputStreamTool::TypeKeyPair(types[i],keys[i]);
129 ATH_MSG_INFO (i << ": " << types[i] << "#" << keys[i] <<
130 "#" << folders[i]);
131 // check object actually exists, else return failure
132 CLID clid;
133 SG::DataProxy* proxy=0;
134 if (StatusCode::SUCCESS==p_clidsvc->getIDOfTypeName(types[i],clid))
135 proxy=detStore()->proxy(clid,keys[i]);
136 if (proxy==0) {
137 ATH_MSG_ERROR ("Could not find proxy for object with key " <<
138 keys[i] << " - abort write");
139 return StatusCode::FAILURE;
140 }
141 }
142
143 // stream output (write objects)
144 sc=m_streamer->streamObjects(typeKeys);
145 if (sc.isFailure()) {
146 ATH_MSG_ERROR ("Could not stream out objects");
147 return StatusCode::FAILURE;
148 }
149 // commit output
150 sc=m_streamer->commitOutput();
151 if (sc.isFailure()) {
152 ATH_MSG_ERROR ("Could not commit output stream");
153 return StatusCode::FAILURE;
154 }
155 ATH_MSG_INFO ("Written " << nObjects << " objects to output stream");
156
157 if (m_par_writeIOV) {
158 msg() << MSG::INFO <<
159 "Register objects in IOV database, interval of validity ";
160 if (m_par_timestamp) {
161 msg() << "[time] from [" <<
162 m_par_time1.value() << "] to [" << m_par_time2.value() << "]" << endmsg;
163 } else {
164 msg() << "[run,LB] from [" <<
165 m_par_run1.value() << "," << m_par_lumib1.value() << "] to [" << m_par_run2.value() <<
166 "," << m_par_lumib2.value() << "]" << endmsg;
167 }
168 int nreg=0;
169 for (int iobj=0;iobj<nObjects;++iobj) {
170 msg() << MSG::INFO << "Register object " << types[iobj] << "#" <<
171 keys[iobj] << " in IOV database folder " << folders[iobj] << " ";
172 if (tags[iobj]=="") {
173 msg() << MSG::INFO << "without tagging" << endmsg;
174 } else {
175 msg() << MSG::INFO << "with tag " << tags[iobj] << endmsg;
176 }
177 if (m_par_timestamp) {
178 sc=p_regsvc->registerIOV(types[iobj],keys[iobj],
179 folders[iobj],tags[iobj],timeToNano(m_par_time1),timeToNano(m_par_time2));
180 } else {
181 sc=p_regsvc->registerIOV(types[iobj],keys[iobj],
183 }
184 if (sc==StatusCode::SUCCESS) {
185 ++nreg;
186 } else {
187 ATH_MSG_ERROR ("Registration failed!");
188 }
189 }
190 ATH_MSG_INFO ("Registered " << nreg << " objects in IOV database");
191 } else {
192 ATH_MSG_INFO ("Objects NOT registered in IOV database");
193 }
194 return StatusCode::SUCCESS;
195}
#define endmsg
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
uint32_t CLID
The Class ID type.
static Double_t sc
static const std::vector< std::string > types
const ServiceHandle< StoreGateSvc > & detStore() const
MsgStream & msg() const
std::pair< std::string, std::string > TypeKeyPair
Stream out objects.
std::vector< TypeKeyPair > TypeKeyPairs
uint64_t timeToNano(unsigned long int timesec) const
UnsignedLongProperty m_par_time2
ServiceHandle< IClassIDSvc > p_clidsvc
Gaudi::Property< bool > m_par_writeIOV
ServiceHandle< IIOVRegistrationSvc > p_regsvc
Gaudi::Property< unsigned int > m_par_lumib2
Gaudi::Property< std::vector< std::string > > m_par_iovtags
Gaudi::Property< bool > m_par_timestamp
IAthenaOutputStreamTool_t m_streamer
Gaudi::Property< std::vector< std::string > > m_objectList
Gaudi::Property< unsigned int > m_par_run2
UnsignedLongProperty m_par_time1
Gaudi::Property< unsigned int > m_par_lumib1
Gaudi::Property< unsigned int > m_par_run1
std::vector< std::string > tags
Definition hcg.cxx:105
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ initialize()

StatusCode OutputConditionsAlg::initialize ( )

Definition at line 26 of file OutputConditionsAlg.cxx.

26 {
27 ATH_MSG_DEBUG ("in initialize()");
28
29 // get pointer to ClassIDSvc
30 if (StatusCode::SUCCESS!= p_clidsvc.retrieve()) {
31 ATH_MSG_FATAL ("ClassIDSvc not found");
32 return StatusCode::FAILURE;
33 }
34 if (m_par_writeIOV) {
35 // get pointer to IOVRegistrationSvc
36 if (StatusCode::SUCCESS!=p_regsvc.retrieve()) {
37 ATH_MSG_FATAL ("IOVRegistrationSvc not found");
38 return StatusCode::FAILURE;
39 }
40 }
41 m_streamer = IAthenaOutputStreamTool_t("AthenaOutputStreamTool/"+
43 StatusCode sc = m_streamer.retrieve();
44 if (sc.isFailure()) {
45 ATH_MSG_ERROR ("Unable to find AthenaOutputStreamTool with name " <<
47 return StatusCode::FAILURE;
48 }
49 return StatusCode::SUCCESS;
50}
#define ATH_MSG_FATAL(x)
#define ATH_MSG_DEBUG(x)
ToolHandle< IAthenaOutputStreamTool > IAthenaOutputStreamTool_t
Gaudi::Property< std::string > m_streamName

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ msg()

MsgStream & AthCommonMsg< Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Algorithm > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

StatusCode AthAlgorithm::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Algorithm > >.

Reimplemented in AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, and PyAthena::Alg.

Definition at line 66 of file AthAlgorithm.cxx.

66 {
68
69 if (sc.isFailure()) {
70 return sc;
71 }
72 ServiceHandle<ICondSvc> cs("CondSvc",name());
73 for (auto h : outputHandles()) {
74 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
75 // do this inside the loop so we don't create the CondSvc until needed
76 if ( cs.retrieve().isFailure() ) {
77 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
78 return StatusCode::SUCCESS;
79 }
80 if (cs->regHandle(this,*h).isFailure()) {
81 sc = StatusCode::FAILURE;
82 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
83 << " with CondSvc");
84 }
85 }
86 }
87 return sc;
88}
#define ATH_MSG_WARNING(x)
virtual StatusCode sysInitialize() override
Override sysInitialize.
AthCommonDataStore(const std::string &name, T... args)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ timeToNano()

uint64_t OutputConditionsAlg::timeToNano ( unsigned long int timesec) const
private

Definition at line 197 of file OutputConditionsAlg.cxx.

198{
199 // convert time specified in seconds to ns used by COOL
200 // use the magic value MAXEVENT to signal full range
201 if (timesec==IOVTime::MAXEVENT) {
203 } else {
204 return static_cast<uint64_t>(timesec)*1000000000;
205 }
206}
static constexpr uint64_t MAXTIMESTAMP
Definition IOVTime.h:58
static constexpr uint32_t MAXEVENT
Definition IOVTime.h:51

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthAlgorithm::m_extendedExtraObjects
privateinherited

Definition at line 79 of file AthAlgorithm.h.

◆ m_objectList

Gaudi::Property<std::vector<std::string> > OutputConditionsAlg::m_objectList {this,"ObjectList",{},"List of object to be written","OrderedSet<std::string>"}
private

Definition at line 44 of file OutputConditionsAlg.h.

44{this,"ObjectList",{},"List of object to be written","OrderedSet<std::string>"};

◆ m_par_iovtags

Gaudi::Property<std::vector<std::string> > OutputConditionsAlg::m_par_iovtags {this,"IOVTagList",{},"List of Tags to be written","OrderedSet<std::string>"}
private

Definition at line 54 of file OutputConditionsAlg.h.

54{this,"IOVTagList",{},"List of Tags to be written","OrderedSet<std::string>"};

◆ m_par_lumib1

Gaudi::Property<unsigned int> OutputConditionsAlg::m_par_lumib1 {this,"LB1",IOVTime::MINEVENT,"IOV start (LB-number)"}
private

Definition at line 48 of file OutputConditionsAlg.h.

48{this,"LB1",IOVTime::MINEVENT,"IOV start (LB-number)"};
static constexpr uint32_t MINEVENT
Definition IOVTime.h:50

◆ m_par_lumib2

Gaudi::Property<unsigned int> OutputConditionsAlg::m_par_lumib2 {this,"LB2",IOVTime::MAXEVENT,"IOV end (LB-number)"}
private

Definition at line 50 of file OutputConditionsAlg.h.

50{this,"LB2",IOVTime::MAXEVENT,"IOV end (LB-number)"};

◆ m_par_run1

Gaudi::Property<unsigned int> OutputConditionsAlg::m_par_run1 {this,"Run1",IOVTime::MINRUN,"IOV start (run-number)"}
private

Definition at line 47 of file OutputConditionsAlg.h.

47{this,"Run1",IOVTime::MINRUN,"IOV start (run-number)"};
static constexpr uint32_t MINRUN
Definition IOVTime.h:44

◆ m_par_run2

Gaudi::Property<unsigned int> OutputConditionsAlg::m_par_run2 {this,"Run2",IOVTime::MAXRUN,"IOV end (run-number)"}
private

Definition at line 49 of file OutputConditionsAlg.h.

49{this,"Run2",IOVTime::MAXRUN,"IOV end (run-number)"};
static constexpr uint32_t MAXRUN
Definition IOVTime.h:48

◆ m_par_time1

UnsignedLongProperty OutputConditionsAlg::m_par_time1 {this,"Time1",IOVTime::MINTIMESTAMP,"IOV start (timestamp)"}
private

Definition at line 51 of file OutputConditionsAlg.h.

51{this,"Time1",IOVTime::MINTIMESTAMP,"IOV start (timestamp)"};
static constexpr uint64_t MINTIMESTAMP
Definition IOVTime.h:56

◆ m_par_time2

UnsignedLongProperty OutputConditionsAlg::m_par_time2 {this,"Time2",IOVTime::MAXEVENT,"IOV end (timestamp)"}
private

Definition at line 52 of file OutputConditionsAlg.h.

52{this,"Time2",IOVTime::MAXEVENT,"IOV end (timestamp)"};

◆ m_par_timestamp

Gaudi::Property<bool> OutputConditionsAlg::m_par_timestamp {this,"UseTime",false,"IOV in second or Run/LB"}
private

Definition at line 53 of file OutputConditionsAlg.h.

53{this,"UseTime",false,"IOV in second or Run/LB"};

◆ m_par_writeIOV

Gaudi::Property<bool> OutputConditionsAlg::m_par_writeIOV {this,"WriteIOV",true}
private

Definition at line 46 of file OutputConditionsAlg.h.

46{this,"WriteIOV",true};

◆ m_streamer

IAthenaOutputStreamTool_t OutputConditionsAlg::m_streamer
private

Definition at line 42 of file OutputConditionsAlg.h.

◆ m_streamName

Gaudi::Property<std::string> OutputConditionsAlg::m_streamName {this,"StreamName","ConditionsAlgStream"}
private

Definition at line 45 of file OutputConditionsAlg.h.

45{this,"StreamName","ConditionsAlgStream"};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ p_clidsvc

ServiceHandle<IClassIDSvc> OutputConditionsAlg::p_clidsvc {this,"ClassIDSvc","ClassIDSvc"}
private

Definition at line 36 of file OutputConditionsAlg.h.

36{this,"ClassIDSvc","ClassIDSvc"};

◆ p_regsvc

ServiceHandle<IIOVRegistrationSvc> OutputConditionsAlg::p_regsvc {this, "IOVRegistrationSvc","IOVRegistrationSvc"}
private

Definition at line 37 of file OutputConditionsAlg.h.

37{this, "IOVRegistrationSvc","IOVRegistrationSvc"};

The documentation for this class was generated from the following files: