Project
Loading...
Searching...
No Matches
TRKPetalDisk.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
14
17
18#include <fairlogger/Logger.h> // for LOG
19
20#include "TGeoManager.h" // for TGeoManager, gGeoManager
21#include "TGeoMatrix.h" // for TGeoCombiTrans, TGeoRotation, etc
22#include "TGeoTube.h" // for TGeoTube, TGeoTubeSeg
23#include "TGeoVolume.h" // for TGeoVolume, TGeoVolumeAssembly
24#include "TGeoCompositeShape.h" // for TGeoCompositeShape
25#include "TMathBase.h" // for Abs
26#include "TMath.h" // for Sin, RadToDeg, DegToRad, Cos, Tan, etc
27#include "TGeoTube.h"
28
29#include <cstdio> // for snprintf
30
31namespace o2
32{
33namespace trk
34{
35
36TRKPetalDisk::TRKPetalDisk(Int_t diskNumber, std::string diskName, Float_t z, Float_t rIn, Float_t rOut, Float_t angularCoverage, Float_t Diskx2X0)
37{
38 // Creates a simple parametrized petal disk
39 mDiskNumber = diskNumber;
40 mDiskName = diskName;
41 mZ = z;
42 mAngularCoverage = angularCoverage;
43 mx2X0 = Diskx2X0;
44 mInnerRadius = rIn;
45 mOuterRadius = rOut;
46 Float_t Si_X0 = 9.5;
47 mChipThickness = Diskx2X0 * Si_X0;
48
49 LOG(info) << "Creating TRK Disk " << mDiskNumber;
50 LOG(info) << " Using silicon X0 = " << Si_X0 << " to emulate disk radiation length.";
51 LOG(info) << " Disk z = " << mZ << " ; R_in = " << mInnerRadius << " ; R_out = " << mOuterRadius << " ; x2X0 = " << mx2X0 << " ; ChipThickness = " << mChipThickness;
52}
53
54void TRKPetalDisk::createDisk(TGeoVolume* motherVolume, TGeoCombiTrans* combiTrans)
55{
56 // Create tube, set sensitive volume, add to mother volume
57 Double_t toDeg = 180 / TMath::Pi();
58 std::string chipName = mDiskName + "_" + o2::trk::GeometryTGeo::getTRKChipPattern() + std::to_string(mDiskNumber),
59 sensName = mDiskName + "_" + Form("%s%d", GeometryTGeo::getTRKSensorPattern(), mDiskNumber);
60
61 mSensorName = sensName;
62
63 TGeoTubeSeg* sensor = new TGeoTubeSeg(mInnerRadius, mOuterRadius, mChipThickness / 2., -0.5 * mAngularCoverage * toDeg, 0.5 * mAngularCoverage * toDeg);
64 TGeoTubeSeg* chip = new TGeoTubeSeg(mInnerRadius, mOuterRadius, mChipThickness / 2., -0.5 * mAngularCoverage * toDeg, 0.5 * mAngularCoverage * toDeg);
65 TGeoTubeSeg* disk = new TGeoTubeSeg(mInnerRadius, mOuterRadius, mChipThickness / 2., -0.5 * mAngularCoverage * toDeg, 0.5 * mAngularCoverage * toDeg);
66
67 TGeoMedium* medSi = gGeoManager->GetMedium("TRK_SILICON$");
68 TGeoMedium* medAir = gGeoManager->GetMedium("TRK_AIR$");
69
70 TGeoVolume* sensVol = new TGeoVolume(sensName.c_str(), sensor, medSi);
71 sensVol->SetLineColor(kYellow);
72 TGeoVolume* chipVol = new TGeoVolume(chipName.c_str(), chip, medSi);
73 chipVol->SetLineColor(kYellow);
74 TGeoVolume* diskVol = new TGeoVolume(mDiskName.c_str(), disk, medAir);
75 diskVol->SetLineColor(kYellow);
76
77 LOG(info) << "Inserting " << sensVol->GetName() << " inside " << chipVol->GetName();
78 chipVol->AddNode(sensVol, 1, nullptr);
79
80 LOG(info) << "Inserting " << chipVol->GetName() << " inside " << diskVol->GetName();
81 diskVol->AddNode(chipVol, 1, nullptr);
82
83 // Finally put everything in the mother volume
84 TGeoCombiTrans* fwdPetalCombiTrans = new TGeoCombiTrans(*(combiTrans->MakeClone())); // Copy from petal case
85 fwdPetalCombiTrans->SetDz(mZ); // Overwrite z location
86 fwdPetalCombiTrans->RegisterYourself();
87
88 LOG(info) << "Inserting " << diskVol->GetName() << " inside " << motherVolume->GetName();
89 motherVolume->AddNode(diskVol, 1, fwdPetalCombiTrans);
90}
91// ClassImp(TRKPetalLayer);
92
93} // namespace trk
94} // namespace o2
Definition of the TRKPetalDisk class.
static const char * getTRKChipPattern()
static const char * getTRKSensorPattern()
void createDisk(TGeoVolume *motherVolume, TGeoCombiTrans *combiTrans)
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
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
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"