ATLAS Offline Software
SiDiodesParameters.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 // SiDiodesParameters.cxx
7 // Implementation file for class SiDiodesParameters
9 // (c) ATLAS Detector software
11 // Version 1.0 14/08/2001 David Calvet
13 
15 
16 namespace InDetDD {
17 
18 // Implicit constructor:
20  m_centre(),
21  m_width()
22 {}
23 
24 // Copy constructor:
26 
27 = default;
28 
29 // Constructor with parameters:
31  const SiLocalPosition &width) :
32  m_centre(centre),
33  m_width(width)
34 {}
35 
36 // Assignment operator:
38 {
39  if (this!=&parameters) {
40  m_centre=parameters.m_centre;
41  m_width=parameters.m_width;
42  } else {}
43  return *this;
44 }
45 
46 } // namespace InDetDD
InDetDD::SiDiodesParameters::SiDiodesParameters
SiDiodesParameters()
Implicit constructor:
Definition: SiDiodesParameters.cxx:19
InDetDD::SiDiodesParameters::m_centre
SiLocalPosition m_centre
position of the diodes centre
Definition: SiDiodesParameters.h:81
InDetDD::SiLocalPosition
Definition: SiLocalPosition.h:31
InDetDD::SiDiodesParameters::operator=
SiDiodesParameters & operator=(const SiDiodesParameters &parameters)
Assignment operator:
Definition: SiDiodesParameters.cxx:37
SiDiodesParameters.h
Base_Fragment.width
width
Definition: Sherpa_i/share/common/Base_Fragment.py:59
InDetDD
Message Stream Member.
Definition: FakeTrackBuilder.h:8
physics_parameters.parameters
parameters
Definition: physics_parameters.py:144
InDetDD::SiDiodesParameters::m_width
SiLocalPosition m_width
width of the diodes
Definition: SiDiodesParameters.h:82
InDetDD::SiDiodesParameters
Definition: SiDiodesParameters.h:25