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

#include <CscILinesCondAlg.h>

Inheritance diagram for CscILinesCondAlg:
Collaboration diagram for CscILinesCondAlg:

Public Member Functions

 CscILinesCondAlg (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~CscILinesCondAlg ()=default
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) const override
virtual bool isReEntrant () const override
 Avoid scheduling algorithm multiple times.
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
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 ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

StatusCode loadDataFromLegacy (const std::string &data, nlohmann::json &json) const
 Load the Alignment data from the legacy format where the channels are parsed line wise The data is then transferred into a modern JSON blob.
StatusCode parseDataFromJSON (const nlohmann::json &lines, ALineContainer &writeCdo) const
 Parse the JSON blob to fill the I Line container.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::ReadCondHandleKey< CondAttrListCollectionm_readKey
SG::WriteCondHandleKey< ALineContainerm_writeKey
ServiceHandle< Muon::IMuonIdHelperSvcm_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
Gaudi::Property< bool > m_newFormat2020
Gaudi::Property< std::string > m_readFromJSON
 Load the alignment parameters from a JSON file.
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
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 17 of file CscILinesCondAlg.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ CscILinesCondAlg()

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

Definition at line 14 of file CscILinesCondAlg.cxx.

14 :
15 AthCondAlgorithm{name,pSvcLocator}{}

◆ ~CscILinesCondAlg()

virtual CscILinesCondAlg::~CscILinesCondAlg ( )
virtualdefault

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::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< Gaudi::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< Gaudi::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< Gaudi::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 CscILinesCondAlg::execute ( const EventContext & ctx) const
overridevirtual

Definition at line 30 of file CscILinesCondAlg.cxx.

