Project
Loading...
Searching...
No Matches
Detector.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
12#include <FairVolume.h>
13
14#include <TVirtualMC.h>
15#include <TVirtualMCStack.h>
16#include <TGeoVolume.h>
17
18#include "DetectorsBase/Stack.h"
22
23using o2::itsmft::Hit;
24
25namespace o2
26{
27namespace trk
28{
29float getDetLengthFromEta(const float eta, const float radius)
30{
31 return 2. * (10. + radius * std::cos(2 * std::atan(std::exp(-eta))));
32}
33
35 : o2::base::DetImpl<Detector>("TRK", true),
36 mTrackData(),
37 mHits(o2::utils::createSimVector<o2::itsmft::Hit>())
38{
39}
40
41Detector::Detector(bool active)
42 : o2::base::DetImpl<Detector>("TRK", true),
43 mTrackData(),
44 mHits(o2::utils::createSimVector<o2::itsmft::Hit>())
45{
46 auto& trkPars = TRKBaseParam::Instance();
47
48 if (trkPars.configFile != "") {
49 configFromFile(trkPars.configFile);
50 } else {
51 buildTRKNewVacuumVessel();
52 configToFile();
53 configServices();
54 }
55
56 LOGP(info, "Summary of TRK configuration:");
57 for (auto& layer : mLayers) {
58 LOGP(info, "Layer: {} name: {} r: {} cm | z: {} cm | thickness: {} cm", layer.getNumber(), layer.getName(), layer.getInnerRadius(), layer.getZ(), layer.getChipThickness());
59 }
60}
61
62Detector::~Detector()
63{
64 if (mHits) {
66 }
67}
68
69void Detector::ConstructGeometry()
70{
73}
74
75void Detector::configDefault()
76{
77
78 // Build TRK detector according to the scoping document
79
80 mLayers.clear();
81
82 LOGP(warning, "Loading Scoping Document configuration for ALICE3 TRK");
83 // mLayers.emplace_back(0, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(0)}, 0.5f, 50.f, 100.e-4);
84 // mLayers.emplace_back(1, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(1)}, 1.2f, 50.f, 100.e-4);
85 // mLayers.emplace_back(2, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(2)}, 2.5f, 50.f, 100.e-4);
86 mLayers.emplace_back(0, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(0)}, 3.78f, 124.f, 100.e-3);
87 mLayers.emplace_back(1, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(1)}, 7.f, 124.f, 100.e-3);
88 mLayers.emplace_back(2, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(2)}, 12.f, 124.f, 100.e-3);
89 mLayers.emplace_back(3, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(3)}, 20.f, 124.f, 100.e-3);
90 mLayers.emplace_back(4, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(4)}, 30.f, 124.f, 100.e-3);
91 mLayers.emplace_back(5, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(5)}, 45.f, 258.f, 100.e-3);
92 mLayers.emplace_back(6, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(6)}, 60.f, 258.f, 100.e-3);
93 mLayers.emplace_back(7, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(7)}, 80.f, 258.f, 100.e-3);
94}
95
96void Detector::buildTRKNewVacuumVessel()
97{
98 // Build the TRK detector according to changes proposed during
99 // https://indico.cern.ch/event/1407704/
100 // to adhere to the changes that were presented at the ALICE 3 Upgrade days in March 2024
101 // L3 -> 7 cm, L4 -> 9 cm
102
103 mLayers.clear();
104
105 LOGP(warning, "Loading \"After Upgrade Days March 2024\" configuration for ALICE3 TRK");
106 // mLayers.emplace_back(0, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(0)}, 0.5f, 50.f, 100.e-4);
107 // mLayers.emplace_back(1, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(1)}, 1.2f, 50.f, 100.e-4);
108 // mLayers.emplace_back(2, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(2)}, 2.5f, 50.f, 100.e-4);
109 mLayers.emplace_back(0, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(0)}, 7.f, 124.f, 100.e-3);
110 LOGP(info, "TRKLayer created. Name: {}", std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(0)});
111 mLayers.emplace_back(1, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(1)}, 9.f, 124.f, 100.e-3);
112 mLayers.emplace_back(2, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(2)}, 12.f, 124.f, 100.e-3);
113 mLayers.emplace_back(3, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(3)}, 20.f, 124.f, 100.e-3);
114 mLayers.emplace_back(4, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(4)}, 30.f, 124.f, 100.e-3);
115 mLayers.emplace_back(5, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(5)}, 45.f, 258.f, 100.e-3);
116 mLayers.emplace_back(6, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(6)}, 60.f, 258.f, 100.e-3);
117 mLayers.emplace_back(7, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(7)}, 80.f, 258.f, 100.e-3);
118
119 auto& trkPars = TRKBaseParam::Instance();
120
121 // Middle layers
122 mLayers[0].setLayout(trkPars.layoutML);
123 mLayers[1].setLayout(trkPars.layoutML);
124 mLayers[2].setLayout(trkPars.layoutML);
125 mLayers[3].setLayout(trkPars.layoutML);
126
127 // Outer tracker
128 mLayers[4].setLayout(trkPars.layoutOL);
129 mLayers[5].setLayout(trkPars.layoutOL);
130 mLayers[6].setLayout(trkPars.layoutOL);
131 mLayers[7].setLayout(trkPars.layoutOL);
132}
133
134void Detector::configFromFile(std::string fileName)
135{
136 // Override the default geometry if config file provided
137 std::ifstream confFile(fileName);
138 if (!confFile.good()) {
139 LOGP(fatal, "File {} not found, aborting.", fileName);
140 }
141
142 mLayers.clear();
143
144 LOGP(info, "Overriding geometry of ALICE3 TRK using {} file.", fileName);
145
146 std::string line;
147 std::vector<float> tmpBuff;
148 int layerCount{0};
149 while (std::getline(confFile, line)) {
150 if (line[0] == '/') {
151 continue;
152 }
153 tmpBuff.clear();
154 std::stringstream ss(line);
155 float val;
156 std::string substr;
157 while (getline(ss, substr, '\t')) {
158 tmpBuff.push_back(std::stof(substr));
159 }
160 mLayers.emplace_back(layerCount, std::string{GeometryTGeo::getTRKLayerPattern() + std::to_string(layerCount)}, tmpBuff[0], tmpBuff[1], tmpBuff[2]);
161 ++layerCount;
162 }
163}
164
165void Detector::configToFile(std::string fileName)
166{
167 LOGP(info, "Exporting TRK Detector layout to {}", fileName);
168 std::ofstream conFile(fileName.c_str(), std::ios::out);
169 conFile << "/// TRK configuration file: inn_radius z_length lay_thickness" << std::endl;
170 for (auto layer : mLayers) {
171 conFile << layer.getInnerRadius() << "\t" << layer.getZ() << "\t" << layer.getChipThickness() << std::endl;
172 }
173}
174
175void Detector::configServices()
176{
177 mServices = TRKServices();
178}
179
180void Detector::createMaterials()
181{
182 int ifield = 2; // ?
183 float fieldm = 10.0; // ?
185
186 float tmaxfdSi = 0.1; // .10000E+01; // Degree
187 float stemaxSi = 0.0075; // .10000E+01; // cm
188 float deemaxSi = 0.1; // 0.30000E-02; // Fraction of particle's energy 0<deemax<=1
189 float epsilSi = 1.0E-4; // .10000E+01;
190 float stminSi = 0.0; // cm "Default value used"
191
192 float tmaxfdAir = 0.1; // .10000E+01; // Degree
193 float stemaxAir = .10000E+01; // cm
194 float deemaxAir = 0.1; // 0.30000E-02; // Fraction of particle's energy 0<deemax<=1
195 float epsilAir = 1.0E-4; // .10000E+01;
196 float stminAir = 0.0; // cm "Default value used"
197
198 float tmaxfdCer = 0.1; // .10000E+01; // Degree
199 float stemaxCer = .10000E+01; // cm
200 float deemaxCer = 0.1; // 0.30000E-02; // Fraction of particle's energy 0<deemax<=1
201 float epsilCer = 1.0E-4; // .10000E+01;
202 float stminCer = 0.0; // cm "Default value used"
203
204 // AIR
205 float aAir[4] = {12.0107, 14.0067, 15.9994, 39.948};
206 float zAir[4] = {6., 7., 8., 18.};
207 float wAir[4] = {0.000124, 0.755267, 0.231781, 0.012827};
208 float dAir = 1.20479E-3;
209
210 // Carbon fiber
211 float aCf[2] = {12.0107, 1.00794};
212 float zCf[2] = {6., 1.};
213
214 o2::base::Detector::Mixture(1, "AIR$", aAir, zAir, dAir, 4, wAir);
215 o2::base::Detector::Medium(1, "AIR$", 1, 0, ifield, fieldm, tmaxfdAir, stemaxAir, deemaxAir, epsilAir, stminAir);
216
217 o2::base::Detector::Material(3, "SILICON$", 0.28086E+02, 0.14000E+02, 0.23300E+01, 0.93600E+01, 0.99900E+03);
218 o2::base::Detector::Medium(3, "SILICON$", 3, 0, ifield, fieldm, tmaxfdSi, stemaxSi, deemaxSi, epsilSi, stminSi);
219}
220
221void Detector::createGeometry()
222{
223 TGeoManager* geoManager = gGeoManager;
224 TGeoVolume* vALIC = geoManager->GetVolume("barrel");
225 if (!vALIC) {
226 LOGP(fatal, "Could not find barrel volume while constructing TRK geometry");
227 }
228 new TGeoVolumeAssembly(GeometryTGeo::getTRKVolPattern());
229 TGeoVolume* vTRK = geoManager->GetVolume(GeometryTGeo::getTRKVolPattern());
230 vALIC->AddNode(vTRK, 2, new TGeoTranslation(0, 30., 0));
231
232 char vstrng[100] = "TRKVol";
233 vTRK->SetTitle(vstrng);
234
235 for (auto& layer : mLayers) {
236 layer.createLayer(vTRK);
237 }
238
239 // Add service for inner tracker
240 mServices.createServices(vTRK);
241 mPetalCases.clear();
242 // Add petal cases (the sensitive layers inside the petal cases get constructed here too)
243 auto& trkPars = TRKBaseParam::Instance();
244 for (Int_t petalCaseNumber = 0; petalCaseNumber < 4; ++petalCaseNumber) {
245 mPetalCases.emplace_back(petalCaseNumber, vTRK, trkPars.irisOpen);
246 mServices.excavateFromVacuum(mPetalCases[petalCaseNumber].getFullName());
247 }
248 mServices.registerVacuum(vTRK);
249}
250
251void Detector::InitializeO2Detector()
252{
253 LOG(info) << "Initialize TRK O2Detector";
254 mGeometryTGeo = GeometryTGeo::Instance();
255 defineSensitiveVolumes();
256}
257
258void Detector::defineSensitiveVolumes()
259{
260 TGeoManager* geoManager = gGeoManager;
261 TGeoVolume* v;
262
263 TString volumeName;
264 LOGP(info, "Adding TRK Sensitive Volumes");
265
266 // Add petal case sensitive volumes
267 for (int petalCase = 0; petalCase < 4; ++petalCase) {
268 // Petal layers
269 for (int petalLayer = 0; petalLayer < mPetalCases[petalCase].mPetalLayers.size(); ++petalLayer) {
270 volumeName = mPetalCases[petalCase].mPetalLayers[petalLayer].getSensorName();
271 if (petalLayer == 0) {
272 mFirstOrLastLayers.push_back(volumeName.Data());
273 }
274 LOGP(info, "Trying {}", volumeName.Data());
275 v = geoManager->GetVolume(volumeName.Data());
276 LOGP(info, "Adding TRK Sensitive Volume {}", v->GetName());
277 AddSensitiveVolume(v);
278 }
279 // Petal disks
280 for (int petalDisk = 0; petalDisk < mPetalCases[petalCase].mPetalDisks.size(); ++petalDisk) {
281 volumeName = mPetalCases[petalCase].mPetalDisks[petalDisk].getSensorName();
282 LOGP(info, "Trying {}", volumeName.Data());
283 v = geoManager->GetVolume(volumeName.Data());
284 LOGP(info, "Adding TRK Sensitive Volume {}", v->GetName());
285 AddSensitiveVolume(v);
286 }
287 }
288
289 // The names of the TRK sensitive volumes have the format: TRKLayer(0...mLayers.size()-1)
290 for (int j{0}; j < mLayers.size(); j++) {
291 volumeName = GeometryTGeo::getTRKSensorPattern() + TString::Itoa(j, 10);
292 if (j == mLayers.size() - 1) {
293 mFirstOrLastLayers.push_back(volumeName.Data());
294 }
295 LOGP(info, "Trying {}", volumeName.Data());
296 v = geoManager->GetVolume(volumeName.Data());
297 LOGP(info, "Adding TRK Sensitive Volume {}", v->GetName());
298 AddSensitiveVolume(v);
299 }
300}
301
302void Detector::EndOfEvent() { Reset(); }
303
304void Detector::Register()
305{
306 // This will create a branch in the output tree called Hit, setting the last
307 // parameter to kFALSE means that this collection will not be written to the file,
308 // it will exist only during the simulation
309
310 if (FairRootManager::Instance()) {
311 FairRootManager::Instance()->RegisterAny(addNameTo("Hit").data(), mHits, true);
312 }
313}
314
315void Detector::Reset()
316{
317 if (!o2::utils::ShmManager::Instance().isOperational()) {
318 mHits->clear();
319 }
320}
321
322bool Detector::InsideFirstOrLastLayer(std::string layerName)
323{
324 bool inside = false;
325 for (auto& firstOrLastLayer : mFirstOrLastLayers) {
326 if (firstOrLastLayer == layerName) {
327 inside = true;
328 break;
329 }
330 }
331 return inside;
332}
333
334bool Detector::ProcessHits(FairVolume* vol)
335{
336 // This method is called from the MC stepping
337 if (!(fMC->TrackCharge())) {
338 return false;
339 }
340
341 int lay = vol->getVolumeId();
342 int volID = vol->getMCid();
343
344 // Is it needed to keep a track reference when the outer ITS volume is encountered?
345 auto stack = (o2::data::Stack*)fMC->GetStack();
346 // if (fMC->IsTrackExiting() && (lay == 0 || lay == mLayers.size() - 1)) {
347 if (fMC->IsTrackExiting() && InsideFirstOrLastLayer(vol->GetName())) {
348 // Keep the track refs for the innermost and outermost layers only
349 o2::TrackReference tr(*fMC, GetDetId());
350 tr.setTrackID(stack->GetCurrentTrackNumber());
351 tr.setUserId(lay);
352 stack->addTrackReference(tr);
353 }
354 bool startHit = false, stopHit = false;
355 unsigned char status = 0;
356 if (fMC->IsTrackEntering()) {
357 status |= Hit::kTrackEntering;
358 }
359 if (fMC->IsTrackInside()) {
360 status |= Hit::kTrackInside;
361 }
362 if (fMC->IsTrackExiting()) {
363 status |= Hit::kTrackExiting;
364 }
365 if (fMC->IsTrackOut()) {
366 status |= Hit::kTrackOut;
367 }
368 if (fMC->IsTrackStop()) {
369 status |= Hit::kTrackStopped;
370 }
371 if (fMC->IsTrackAlive()) {
372 status |= Hit::kTrackAlive;
373 }
374
375 // track is entering or created in the volume
376 if ((status & Hit::kTrackEntering) || (status & Hit::kTrackInside && !mTrackData.mHitStarted)) {
377 startHit = true;
378 } else if ((status & (Hit::kTrackExiting | Hit::kTrackOut | Hit::kTrackStopped))) {
379 stopHit = true;
380 }
381
382 // increment energy loss at all steps except entrance
383 if (!startHit) {
384 mTrackData.mEnergyLoss += fMC->Edep();
385 }
386 if (!(startHit | stopHit)) {
387 return false; // do noting
388 }
389
390 if (startHit) {
391 mTrackData.mEnergyLoss = 0.;
392 fMC->TrackMomentum(mTrackData.mMomentumStart);
393 fMC->TrackPosition(mTrackData.mPositionStart);
394 mTrackData.mTrkStatusStart = status;
395 mTrackData.mHitStarted = true;
396 }
397 if (stopHit) {
398 TLorentzVector positionStop;
399 fMC->TrackPosition(positionStop);
400 // Retrieve the indices with the volume path
401 int stave(0), halfstave(0), chipinmodule(0), module;
402 fMC->CurrentVolOffID(1, chipinmodule);
403 fMC->CurrentVolOffID(2, module);
404 fMC->CurrentVolOffID(3, halfstave);
405 fMC->CurrentVolOffID(4, stave);
406
407 Hit* p = addHit(stack->GetCurrentTrackNumber(), lay, mTrackData.mPositionStart.Vect(), positionStop.Vect(),
408 mTrackData.mMomentumStart.Vect(), mTrackData.mMomentumStart.E(), positionStop.T(),
409 mTrackData.mEnergyLoss, mTrackData.mTrkStatusStart, status);
410 // p->SetTotalEnergy(vmc->Etot());
411
412 // RS: not sure this is needed
413 // Increment number of Detector det points in TParticle
414 stack->addHit(GetDetId());
415 }
416
417 return true;
418}
419
420o2::itsmft::Hit* Detector::addHit(int trackID, int detID, const TVector3& startPos, const TVector3& endPos,
421 const TVector3& startMom, double startE, double endTime, double eLoss, unsigned char startStatus,
422 unsigned char endStatus)
423{
424 mHits->emplace_back(trackID, detID, startPos, endPos, startMom, startE, endTime, eLoss, startStatus, endStatus);
425 return &(mHits->back());
426}
427} // namespace trk
428} // namespace o2
429
431
432// Define Factory method for calling from the outside
433extern "C" {
438}
Definition of the Stack class.
Definition of the ITSMFT Hit class.
uint32_t j
Definition RawData.h:0
uint32_t stack
Definition RawData.h:1
ClassImp(o2::trk::Detector)
o2::base::Detector * create_detector_trk(bool active)
Definition Detector.cxx:434
void Mixture(Int_t imat, const char *name, Float_t *a, Float_t *z, Float_t dens, Int_t nlmat, Float_t *wmat)
Definition Detector.cxx:66
void Medium(Int_t numed, const char *name, Int_t nmat, Int_t isvol, Int_t ifield, Float_t fieldm, Float_t tmaxfd, Float_t stemax, Float_t deemax, Float_t epsil, Float_t stmin, Float_t *ubuf=nullptr, Int_t nbuf=0)
Definition Detector.cxx:72
static void initFieldTrackingParams(int &mode, float &maxfield)
Definition Detector.cxx:143
void Material(Int_t imat, const char *name, Float_t a, Float_t z, Float_t dens, Float_t radl, Float_t absl, Float_t *buf=nullptr, Int_t nwbuf=0)
Definition Detector.cxx:59
static o2::base::Detector * create(bool active)
Definition Detector.h:39
static ShmManager & Instance()
Definition ShmManager.h:61
const GLdouble * v
Definition glcorearb.h:832
GLboolean * data
Definition glcorearb.h:298
GLuint GLfloat * val
Definition glcorearb.h:1582
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310
void createGeometry(TGeoManager &geom, TGeoVolume &topVolume)
Definition Geometry.cxx:74
void createMaterials()
Definition Materials.cxx:91
float getDetLengthFromEta(const float eta, const float radius)
Definition Detector.cxx:29
void freeSimVector(std::vector< T > *ptr)
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
Common utility functions.
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"