ATLAS Offline Software
Loading...
Searching...
No Matches
MuonAlignmentErrorData.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7void MuonAlignmentErrorData::setAlignmentErrorRules(std::vector<MuonAlignmentErrorRule>&& vec) {
8 m_deviations = std::move(vec);
9}
10
11const std::vector<MuonAlignmentErrorData::MuonAlignmentErrorRule>& MuonAlignmentErrorData::getAlignmentErrorRules() const {
12 return m_deviations;
13}
14
15void MuonAlignmentErrorData::setClobVersion(std::string clobVersion) {
16 m_clobVersion = std::move(clobVersion);
17}
18const std::string& MuonAlignmentErrorData::getClobVersion() const {
19 return m_clobVersion;
20}
21
28void MuonAlignmentErrorData::setMuonAlignmentErrorRuleCache(std::vector<MuonAlignmentErrorRuleCache>&& vec_new) {
29 m_deviations_new = std::move(vec_new);
30}
31
32const std::vector<MuonAlignmentErrorData::MuonAlignmentErrorRuleCache>& MuonAlignmentErrorData::getMuonAlignmentErrorRuleCache() const {
33 return m_deviations_new;
34}
35
std::vector< size_t > vec
const std::vector< MuonAlignmentErrorRuleCache > & getMuonAlignmentErrorRuleCache() const
std::vector< MuonAlignmentErrorRuleCache > m_deviations_new
const std::vector< MuonAlignmentErrorRule > & getAlignmentErrorRules() const
const std::string & getClobVersion() const
void setMuonAlignmentErrorRuleCache(std::vector< MuonAlignmentErrorRuleCache > &&vec_new)
void setClobVersion(std::string clobVersion)
std::vector< MuonAlignmentErrorRule > m_deviations
void setAlignmentErrorRules(std::vector< MuonAlignmentErrorRule > &&vec)