Project
Loading...
Searching...
No Matches
Materials.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
17#include "Materials.h"
18
19#include "DetectorsBase/Detector.h" // for the magnetic field
21
22namespace o2
23{
24namespace mid
25{
26
30
31// Hydrogen
32const float kZHydrogen = 1.;
33const float kAHydrogen = 1.00794;
34
35// Carbon
36const float kZCarbon = 6.;
37const float kACarbon = 12.0107;
38
39// Nitrogen
40const float kZNitrogen = 7.;
41const float kANitrogen = 14.0067;
42
43// Oxygen
44const float kZOxygen = 8.;
45const float kAOxygen = 15.9994;
46
47// Fluorine
48const float kZFluorine = 9.;
49const float kAFluorine = 18.998403163;
50
51// Aluminium
52const float kZAluminium = 13.;
53const float kAAluminium = 26.9815385;
54const float kDensAluminium = 2.699;
55
56// Sulfur
57const float kZSulfur = 16.;
58const float kASulfur = 32.06;
59
60// Chromium
61const float kZChromium = 24.;
62const float kAChromium = 51.9961;
63
64// Iron
65const float kZIron = 26.;
66const float kAIron = 55.845;
67
68// Nickel
69const float kZNickel = 28.;
70const float kANickel = 58.6934;
71
72// Copper
73const float kZCopper = 29.;
74const float kACopper = 63.546;
75const float kDensCopper = 8.96;
76
78const float kEpsil = 0.001; // Tracking precision [cm]
79
80// negative values below means "let the MC transport code compute the values"
81const float kMaxfd = -20.; // Maximum deflection angle due to magnetic field
82const float kStemax = -1.; // Maximum displacement for multiple scattering [cm]
83const float kDeemax = -0.3; // Maximum fractional energy loss, DLS
84const float kStmin = -0.8; // Minimum step due to continuous processes [cm]
85
86const char* kModuleName = "MID";
87
89{
90
92
93 int imat = 0; // counter of material ID
94 int fieldType; // magnetic field type
95 float maxField; // maximum magnetic field value
96
97 // get the magnetic field parameters
98 base::Detector::initFieldTrackingParams(fieldType, maxField);
99
101
103 const int nGas = 4;
104 float aGas[nGas] = {kACarbon, kAHydrogen, kAFluorine, kASulfur};
105 float zGas[nGas] = {kZCarbon, kZHydrogen, kZFluorine, kZSulfur};
106 float wGas[nGas] = {89.7 * 2 + 10 * 4, 89.7 * 2 + 10 * 4, 89.7 * 4 + 0.3 * 6, 0.3};
107 float dGas = 0.0031463;
108
109 mgr.Mixture(kModuleName, ++imat, "Gas", aGas, zGas, dGas, -nGas, wGas);
110 mgr.Medium(kModuleName, Medium::Gas, "Gas", imat, 1, fieldType, maxField, kMaxfd, kStemax, kDeemax,
111 kEpsil, kStmin);
112
114 const int nBake = 3;
115 float aBake[nBake] = {kACarbon, kAHydrogen, kAOxygen};
116 float zBake[nBake] = {kZCarbon, kZHydrogen, kZOxygen};
117 float wBake[nBake] = {7., 8., 2.};
118 float dBake = 1.4;
119
120 mgr.Mixture(kModuleName, ++imat, "Bakelite", aBake, zBake, dBake, -nBake, wBake);
121 mgr.Medium(kModuleName, Medium::Bakelite, "Bakelite", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax, kEpsil, kStmin);
122
124 const int nInox = 3;
125 float aInox[nInox] = {kAIron, kAChromium, kANickel};
126 float zInox[nInox] = {kZIron, kZChromium, kZNickel};
127 float wInox[nInox] = {73., 18., 9.};
128 float dInox = 7.93;
129
130 mgr.Mixture(kModuleName, ++imat, "Stainless steel", aInox, zInox, dInox, -nInox, wInox);
131 mgr.Medium(kModuleName, Medium::Inox, "Inox", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax, kEpsil, kStmin);
132
134 mgr.Material(kModuleName, ++imat, "Aluminium", kAAluminium, kZAluminium, kDensAluminium, 0., 0.);
135 mgr.Medium(kModuleName, Medium::Aluminium, "Aluminium", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax,
136 kEpsil, kStmin);
137
139 mgr.Material(kModuleName, ++imat, "Copper", kACopper, kZCopper, kDensCopper, 0., 0.);
140 mgr.Medium(kModuleName, Medium::Copper, "Copper", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax, kEpsil,
141 kStmin);
142
144 const int nMylar = 3;
145 float aMylar[nMylar] = {kACarbon, kAHydrogen, kAOxygen};
146 float zMylar[nMylar] = {kZCarbon, kZHydrogen, kZOxygen};
147 float wMylar[nMylar] = {8., 10., 4.};
148 float dMylar = 1.38;
149
150 mgr.Mixture(kModuleName, ++imat, "Mylar", aMylar, zMylar, dMylar, -nMylar, wMylar);
151 mgr.Medium(kModuleName, Medium::Mylar, "Mylar", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax, kEpsil, kStmin);
152
154 const int nStyro = 2;
155 float aStyro[nStyro] = {kACarbon, kAHydrogen};
156 float zStyro[nStyro] = {kZCarbon, kZHydrogen};
157 float wStyro[nStyro] = {8., 8.};
158 float dStyro = 0.028;
159
160 mgr.Mixture(kModuleName, ++imat, "Styrofoam", aStyro, zStyro, dStyro, -nStyro, wStyro);
161 mgr.Medium(kModuleName, Medium::Styrofoam, "Styrofoam", imat, 0, fieldType, maxField, kMaxfd, kStemax, kDeemax, kEpsil, kStmin);
162
164 const int nNomex = 4;
165 float aNomex[nNomex] = {kACarbon, kAHydrogen, kANitrogen, kAOxygen};
166 float zNomex[nNomex] = {kZCarbon, kZHydrogen, kZNitrogen, kZOxygen};
167 float wNomex[nNomex] = {14., 10., 2., 2.};
168 float dNomex = 1.38;
169 mgr.Mixture(kModuleName, ++imat, "Nomex", aNomex, zNomex, dNomex, -nNomex, wNomex);
170 mgr.Medium(kModuleName, Medium::Nomex, "Nomex", imat, 0, fieldType, maxField, kMaxfd, kStemax,
172}
173
174TGeoMedium* assertMedium(int imed)
175{
177 auto med = mgr.getTGeoMedium(kModuleName, imed);
178 if (med == nullptr) {
179 throw std::runtime_error("Could not retrieve medium " + std::to_string(imed) + " for " + kModuleName);
180 }
181 return med;
182}
183
184} // namespace mid
185} // namespace o2
Definition of the Detector class.
Implementation of the MID materials definitions.
static void initFieldTrackingParams(int &mode, float &maxfield)
Definition Detector.cxx:143
static MaterialManager & Instance()
const float kANitrogen
Definition Materials.cxx:41
const float kAHydrogen
Definition Materials.cxx:33
const float kZFluorine
Definition Materials.cxx:48
const float kMaxfd
Definition Materials.cxx:81
const float kAFluorine
Definition Materials.cxx:49
const float kAIron
Definition Materials.cxx:66
const float kACopper
Definition Materials.cxx:74
const float kZCarbon
Definition Materials.cxx:36
const float kDensAluminium
Definition Materials.cxx:54
void createMaterials()
Definition Materials.cxx:88
TGeoMedium * assertMedium(int imed)
@ Styrofoam
Definition Materials.h:35
@ Bakelite
Definition Materials.h:30
@ Aluminium
Definition Materials.h:32
const float kZSulfur
Definition Materials.cxx:57
const float kACarbon
Definition Materials.cxx:37
const float kAOxygen
Definition Materials.cxx:45
const float kDeemax
Definition Materials.cxx:83
const float kZIron
Definition Materials.cxx:65
const float kZNickel
Definition Materials.cxx:69
const float kZNitrogen
Definition Materials.cxx:40
const float kEpsil
Tracking parameters (values taken from AliMUONCommonGeometryBuilder)
Definition Materials.cxx:78
const float kASulfur
Definition Materials.cxx:58
const char * kModuleName
Definition Materials.cxx:86
const float kZHydrogen
Definition Materials.cxx:32
const float kAAluminium
Definition Materials.cxx:53
const float kANickel
Definition Materials.cxx:70
const float kZAluminium
Definition Materials.cxx:52
const float kAChromium
Definition Materials.cxx:62
const float kStmin
Definition Materials.cxx:84
const float kDensCopper
Definition Materials.cxx:75
const float kStemax
Definition Materials.cxx:82
const float kZOxygen
Definition Materials.cxx:44
const float kZCopper
Definition Materials.cxx:73
const float kZChromium
Definition Materials.cxx:61
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52