ATLAS Offline Software
Technology.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include <utility>
6 
8 
9 #include "MuonGeoModel/MYSQL.h"
10 
11 namespace MuonGM {
12 
13  const std::string& Technology::GetName() const { return m_name; }
14 
15  Technology::Technology(MYSQL& mysql, std::string s) : m_name(std::move(s)), thickness(0.) {
16  mysql.StoreTechnology(this);
17  }
18 
19 } // namespace MuonGM
MuonGM
Ensure that the Athena extensions are properly loaded.
Definition: GeoMuonHits.h:27
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
MuonGM::Technology::Technology
Technology(MYSQL &mysql, std::string s)
Definition: Technology.cxx:15
MuonGM::MYSQL
Definition: MYSQL.h:43
MYSQL.h
MuonGM::MYSQL::StoreTechnology
void StoreTechnology(Technology *t)
Definition: MYSQL.cxx:125
MuonGM::Technology::GetName
const std::string & GetName() const
Definition: Technology.cxx:13
Technology.h
MuonGM::Technology::m_name
std::string m_name
Definition: Technology.h:17