ATLAS Offline Software
ActsMuonAlignCondAlg.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "ActsMuonAlignCondAlg.h"
6 
8 #include <GeoModelKernel/GeoPerfUtils.h>
9 #include <GeoModelKernel/GeoClearAbsPosAction.h>
11 
12 
13 using namespace MuonGMR4;
14 
15 #define CREATE_READHANDLE(CONT_TYPE, KEY) \
16  SG::ReadCondHandle<CONT_TYPE> readHandle{KEY, ctx}; \
17  if (!readHandle.isValid()) { \
18  ATH_MSG_FATAL(__FILE__<<":"<<__LINE__ \
19  <<" Failed to load "<<KEY.fullKey()); \
20  return StatusCode::FAILURE; \
21  }
22 
23 ActsMuonAlignCondAlg::ActsMuonAlignCondAlg(const std::string& name, ISvcLocator* pSvcLocator):
24  AthReentrantAlgorithm{name, pSvcLocator}{}
25 
27 
33  ATH_CHECK(m_idHelperSvc.retrieve());
36  if (m_techs.empty()) {
37  ATH_MSG_FATAL("The detector manager does not contain any elements");
38  return StatusCode::FAILURE;
39  }
40  auto hasDetector = [this](const ActsTrk::DetectorType d) -> bool {
41  return std::find(m_techs.begin(),m_techs.end(), d) != m_techs.end();
42  };
43 
45  hasDetector(ActsTrk::DetectorType::Mm) ||
46  hasDetector(ActsTrk::DetectorType::sTgc));
49  hasDetector(ActsTrk::DetectorType::sTgc));
51 
52 
53 
54  for (const ActsTrk::DetectorType det : m_techs) {
56  ATH_MSG_INFO("Register new alignment container "<<m_writeKeys.back().fullKey());
57  }
58  ATH_CHECK(m_writeKeys.initialize());
59  return StatusCode::SUCCESS;
60 }
61 
63  if (re->detectorType() == ActsTrk::DetectorType::Mdt ||
64  re->detectorType() == ActsTrk::DetectorType::Tgc) {
65  return m_idHelperSvc->chamberId(re->identify());
66  } else if (re->detectorType() == ActsTrk::DetectorType::Rpc) {
68  if (!m_idHelperSvc->hasMDT() ||
69  (std::abs(re->stationEta()) == 7 && m_idHelperSvc->stationNameString(re->identify()) == "BML")) {
70  return m_idHelperSvc->rpcIdHelper().elementID(re->stationName(), re->stationEta(), re->stationPhi(), 1);
72  } else {
73  return m_idHelperSvc->mdtIdHelper().elementID(re->stationName(), re->stationEta(), re->stationPhi());
74  }
75  }
77  return re->identify();
78 }
80  deltaMap& alignDeltas,
81  alignTechMap& techTransforms) const {
82  if (m_readKeyALines.empty()) {
83  ATH_MSG_DEBUG("Loading of the A line parameters deactivated");
84  return StatusCode::SUCCESS;
85  }
86 
88  const ALineContainer* aLineContainer{*readHandle};
89  std::vector<const MuonReadoutElement*> readoutEles = m_detMgr->getAllReadoutElements();
90  ATH_MSG_INFO("Load the alignment of "<<readoutEles.size()<<" detector elements");
91  for (const MuonReadoutElement* re : readoutEles) {
92  const GeoAlignableTransform* alignTrans = re->alignableTransform();
93  if (!alignTrans) {
94  ATH_MSG_WARNING("The readout element "<<m_idHelperSvc->toStringDetEl(re->identify())
95  <<" has no alignable transform.");
96  continue;
97  }
98  std::shared_ptr<const Amg::Transform3D>& cached = alignDeltas[alignTrans];
99  if (cached) {
100  ATH_MSG_DEBUG("The alignable transformation for "<<m_idHelperSvc->toStringChamber(re->identify())
101  <<" has been cached before. ");
102  techTransforms[re->detectorType()].insert(alignTrans);
103  continue;
104  }
106  const Identifier stationId = alignmentId(re);
107  ALineContainer::const_iterator aLineItr = aLineContainer->find(stationId);
108  if (aLineItr == aLineContainer->end()) {
109  ATH_MSG_VERBOSE("No Alines were stored for "<<m_idHelperSvc->toString(re->identify())
110  <<". Used "<<m_idHelperSvc->toString(stationId)<<" as station Identifier");
111  continue;
112  }
114  cached = std::make_shared<Amg::Transform3D>(aLineItr->delta());
115  techTransforms[re->detectorType()].insert(alignTrans);
116  }
117  return StatusCode::SUCCESS;
118 }
121 
122  if (!m_applyMdtAsBuilt && !m_applyBLines) {
123  return StatusCode::SUCCESS;
124  }
125  std::unique_ptr<MdtAlignmentStore> internAlign = std::make_unique<MdtAlignmentStore>(m_idHelperSvc.get());
126  const MdtAsBuiltContainer* asBuiltCont{nullptr};
127  const BLineContainer* bLines{nullptr};
128  if (m_applyMdtAsBuilt) {
130  asBuiltCont = readHandle.cptr();
131  }
132  if (m_applyBLines) {
134  bLines = readHandle.cptr();
135  }
136  const MdtIdHelper& idHelper{m_idHelperSvc->mdtIdHelper()};
137  for (auto itr = idHelper.module_begin(); itr != idHelper.module_end(); ++itr) {
138  const Identifier& stationId{*itr};
139  const BLinePar* bline{nullptr};
140  if (bLines) {
141  BLineContainer::const_iterator itr = bLines->find(stationId);
142  if (itr != bLines->end()) bline = &(*itr);
143  }
144  const MdtAsBuiltPar* asBuilt{nullptr};
145  if (asBuiltCont) {
146  MdtAsBuiltContainer::const_iterator itr = asBuiltCont->find(stationId);
147  if (itr != asBuiltCont->end()) asBuilt = &(*itr);
148  }
149  if (asBuilt || bline) internAlign->storeDistortion(stationId, bline, asBuilt);
150  }
151  // Down cast the alignment pointer
152  store.internalAlignment = std::move(internAlign);
153  return StatusCode::SUCCESS;
154 }
158  return StatusCode::SUCCESS;
159  }
160  std::unique_ptr<MmAlignmentStore> internAlign = std::make_unique<MmAlignmentStore>();
161  if (m_applyMmPassivation) {
163  internAlign->passivation = readHandle.cptr();
164  }
165  if (m_applyNswAsBuilt) {
167  internAlign->asBuiltPars = readHandle->microMegaData;
168  }
169  if (m_applyBLines) {
172  std::vector<const MuonReadoutElement*> reEles = m_detMgr->getAllReadoutElements();
173  for (const MuonReadoutElement* re : reEles){
174  if (re->detectorType() != ActsTrk::DetectorType::Mm) continue;
175  const Identifier stationId = alignmentId(re);
176  BLineContainer::const_iterator itr = readHandle->find(stationId);
177  if (itr != readHandle->end()) internAlign->cacheBLine(re->identify(), *itr);
178  }
179  }
180  store.internalAlignment = std::move(internAlign);
181  return StatusCode::SUCCESS;
182 }
185 
186  if (!m_applyNswAsBuilt && !m_applyBLines) {
187  return StatusCode::SUCCESS;
188  }
189  std::unique_ptr<sTgcAlignmentStore> internalAlign = std::make_unique<sTgcAlignmentStore>();
190  if (m_applyNswAsBuilt) {
192  internalAlign->asBuiltPars = readHandle->sTgcData;
193  }
194  if (m_applyBLines) {
197  std::vector<const MuonReadoutElement*> reEles = m_detMgr->getAllReadoutElements();
198  for (const MuonReadoutElement* re : reEles){
199  if (re->detectorType() != ActsTrk::DetectorType::sTgc) continue;
200  const Identifier stationId = alignmentId(re);
201  BLineContainer::const_iterator itr = readHandle->find(stationId);
202  if (itr != readHandle->end()) internalAlign->cacheBLine(re->identify(), *itr);
203  }
204  }
205  store.internalAlignment = std::move(internalAlign);
206  return StatusCode::SUCCESS;
207 }
208 
210  ActsTrk::DetectorType detType,
213  if (m_applyALines) {
215  writeHandle.addDependency(readHandle);
216  }
217  const bool isNsw = detType == ActsTrk::DetectorType::sTgc ||
218  detType == ActsTrk::DetectorType::Mm;
219  const bool isMdt = detType == ActsTrk::DetectorType::Mdt;
220  if (m_applyBLines&& (isNsw || isMdt)) {
222  writeHandle.addDependency(readHandle);
223  }
224  if (m_applyMdtAsBuilt && isMdt) {
226  writeHandle.addDependency(readHandle);
227  }
230  writeHandle.addDependency(readHandle);
231  }
232  if (m_applyNswAsBuilt && isNsw) {
234  writeHandle.addDependency(readHandle);
235  }
236  return StatusCode::SUCCESS;
237 }
238 
239 StatusCode ActsMuonAlignCondAlg::execute(const EventContext& ctx) const {
240  deltaMap alignDeltas{};
241  alignTechMap techTransforms{};
242  unsigned int memBeforeAlign = GeoPerfUtils::getMem();
243  ATH_CHECK(loadDeltas(ctx, alignDeltas, techTransforms));
244 
245  std::vector<const MuonReadoutElement*> readoutEles = m_detMgr->getAllReadoutElements();
247  unsigned int numAligned{0};
248  for (size_t det =0 ; det < m_techs.size(); ++det) {
250  const ActsTrk::DetectorType subDet = m_techs[det];
251 
253  if (writeHandle.isValid()) {
254  ATH_MSG_VERBOSE("The alignment constants for "<<ActsTrk::to_string(subDet)
255  <<" are still valid.");
256  continue;
257  }
258  std::unique_ptr<ActsTrk::DetectorAlignStore> writeCdo = std::make_unique<ActsTrk::DetectorAlignStore>(subDet);
259 
260  const std::set<const GeoAlignableTransform*>& toStore = techTransforms[subDet];
262  for (const GeoAlignableTransform* alignable : toStore) {
263  const std::shared_ptr<const Amg::Transform3D>& cached = alignDeltas[alignable];
264  if (!cached) continue;
265  writeCdo->geoModelAlignment->setDelta(alignable, alignDeltas[alignable]);
266  }
267  writeCdo->geoModelAlignment->lockDelta();
268  if (subDet == ActsTrk::DetectorType::Mdt) {
269  ATH_CHECK(loadMdtDeformPars(ctx,*writeCdo));
270  } else if (subDet == ActsTrk::DetectorType::Mm) {
271  ATH_CHECK(loadMmDeformPars(ctx, *writeCdo));
272  } else if (subDet == ActsTrk::DetectorType::sTgc) {
273  ATH_CHECK(loadStgcDeformPars(ctx, *writeCdo));
274  }
276  ATH_CHECK(declareDependencies(ctx, subDet, writeHandle));
277  if (m_fillGeoAlignStore) {
279  for (const MuonReadoutElement* re : readoutEles) {
280  if (re->detectorType() == subDet) {
281  const Amg::Transform3D& detTrf{re->getMaterialGeom()->getAbsoluteTransform(writeCdo->geoModelAlignment.get())};
282  ATH_MSG_VERBOSE("Detector element "<<m_idHelperSvc->toStringDetEl(re->identify())<<" is located at "
283  <<Amg::toString(detTrf));
284  }
285  }
287  writeCdo->geoModelAlignment->getDeltas()->clear();
288  writeCdo->geoModelAlignment->lockPosCache();
289  } else if (m_fillAlignStoreCache) {
290  for (const MuonReadoutElement* re : readoutEles){
291  numAligned+= re->storeAlignedTransforms(*writeCdo);
292  }
294  writeCdo->geoModelAlignment.reset();
295  }
296  ATH_CHECK(writeHandle.record(std::move(writeCdo)));
297  }
298 
299  ATH_MSG_VERBOSE("Only "<<numAligned<<" out of "<<readoutEles.size()<<" were picked up by the alignment cutalg");
300  alignDeltas.clear();
301  techTransforms.clear();
303  GeoClearAbsPosAction whipeTreeTop{};
304  for (unsigned int treeTop = 0 ; treeTop < m_detMgr->getNumTreeTops(); ++treeTop) {
305  m_detMgr->getTreeTop(treeTop)->exec(&whipeTreeTop);
306  }
307 
308  unsigned int memAfterAlign = GeoPerfUtils::getMem();
309  ATH_MSG_INFO("Caching of the alignment parameters required "<<(memAfterAlign - memBeforeAlign) / 1024<<" MB of memory");
310  return StatusCode::SUCCESS;
311 }
312 
313 #undef CREATE_READHANDLE
ActsMuonAlignCondAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: ActsMuonAlignCondAlg.cxx:239
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
store
StoreGateSvc * store
Definition: fbtTestBasics.cxx:69
ActsMuonAlignCondAlg::m_fillGeoAlignStore
Gaudi::Property< bool > m_fillGeoAlignStore
Flag toggling whether the GeoAlignmentStore shall be filled.
Definition: ActsMuonAlignCondAlg.h:103
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
MuonGMR4::MuonDetectorManager::getDetectorTypes
std::vector< ActsTrk::DetectorType > getDetectorTypes() const
Returns a list of all detector types.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonDetectorManager.cxx:135
ActsMuonAlignCondAlg::loadDeltas
StatusCode loadDeltas(const EventContext &ctx, deltaMap &alignDeltas, alignTechMap &techTransforms) const
Loads the ALineContainer from the conditions store and fills the deltaMap with the A-Line delta trans...
Definition: ActsMuonAlignCondAlg.cxx:79
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
find
std::string find(const std::string &s)
return a remapped string
Definition: hcg.cxx:135
ActsTrk::DetectorAlignStore::geoModelAlignment
std::shared_ptr< GeoAlignmentStore > geoModelAlignment
Store containing the aligned GeoModel nodes.
Definition: DetectorAlignStore.h:31
ActsTrk::DetectorType
DetectorType
Simple enum to Identify the Type of the ACTS sub detector.
Definition: GeometryDefs.h:17
ActsMuonAlignCondAlg.h
ActsMuonAlignCondAlg::declareDependencies
StatusCode declareDependencies(const EventContext &ctx, ActsTrk::DetectorType detType, SG::WriteCondHandle< ActsTrk::DetectorAlignStore > &writeHandle) const
Loads the corresponding ReadCondHandles from the Conditions store and adds their IOVs to the dependen...
Definition: ActsMuonAlignCondAlg.cxx:209
ActsTrk::DetectorAlignStore
Definition: DetectorAlignStore.h:20
hist_file_dump.d
d
Definition: hist_file_dump.py:137
ActsTrk::DetectorType::Tgc
@ Tgc
Resitive Plate Chambers.
MuonGMR4::MuonReadoutElement
The MuonReadoutElement is an abstract class representing the geometry representing the muon detector.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/MuonReadoutGeometryR4/MuonReadoutElement.h:38
MuonGMR4::MuonDetectorManager::getAllReadoutElements
std::vector< const MuonReadoutElement * > getAllReadoutElements() const
Returns the list of all detector elements.
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
ActsMuonAlignCondAlg::m_applyBLines
Gaudi::Property< bool > m_applyBLines
Apply the chamber deformation model (Mdts + Nsw)
Definition: ActsMuonAlignCondAlg.h:99
ActsTrk::DetectorType::sTgc
@ sTgc
Micromegas (NSW)
SG::VarHandleKey::empty
bool empty() const
Test if the key is blank.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:150
ReadCondHandle.h
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore
const ServiceHandle< StoreGateSvc > & detStore() const
The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
Definition: AthCommonDataStore.h:95
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
MmAlignmentStore::asBuiltPars
MmAsBuiltPtr asBuiltPars
Definition: MmAlignmentStore.h:24
ActsMuonAlignCondAlg::m_fillAlignStoreCache
Gaudi::Property< bool > m_fillAlignStoreCache
Flag toggling whether the alignment store shall be filled with the transforms or not.
Definition: ActsMuonAlignCondAlg.h:101
ActsMuonAlignCondAlg::alignmentId
Identifier alignmentId(const MuonGMR4::MuonReadoutElement *reElement) const
Returns the Identifier serving as key to find the alignment parameters connected with the readout ele...
Definition: ActsMuonAlignCondAlg.cxx:62
MdtAlignmentStore::storeDistortion
void storeDistortion(const Identifier &detElId, const BLinePar *bline, const MdtAsBuiltPar *asBuilt)
Definition: MdtAlignmentStore.cxx:12
Amg::toString
std::string toString(const Translation3D &translation, int precision=4)
GeoPrimitvesToStringConverter.
Definition: GeoPrimitivesToStringConverter.h:40
ActsMuonAlignCondAlg::m_readNswAsBuiltKey
SG::ReadCondHandleKey< NswAsBuiltDbData > m_readNswAsBuiltKey
Definition: ActsMuonAlignCondAlg.h:76
MuonGMR4
Definition: ChamberAssembleTool.h:16
NswPassivationDbData
Definition: NswPassivationDbData.h:20
MmAlignmentStore::cacheBLine
void cacheBLine(const Identifier &detElId, const BLinePar &bline)
Caches the micromega BLine parameter.
Definition: MmAlignmentStore.cxx:8
MuonGMR4::MuonDetectorManager::getNumTreeTops
unsigned int getNumTreeTops() const override final
Access specifically the individual readout element technologies.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonDetectorManager.cxx:122
ActsTrk::DetectorType::Mm
@ Mm
Maybe not needed in the migration.
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
ActsMuonAlignCondAlg::m_readMdtAsBuiltKey
SG::ReadCondHandleKey< MdtAsBuiltContainer > m_readMdtAsBuiltKey
Definition: ActsMuonAlignCondAlg.h:74
WritePulseShapeToCool.det
det
Definition: WritePulseShapeToCool.py:204
Amg::Transform3D
Eigen::Affine3d Transform3D
Definition: GeoPrimitives.h:46
ActsMuonAlignCondAlg::m_detMgr
const MuonGMR4::MuonDetectorManager * m_detMgr
Definition: ActsMuonAlignCondAlg.h:87
MdtIdHelper
Definition: MdtIdHelper.h:61
ActsMuonAlignCondAlg::m_writeKeys
SG::WriteCondHandleKeyArray< ActsTrk::DetectorAlignStore > m_writeKeys
Definition: ActsMuonAlignCondAlg.h:81
ActsMuonAlignCondAlg::m_readNswPassivKey
SG::ReadCondHandleKey< NswPassivationDbData > m_readNswPassivKey
Definition: ActsMuonAlignCondAlg.h:78
ActsMuonAlignCondAlg::deltaMap
std::unordered_map< const GeoAlignableTransform *, std::shared_ptr< const Amg::Transform3D > > deltaMap
Association map of the GeoAlignableTransforms with the rigid alignment transformations.
Definition: ActsMuonAlignCondAlg.h:41
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
ALineContainer
std::set< ALinePar, std::less<> > ALineContainer
Definition: CorrContainer.h:16
ActsMuonAlignCondAlg::m_applyMmPassivation
Gaudi::Property< bool > m_applyMmPassivation
Definition: ActsMuonAlignCondAlg.h:89
ActsMuonAlignCondAlg::m_applyNswAsBuilt
Gaudi::Property< bool > m_applyNswAsBuilt
Definition: ActsMuonAlignCondAlg.h:91
ActsMuonAlignCondAlg::m_techs
std::vector< ActsTrk::DetectorType > m_techs
Definition: ActsMuonAlignCondAlg.h:66
ActsMuonAlignCondAlg::alignTechMap
std::map< ActsTrk::DetectorType, std::set< const GeoAlignableTransform * > > alignTechMap
Association map of the GeoAlignable transforms with the detector technologies.
Definition: ActsMuonAlignCondAlg.h:43
BLinePar
Definition: BLinePar.h:14
MdtAsBuiltContainer
std::set< MdtAsBuiltPar, std::less<> > MdtAsBuiltContainer
Definition: CorrContainer.h:24
MuonGMR4::MuonDetectorManager::getTreeTop
PVConstLink getTreeTop(unsigned int i) const override final
Returns the i-th top node of the MuonSystem trees.
Definition: MuonPhaseII/MuonDetDescr/MuonReadoutGeometryR4/src/MuonDetectorManager.cxx:125
IOVInfiniteRange.h
ActsTrk::DetectorType::Mdt
@ Mdt
MuonSpectrometer.
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
python.decorators.cached.cached
def cached(func)
Decorator to cache function return value.
Definition: cached.py:6
ActsMuonAlignCondAlg::initialize
virtual StatusCode initialize() override
Definition: ActsMuonAlignCondAlg.cxx:26
ActsMuonAlignCondAlg::loadStgcDeformPars
StatusCode loadStgcDeformPars(const EventContext &ctx, ActsTrk::DetectorAlignStore &store) const
Definition: ActsMuonAlignCondAlg.cxx:183
MdtAsBuiltPar
Container classifier the MDT as-built parameters See parameter description in http://atlas-muon-align...
Definition: MdtAsBuiltPar.h:18
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
sTgcAlignmentStore::cacheBLine
void cacheBLine(const Identifier &detElId, const BLinePar &bline)
Caches the micromega BLine parameter.
Definition: sTgcAlignmentStore.cxx:8
re
const boost::regex re(r_e)
CREATE_READHANDLE
#define CREATE_READHANDLE(CONT_TYPE, KEY)
Definition: ActsMuonAlignCondAlg.cxx:15
ActsTrk::DetectorType::Rpc
@ Rpc
Monitored Drift Tubes.
ActsMuonAlignCondAlg::ActsMuonAlignCondAlg
ActsMuonAlignCondAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: ActsMuonAlignCondAlg.cxx:23
ActsMuonAlignCondAlg::loadMdtDeformPars
StatusCode loadMdtDeformPars(const EventContext &ctx, ActsTrk::DetectorAlignStore &store) const
Loads the BLine container and the Mdt-as built parameters from the Conditions store and stores them i...
Definition: ActsMuonAlignCondAlg.cxx:119
ActsMuonAlignCondAlg::m_readKeyBLines
SG::ReadCondHandleKey< BLineContainer > m_readKeyBLines
Definition: ActsMuonAlignCondAlg.h:71
SG::WriteCondHandleKey< ActsTrk::DetectorAlignStore >
MmAlignmentStore::passivation
const NswPassivationDbData * passivation
Passivation is subdivided into several PCBs Ship the complete container with the alignment store.
Definition: MmAlignmentStore.h:20
ActsMuonAlignCondAlg::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition: ActsMuonAlignCondAlg.h:85
IOVInfiniteRange::infiniteTime
static EventIDRange infiniteTime()
Produces an EventIDRange that is inifinite in Time and invalid in RunLumi.
Definition: IOVInfiniteRange.h:47
BLineContainer
std::set< BLinePar, std::less<> > BLineContainer
Definition: CorrContainer.h:20
ActsMuonAlignCondAlg::loadMmDeformPars
StatusCode loadMmDeformPars(const EventContext &ctx, ActsTrk::DetectorAlignStore &store) const
Definition: ActsMuonAlignCondAlg.cxx:155
ActsMuonAlignCondAlg::m_keyToken
Gaudi::Property< std::string > m_keyToken
Definition: ActsMuonAlignCondAlg.h:83
ActsMuonAlignCondAlg::m_applyALines
Gaudi::Property< bool > m_applyALines
Apply translations and rotations to align the Muon stations.
Definition: ActsMuonAlignCondAlg.h:97
SG::WriteCondHandle
Definition: WriteCondHandle.h:26
ActsMuonAlignCondAlg::m_readKeyALines
SG::ReadCondHandleKey< ALineContainer > m_readKeyALines
Definition: ActsMuonAlignCondAlg.h:68
sTgcAlignmentStore::asBuiltPars
sTgcAsBuiltPtr asBuiltPars
Definition: sTgcAlignmentStore.h:20
NswAsBuiltDbData
Definition: NswAsBuiltDbData.h:17
ActsMuonAlignCondAlg::m_applyMdtAsBuilt
Gaudi::Property< bool > m_applyMdtAsBuilt
Definition: ActsMuonAlignCondAlg.h:94
SG::WriteCondHandle::addDependency
void addDependency(const EventIDRange &range)
Definition: WriteCondHandle.h:275
mapkey::key
key
Definition: TElectronEfficiencyCorrectionTool.cxx:37