30 {
31 SG::WriteCondHandle<ALineContainer> writeHandle{m_writeKey, ctx};
32 if (writeHandle.isValid()) {
33 ATH_MSG_DEBUG("CondHandle " << writeHandle.fullKey() << " is already valid."
34 << ". In theory this should not be called, but may happen"
35 << " if multiple concurrent events are being processed out of order.");
36 return StatusCode::SUCCESS;
37 }
38 writeHandle.addDependency(EventIDRange(IOVInfiniteRange::infiniteTime()));
39 std::unique_ptr<ALineContainer> writeCdo{std::make_unique<ALineContainer>()};
40 if (!m_readKey.empty()) {
41 SG::ReadCondHandle<CondAttrListCollection> readHandle{m_readKey, ctx};
42 if (!readHandle.isValid()) {
43 ATH_MSG_FATAL("Failed to load I lines from COOL "<<m_readKey.fullKey());
44 return StatusCode::FAILURE;
45 }
46 writeHandle.addDependency(readHandle);
47 // =======================
48 // Retrieve the collection of strings read out from the DB
49 // =======================
50 // unpack the strings in the collection and update the
51 // ALlineContainer in TDS
52 for (CondAttrListCollection::const_iterator itr = readHandle->begin();
53 itr != readHandle->end(); ++itr) {
54
55 const coral::AttributeList& atr = itr->second;
56 std::string data;
57 if (atr["data"].specification().type() == typeid(coral::Blob)) {
58 ATH_MSG_VERBOSE("Loading data as a BLOB, uncompressing...");
60 ATH_MSG_FATAL("Cannot uncompress BLOB! Aborting...");
61 return StatusCode::FAILURE;
62 }
63 } else {
64 data = *(static_cast<const std::string*>((atr["data"]).addressOfData()));
65 }
66 ATH_MSG_DEBUG("Data load is " << data << " FINISHED HERE ");
67 nlohmann::json lines = nlohmann::json::array();
68
69 // new format -----------------------------------
70 if (m_newFormat2020) {
71 nlohmann::json j = nlohmann::json::parse(data);
72 lines = j["corrections"];
73 } else {
74 // old format -----------------------------------
76 }
77 ATH_CHECK(parseDataFromJSON(lines, *writeCdo));
78 }
79 if (!m_readFromJSON.value().empty()) {
80 std::ifstream inStream{PathResolverFindCalibFile(m_readFromJSON)};
81 if (!inStream.good()) {
82 ATH_MSG_FATAL("No such file or directory");
83 return StatusCode::FAILURE;
84 }
85 nlohmann::json lines;
86 inStream >> lines;
87 ATH_CHECK(parseDataFromJSON(lines, *writeCdo));
88 }
89 }
90
91
92 ATH_CHECK(writeHandle.record(std::move(writeCdo)));
93 ATH_MSG_INFO("Saved successfully internal CSC alignment "<<m_writeKey.fullKey()<<" with validity range "<<writeHandle.getRange());
94 return StatusCode::SUCCESS;
95}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_FATAL(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
ChanAttrListMap::const_iterator const_iterator
StatusCode loadDataFromLegacy(const std::string &data, nlohmann::json &json) const
Load the Alignment data from the legacy format where the channels are parsed line wise The data is th...
SG::WriteCondHandleKey< ALineContainer > m_writeKey
SG::ReadCondHandleKey< CondAttrListCollection > m_readKey
Gaudi::Property< std::string > m_readFromJSON
Load the alignment parameters from a JSON file.
StatusCode parseDataFromJSON(const nlohmann::json &lines, ALineContainer &writeCdo) const
Parse the JSON blob to fill the I Line container.
Gaudi::Property< bool > m_newFormat2020
static EventIDRange infiniteTime()
Produces an EventIDRange that is inifinite in Time and invalid in RunLumi.
void addDependency(const EventIDRange &range)
const EventIDRange & getRange() const
StatusCode record(const EventIDRange &range, T *t)
record handle, with explicit range DEPRECATED
const DataObjID & fullKey() const
bool readBlobAsString(const coral::Blob &, std::string &)

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::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 & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

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

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ initialize()

StatusCode CscILinesCondAlg::initialize ( )
overridevirtual

Definition at line 18 of file CscILinesCondAlg.cxx.

18 {
19 ATH_CHECK(m_readKey.initialize(m_readFromJSON.value().empty()));
20 ATH_CHECK(m_writeKey.initialize());
21 ATH_CHECK(m_idHelperSvc.retrieve());
22 if (!m_readFromJSON.value().empty()){
23 ATH_MSG_INFO("Load Intenal Csc alignment from JSON "<<m_readFromJSON);
24 } else {
25 ATH_MSG_INFO("Load Internal Csc alignment from COOL <"<<m_readKey.key()<<">");
26 }
27 return StatusCode::SUCCESS;
28
29}
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::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.

◆ isClonable()

◆ isReEntrant()

virtual bool AthCondAlgorithm::isReEntrant ( ) const
inlineoverridevirtualinherited

Avoid scheduling algorithm multiple times.

With multiple concurrent events, conditions objects often expire simultaneously for all slots. To avoid that the scheduler runs the CondAlg in each slot, we declare it as "non-reentrant". This ensures that the conditions objects are only created once.

In case a particular CondAlg should behave differently, it can override this method again and return true.

See also
ATEAM-836

Definition at line 39 of file AthCondAlgorithm.h.

39{ return false; }

◆ loadDataFromLegacy()

StatusCode CscILinesCondAlg::loadDataFromLegacy ( const std::string & data,
nlohmann::json & json ) const
private

Load the Alignment data from the legacy format where the channels are parsed line wise The data is then transferred into a modern JSON blob.

Definition at line 98 of file CscILinesCondAlg.cxx.

98 {
99 // Parse corrections
100 constexpr std::string_view delimiter{"\n"};
101 json = nlohmann::json::array();
102 auto lines = CxxUtils::tokenize(data, delimiter);
103 for (const std::string& blobline : lines) {
104 nlohmann::json line;
105 constexpr std::string_view delimiter {":"};
106 auto tokens = CxxUtils::tokenize(blobline, delimiter);
107 // Check if tokens is not empty
108 if (tokens.empty()) {
109 ATH_MSG_FATAL("Empty string retrieved from DB ");
110 return StatusCode::FAILURE;
111 }
112 const std::string_view type = tokens[0];
113 // Parse line
114 if ('#' == type[0]) {
115 // skip it
116 continue;
117 }
118 if (type.compare(0, 4, "Corr") == 0) {
119 //# Amdb like clob for ilines using geometry tag ISZT-R06-02
120 //# ISZT_DATA_ID VERS TYP JFF JZZ JOB JLAY TRAS TRAZ TRAT ROTS ROTZ ROTT
121 //
122 //.... example
123 // Corr: CSL 1 -1 3 1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
124
125 constexpr std::string_view delimiter{" "};
126 auto tokens = CxxUtils::tokenize(blobline, delimiter);
127 if (tokens.size() != 12) {
128 ATH_MSG_FATAL("Invalid length in string retrieved from DB in folder. String length is "
129 << tokens.size());
130 return StatusCode::FAILURE;
131 }
132
133 ATH_MSG_VERBOSE("Parsing Line = ");
134 for (std::string_view token : tokens) ATH_MSG_VERBOSE(token << " | ");
135
136
137 // Start parsing
138 int ival = 1;
139 // Station Component identification
140 line["typ"] = std::string(tokens[ival++]);
141 line["jff"] = CxxUtils::atoi(tokens[ival++]);
142 line["jzz"] = CxxUtils::atoi(tokens[ival++]);
143 line["job"] = CxxUtils::atoi(tokens[ival++]);
144 line["jlay"] = CxxUtils::atoi(tokens[ival++]);
145
146 // I-line
147 line["tras"] = CxxUtils::atof(tokens[ival++]);
148 line["traz"] = CxxUtils::atof(tokens[ival++]);
149 line["trat"] = CxxUtils::atof(tokens[ival++]);
150 line["rots"] = CxxUtils::atof(tokens[ival++]);
151 line["rotz"] = CxxUtils::atof(tokens[ival++]);
152 line["rott"] = CxxUtils::atof(tokens[ival++]);
153 }
154 if (line.empty()) continue;
155 json.push_back(std::move(line));
156 }
157 return StatusCode::SUCCESS;
158}
nlohmann::json json
std::vector< std::string > tokenize(const std::string &the_str, std::string_view delimiters)
Splits the string into smaller substrings.
double atof(std::string_view str)
Converts a string into a double / float.
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< Gaudi::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< Gaudi::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.

◆ parseDataFromJSON()

StatusCode CscILinesCondAlg::parseDataFromJSON ( const nlohmann::json & lines,
ALineContainer & writeCdo ) const
private

Parse the JSON blob to fill the I Line container.

Definition at line 159 of file CscILinesCondAlg.cxx.

160 {
161
162 for (auto& corr : lines.items()) {
163 nlohmann::json line = corr.value();
164 ALinePar newILine{};
165
166 // Station Component identification
167 const int jff = line["jff"];
168 const int jzz = line["jzz"];
169 const int job = line["job"];
170 const int jlay = line["jlay"];
171 const std::string stationType = line["typ"];
172 newILine.setAmdbId(stationType, jzz, jff, job);
173
174 Identifier id{0};
175 bool is_valid{false};
176 if (stationType[0] == 'C') {
177 // csc case
178 constexpr int chamberLayer = 2;
179 if (job != 3) ATH_MSG_WARNING("job = " << job << " is not 3 => chamberLayer should be 1 - not existing ! setting 2");
180 id = m_idHelperSvc->cscIdHelper().channelID(stationType, jzz, jff, chamberLayer, jlay, 0, 1, is_valid);
181 ATH_MSG_VERBOSE("identifier being assigned is " << m_idHelperSvc->toString(id));
182 }
183 if (!is_valid) {
184 ATH_MSG_ERROR("There is a non CSC chamber in the list of CSC internal alignment parameters.");
185 return StatusCode::FAILURE;
186 }
187 newILine.setIdentifier(id);
188
189 newILine.setParameters(line["tras"], line["traz"], line["trat"],
190 line["rots"], line["rotz"], line["rott"]);
191 // new Iline
192 const auto insertItr = writeCdo.insert(newILine);
193 if (!insertItr.second) {
194 ATH_MSG_FATAL("Could not insert "<<newILine<<" as "<<(*insertItr.first)<<" has already been safed before" );
195 return StatusCode::FAILURE;
196
197 }
198 }
199 return StatusCode::SUCCESS;
200}
#define ATH_MSG_ERROR(x)
#define ATH_MSG_WARNING(x)
void setParameters(float s, float z, float t, float rotS, float rotZ, float rotT)
Definition ALinePar.cxx:26
void setIdentifier(const Identifier &id)
Setters and getters for the Athena Identifier.
void setAmdbId(const std::string &stName, int stEta, int stPhi, int stJob)
AMDB identifiers. They're often not the same as the ATLAS ones (TGCs)

◆ 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< Gaudi::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< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::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< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::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.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::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 }

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::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< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_idHelperSvc

