1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
/** \file MaterialProperties.cc
*
*
* $Date: 2007/06/11 14:44:29 $
* $Revision: 1.3 $
* \author Maarten Thomas
*/
#include "Alignment/LaserAlignmentSimulation/interface/MaterialProperties.h"
#include "G4LogicalVolumeStore.hh"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <CLHEP/Units/SystemOfUnits.h>
using CLHEP::cm;
using CLHEP::fermi;
using CLHEP::m;
using CLHEP::MeV;
using CLHEP::micrometer;
using CLHEP::mm;
using CLHEP::ns;
MaterialProperties::MaterialProperties(int DebugLevel, double SiAbsLengthScale)
: theMaterialTable(),
theMPDebugLevel(0),
theSiAbsLengthScalingFactor(0),
theMPT(),
theTECWafer(),
theTOBWafer(),
theTIBWafer() {
theMPDebugLevel = DebugLevel;
theSiAbsLengthScalingFactor = SiAbsLengthScale;
/* *********************************************************************** */
/*
define the materials for the sensitive detectors in TEC, TIB and TOB
we need this to specify different properties for Barrel and Endcap
detectors, which is by default no longer possible in CMSSW due to
the fact that all modules are made out of the same G4Material
*/
/* *********************************************************************** */
G4double theDensity = 2.33 * CLHEP::g / CLHEP::cm3;
G4double theAtomicWeight = 28.09 * CLHEP::g / CLHEP::mole;
G4double theAtomicNumber = 14.0;
theTECWafer = new G4Material("TEC_Wafer", theAtomicNumber, theAtomicWeight, theDensity);
theTOBWafer = new G4Material("TOB_Wafer", theAtomicNumber, theAtomicWeight, theDensity);
theTIBWafer = new G4Material("TIB_Wafer", theAtomicNumber, theAtomicWeight, theDensity);
// set the properties of the materials
setMaterialProperties();
}
MaterialProperties::~MaterialProperties() {
if (theMPT != nullptr) {
delete theMPT;
}
if (theTECWafer != nullptr) {
delete theTECWafer;
}
if (theTOBWafer != nullptr) {
delete theTOBWafer;
}
if (theTIBWafer != nullptr) {
delete theTIBWafer;
}
}
void MaterialProperties::setMaterialProperties() {
/* *********************************************************************** */
/*
use this function to define material properties (like refraction
index, absorptionlenght and so on) and add them to the
MaterialPropertiesTable. Finally set the MPT to a give Material.
*/
/* *********************************************************************** */
// get the MaterialTable as it is defined in OSCAR (CMSSW now)
theMaterialTable = G4Material::GetMaterialTable();
/* *********************************************************************** */
/*
with the following code one can access the MaterialTable defined in
OSCAR. This contains all the materials needed for the CMS detector,
which are defined in the Geometry and DDD packages. COBRA takes care
of the proper conversion between a DDMaterial and a G4Material.
*/
/* *********************************************************************** */
// if (theMPDebugLevel > 1)
// {
// print the materialtable
LogDebug("SimLaserAlignment:MaterialProperties")
<< " **** here comes the material table **** " << *(G4Material::GetMaterialTable());
// }
// define the MateriapropertiesTable for the Sensitive Regions in the Tracker
// TOB_Wafer, TOB_Silicon, TID_Wafer, TIB_Wafer and TEC_Wafer
const G4int nEntries = 3;
// Photon energies
G4double PhotonEnergy[nEntries] = {1.10 * CLHEP::eV, 1.15 * CLHEP::eV, 1.20 * CLHEP::eV};
// scintillation
G4double Scintillation[nEntries] = {0.1, 1.0, 0.1};
// Refractive Index
G4double RefractiveIndex[nEntries] = {3.5400, 3.5425, 3.5450};
// Refractive Index of the Mirrors (BK7)
G4double RefractiveIndexMirror[nEntries] = {1.50669, 1.50669, 1.50669};
/* *********************************************************************** */
/* set the refractive index for the other materials to 1.0. This is *
* needed to propagate the optical photons through the detector according *
* to Peter Gumplinger. */
/* *********************************************************************** */
G4double RefractiveIndexGeneral[nEntries] = {1.0, 1.0, 1.0};
// Absorption Length
// G4double AbsorptionLengthSi[nEntries] = { 198.8 * micrometer, 198.8 *
// micrometer, 198.8 * micrometer }; ///////////////////////////////////
G4double AbsorptionLengthSi[nEntries] = {1136 * micrometer, 1136 * micrometer, 1136 * micrometer};
G4double AbsorptionLengthSiBarrel[nEntries] = {0.1 * fermi, 0.1 * fermi, 0.1 * fermi};
// Absorption length of the mirrors
G4double AbsorptionLengthMirror[nEntries] = {11.7 * cm, 0.5 * 11.7 * cm, 11.7 * cm};
// Absorption Length for dead material in the tracker; set to small values
// to kill the optical photons outside the TEC. Maybe this is later a problem
// when implementing Ray 1 to connect both TECs which eachother and with TIB
// and TOB!??
G4double AbsorptionLengthDead[nEntries] = {0.001 * micrometer, 0.001 * micrometer, 0.001 * micrometer};
// Absorption Length of the other Materials in the Tracker
G4double AbsorptionLengthGeneral[nEntries] = {75 * cm, 75 * cm, 75 * cm};
// Absorption Length of the Air in the Tracker
G4double AbsorptionLengthTAir[nEntries] = {10 * m, 1.8 * m, 10 * m};
G4double AbsorptionLengthAl[nEntries] = {10 * mm, 10 * mm, 10 * mm};
G4double AbsorptionLengthTOB_CF_Str[nEntries] = {1 * cm, 10 * cm, 1 * cm};
G4double AbsorptionLengthTOBCF[nEntries] = {0.1 * mm, 20 * mm, 0.1 * mm};
G4double AbsorptionLengthTIBCF[nEntries] = {15.0 * cm, 15.0 * cm, 15.0 * cm};
// Reflectivity of the modules
G4double SiReflectivity[nEntries] = {0.0, 0.0, 0.0};
// Efficiency of the modules
G4double TECEfficiency[nEntries] = {0.9, 0.9, 0.9};
G4double BarrelEfficiency[nEntries] = {1.0, 1.0, 1.0};
// Reflectivity of the mirrors in the Alignment Tubes
G4double Reflectivity[nEntries] = {0.05, 0.05, 0.05};
/* *********************************************************************** */
/* *********************************************************************** */
/*
define the materials for the sensitive detectors in TEC, TIB and TOB
we need this to specify different properties for Barrel and Endcap
detectors, which is by default no longer possible in CMSSW due to
the fact that all modules are made out of the same G4Material
*/
/* *********************************************************************** */
// set the options for the materials
{
for (G4MaterialTable::const_iterator theMTEntry = theMaterialTable->begin(); theMTEntry != theMaterialTable->end();
theMTEntry++) {
if (*theMTEntry) {
G4Material *theMaterial = const_cast<G4Material *>(*theMTEntry);
if (theMaterial->GetMaterialPropertiesTable()) {
theMPT = theMaterial->GetMaterialPropertiesTable();
} else {
theMPT = new G4MaterialPropertiesTable;
}
// properties of the TEC_Wafer
if (theMaterial->GetName() == "TEC_Wafer") {
theMPT->AddProperty("FASTCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("SLOWCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndex, nEntries);
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthSi, nEntries);
theMPT->AddProperty("EFFICIENCY", PhotonEnergy, TECEfficiency, nEntries);
theMPT->AddConstProperty("SCINTILLATIONYIELD", 12000.0 / MeV);
theMPT->AddConstProperty("RESOLTUIONSCALE", 1.0);
theMPT->AddConstProperty("FASTTIMECONSTANT", 20.0 * ns);
theMPT->AddConstProperty("SLOWTIMECONSTANT", 45.0 * ns);
theMPT->AddConstProperty("YIELDRATIO", 1.0);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of Silicon (used as Module Material in CMSSW)
else if (theMaterial->GetName() == "Silicon") {
theMPT->AddProperty("FASTCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("SLOWCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndex, nEntries);
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthSi, nEntries);
theMPT->AddProperty("EFFICIENCY", PhotonEnergy, TECEfficiency, nEntries);
theMPT->AddConstProperty("SCINTILLATIONYIELD", 12000.0 / MeV);
theMPT->AddConstProperty("RESOLTUIONSCALE", 1.0);
theMPT->AddConstProperty("FASTTIMECONSTANT", 20.0 * ns);
theMPT->AddConstProperty("SLOWTIMECONSTANT", 45.0 * ns);
theMPT->AddConstProperty("YIELDRATIO", 1.0);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of the TOB_Wafer, TOB_Silicon, TIB_Wafer
else if ((theMaterial->GetName() == "TOB_Wafer") || (theMaterial->GetName() == "TIB_Wafer")) {
theMPT->AddProperty("FASTCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("SLOWCOMPONENT", PhotonEnergy, Scintillation, nEntries);
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndex, nEntries);
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthSiBarrel, nEntries);
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
theMPT->AddProperty("EFFICIENCY", PhotonEnergy, BarrelEfficiency, nEntries);
theMPT->AddConstProperty("SCINTILLATIONYIELD", 12000.0 / MeV);
theMPT->AddConstProperty("RESOLTUIONSCALE", 1.0);
theMPT->AddConstProperty("FASTTIMECONSTANT", 20.0 * ns);
theMPT->AddConstProperty("SLOWTIMECONSTANT", 45.0 * ns);
theMPT->AddConstProperty("YIELDRATIO", 1.0);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of the TIB_ledge_side
else if (theMaterial->GetName() == "TIB_ledge_side") {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthGeneral, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of air
else if ((theMaterial->GetName() == "T_Air") || (theMaterial->GetName() == "Air")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthTAir, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of some materials in the Barrel
// used to absorb photons to avoid hits in other TEC
else if ((theMaterial->GetName() == "TIB_connector") || (theMaterial->GetName() == "TIB_cylinder") ||
(theMaterial->GetName() == "TID_Connector")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthDead, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of SiO2; used for the mirrors of the Alignment Tubes
else if (theMaterial->GetName() == "Si O_2") {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexMirror, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthMirror, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, Reflectivity, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of Aluminium
else if ((theMaterial->GetName() == "TOB_Aluminium") || (theMaterial->GetName() == "Aluminium")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthAl, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of TOB_CF_Str
else if ((theMaterial->GetName() == "TOB_CF_Str")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthTOB_CF_Str, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// some other Tracker materials
else if ((theMaterial->GetName() == "TID_CF") || (theMaterial->GetName() == "Nomex") ||
(theMaterial->GetName() == "TOB_Nomex") || (theMaterial->GetName() == "TID_Nomex") ||
(theMaterial->GetName() == "TOB_plate_C") || (theMaterial->GetName() == "TOB_rod") ||
(theMaterial->GetName() == "TOB_cool_DS") || (theMaterial->GetName() == "TOB_cool_SS") ||
(theMaterial->GetName() == "TID_in_cable") || (theMaterial->GetName() == "TOB_PA_rphi") ||
(theMaterial->GetName() == "TOB_frame_ele") || (theMaterial->GetName() == "TOB_PA_ster") ||
(theMaterial->GetName() == "TOB_ICB") || (theMaterial->GetName() == "TOB_CONN1") ||
(theMaterial->GetName() == "TOB_CONN2") || (theMaterial->GetName() == "TOB_CONN3") ||
(theMaterial->GetName() == "TOB_rail") || (theMaterial->GetName() == "TOB_sid_rail1") ||
(theMaterial->GetName() == "TOB_sid_rail2")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthTOBCF, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of some TIB materials
else if ((theMaterial->GetName() == "TIB_CF") || (theMaterial->GetName() == "TIB_cables_ax_out") ||
(theMaterial->GetName() == "TIB_outer_supp") || (theMaterial->GetName() == "TIB_PA_rphi") ||
(theMaterial->GetName() == "TIB_rail") || (theMaterial->GetName() == "TIB_sid_rail1") ||
(theMaterial->GetName() == "TIB_sid_rail2") || (theMaterial->GetName() == "TIB_mod_cool")) {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the reflectivity
theMPT->AddProperty("REFLECTIVITY", PhotonEnergy, SiReflectivity, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthTIBCF, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
// properties of all other materials in the detector
else {
// set the refractive index
theMPT->AddProperty("RINDEX", PhotonEnergy, RefractiveIndexGeneral, nEntries);
// set the absorptionlength
theMPT->AddProperty("ABSLENGTH", PhotonEnergy, AbsorptionLengthGeneral, nEntries);
// set the MaterialPropertiesTable
theMaterial->SetMaterialPropertiesTable(theMPT);
}
}
}
}
// loop over the logical volumes and set the material for the sensitive
// detectors
const G4LogicalVolumeStore *theLogicalVolumeStore = G4LogicalVolumeStore::GetInstance();
std::vector<G4LogicalVolume *>::const_iterator theLogicalVolume;
for (theLogicalVolume = theLogicalVolumeStore->begin(); theLogicalVolume != theLogicalVolumeStore->end();
theLogicalVolume++) {
if (((*theLogicalVolume)->GetName() == "TECModule0StereoActive") ||
((*theLogicalVolume)->GetName() == "TECModule0RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule1StereoActive") ||
((*theLogicalVolume)->GetName() == "TECModule1RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule2RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule3RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule4StereoActive") ||
((*theLogicalVolume)->GetName() == "TECModule4RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule5RphiActive") ||
((*theLogicalVolume)->GetName() == "TECModule6RphiActive")) {
// set the material
(*theLogicalVolume)->SetMaterial(theTECWafer);
if (theMPDebugLevel > 2) {
std::cout << " AC1CMS: found a logical volume: " << (*theLogicalVolume)->GetName() << std::endl;
std::cout << " AC1CMS: the logical volume material = " << (*theLogicalVolume)->GetMaterial()->GetName()
<< std::endl;
std::cout << " AC1CMS: the MaterialPropertiesTable = " << std::endl;
(*theLogicalVolume)->GetMaterial()->GetMaterialPropertiesTable()->DumpTable();
}
} else if (((*theLogicalVolume)->GetName() == "TOBActiveSter0") ||
((*theLogicalVolume)->GetName() == "TOBActiveRphi0") ||
((*theLogicalVolume)->GetName() == "TOBActiveRphi2") ||
((*theLogicalVolume)->GetName() == "TOBActiveRphi4")) {
// set the material
(*theLogicalVolume)->SetMaterial(theTOBWafer);
if (theMPDebugLevel > 2) {
std::cout << " AC1CMS: found a logical volume: " << (*theLogicalVolume)->GetName() << std::endl;
std::cout << " AC1CMS: the logical volume material = " << (*theLogicalVolume)->GetMaterial()->GetName()
<< std::endl;
std::cout << " AC1CMS: the MaterialPropertiesTable = " << std::endl;
(*theLogicalVolume)->GetMaterial()->GetMaterialPropertiesTable()->DumpTable();
}
} else if (((*theLogicalVolume)->GetName() == "TIBActiveSter0") ||
((*theLogicalVolume)->GetName() == "TIBActiveRphi0") ||
((*theLogicalVolume)->GetName() == "TIBActiveRphi2")) {
// set the material
(*theLogicalVolume)->SetMaterial(theTIBWafer);
if (theMPDebugLevel > 2) {
std::cout << " AC1CMS: found a logical volume: " << (*theLogicalVolume)->GetName() << std::endl;
std::cout << " AC1CMS: the logical volume material = " << (*theLogicalVolume)->GetMaterial()->GetName()
<< std::endl;
std::cout << " AC1CMS: the MaterialPropertiesTable = " << std::endl;
(*theLogicalVolume)->GetMaterial()->GetMaterialPropertiesTable()->DumpTable();
}
}
}
}
|