ServiceHandle<Muon::IMuonIdHelperSvc> CscILinesCondAlg::m_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"}
private

Definition at line 32 of file CscILinesCondAlg.h.

32{this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};

◆ m_newFormat2020

Gaudi::Property<bool> CscILinesCondAlg::m_newFormat2020
private
Initial value:
{this, "NewFormat2020", false,
"The database folders are given in the new JSON format"}

Definition at line 34 of file CscILinesCondAlg.h.

34 {this, "NewFormat2020", false,
35 "The database folders are given in the new JSON format"};

◆ m_readFromJSON

Gaudi::Property<std::string> CscILinesCondAlg::m_readFromJSON
private
Initial value:
{this,"readFromJSON", "",
"Reads the A & B lines parameters from a JSON file instead from COOL"}

Load the alignment parameters from a JSON file.

Definition at line 37 of file CscILinesCondAlg.h.

37 {this,"readFromJSON", "",
38 "Reads the A & B lines parameters from a JSON file instead from COOL"};

◆ m_readKey

SG::ReadCondHandleKey<CondAttrListCollection> CscILinesCondAlg::m_readKey
private
Initial value:
{this, "ReadKey", "/MUONALIGN/CSC/ILINES",
"Key of input CSC/ILINES condition data"}

Definition at line 26 of file CscILinesCondAlg.h.

26 {this, "ReadKey", "/MUONALIGN/CSC/ILINES",
27 "Key of input CSC/ILINES condition data"};

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.

◆ m_writeKey

SG::WriteCondHandleKey<ALineContainer> CscILinesCondAlg::m_writeKey
private
Initial value:
{this, "WriteKey", "CscInternalAlignmentContainer",
"Key of output muon alignment CSC/ILine condition data"}

Definition at line 29 of file CscILinesCondAlg.h.

29 {this, "WriteKey", "CscInternalAlignmentContainer",
30 "Key of output muon alignment CSC/ILine condition data"};

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