Project
Loading...
Searching...
No Matches
Detector.h
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
15#ifndef ALICEO2_FT0_DETECTOR_H_
16#define ALICEO2_FT0_DETECTOR_H_
17
18#include <TGeoShape.h>
20#include "DetectorsBase/Detector.h" // for Detector
21#include "FT0Base/Geometry.h"
23#include <TGeoManager.h> // for gGeoManager, TGeoManager (ptr only)
24
25class FairModule;
26
27class FairVolume;
28class TGeoVolume;
29class TGraph;
30
31namespace o2
32{
33namespace ft0
34{
35class Geometry;
36}
37} // namespace o2
38
39namespace o2
40{
41namespace ft0
42{
43// using HitType = o2::BasicXYZEHit<float>;
44class Geometry;
45class Detector : public o2::base::DetImpl<Detector>
46{
47 public:
48 enum constants {
49 kAir = 1,
50 kVac = 3,
52 kGlass = 6,
53 kAl = 15,
55 kOptAl = 17,
57 kCable = 23,
58 kMCPwalls = 25
59 }; // materials
60
64 Detector(Bool_t Active);
65
67 Detector() = default;
68
70 ~Detector() override;
71
73 void InitializeO2Detector() override;
74
76 Bool_t ProcessHits(FairVolume* v) override;
77 o2::ft0::HitType* AddHit(float x, float y, float z, float time, float energy, Int_t trackId, Int_t detId);
78
79 void Register() override;
80
81 std::vector<o2::ft0::HitType>* getHits(Int_t iColl)
82 {
83 if (iColl == 0) {
84 return mHits;
85 }
86 return nullptr;
87 }
88
89 void Reset() override;
90 void EndOfEvent() override { Reset(); }
91
93 void CreateMaterials();
94 void ConstructGeometry() override;
95 void ConstructOpGeometry() override;
96 void SetOneMCP(TGeoVolume* stl);
97
98 void SetCablesA(TGeoVolume* stl);
99 TGeoVolume* SetCablesSize(int mod);
100
101 // Optical properties reader: e-Energy, abs-AbsorptionLength[cm], n-refractive index
103 Int_t ReadOptProperties(const std::string inputFilePath);
105 Bool_t RegisterPhotoE(float energy);
106 void Print(std::ostream* os) const;
107
110 void Read(std::istream* is);
111
112 void DefineSim2LUTindex();
114 void addAlignableVolumes() const override;
115 // Return Chip Volume UID
117 Int_t chipVolUID(Int_t id) const
118 {
120 }
121
122 private:
124 Detector(const Detector& rhs);
125
126 Int_t mIdSens1; // Sensetive volume in T0
127 TGraph* mPMTeff = nullptr; // pmt registration effeicincy
128
129 // Optical properties to be extracted from file
130 std::vector<Double_t> mPhotonEnergyD;
131 std::vector<Double_t> mAbsorptionLength;
132 std::vector<Double_t> mRefractionIndex;
133 std::vector<Double_t> mQuantumEfficiency;
134
135 // Optical properties to be set to constants
136 std::vector<Double_t> mEfficAll;
137 std::vector<Double_t> mRindexAir;
138 std::vector<Double_t> mAbsorAir;
139 std::vector<Double_t> mRindexCathodeNext;
140 std::vector<Double_t> mAbsorbCathodeNext;
141 std::vector<Double_t> mEfficMet;
142 std::vector<Double_t> mReflMet;
143 std::vector<Double_t> mRindexMet;
144 std::vector<Double_t> mReflBlackPaper;
145 std::vector<Double_t> mAbsBlackPaper;
146 std::vector<Double_t> mEffBlackPaper;
147 std::vector<Double_t> mReflFrontWindow;
148 std::vector<Double_t> mEffFrontWindow;
149 std::vector<Double_t> mRindexFrontWindow;
150
151 // Define the aluminium frame for the detector
152 TGeoVolume* constructFrameAGeometry(); //A-side
153 TGeoVolume* constructFrameCGeometry(); //C-side
154 std::string cPlateShapeString();
155
156 // BEGIN: Support structure constants
157 // define some error to avoid overlaps
158 static constexpr Float_t sEps = 0.05;
159 static constexpr Float_t sFrameZ = 5.700;
160
161 // PMT socket dimensions
162 static constexpr Float_t sPmtSide = 5.950;
163 static constexpr Float_t sPmtZ = 3.750;
164
165 // quartz radiator socket dimensions
166 static constexpr Float_t sQuartzRadiatorSide = 5.350;
167 static constexpr Float_t sQuartzRadiatorZ = 1.950;
168 // for the rounded socket corners
169 static constexpr Float_t sCornerRadius = 0.300;
170
171 // quartz & PMT socket transformations
172 static constexpr Float_t sQuartzHeight = -sFrameZ / 2 + sQuartzRadiatorZ / 2;
173 static constexpr Float_t sPmtHeight = sFrameZ / 2 - sPmtZ / 2;
174 static constexpr Float_t sPmtCornerTubePos = -0.15;
175 static constexpr Float_t sPmtCornerPos = 2.825;
176 static constexpr Float_t sEdgeCornerPos[2] = {-6.515, -0.515};
177 static constexpr Float_t sQuartzFrameOffsetX = -1.525;
178 // END: Support structure constants
179
181 std::vector<o2::ft0::HitType>* mHits = nullptr;
182
183 // Define volume IDs
184 int mREGVolID = -1;
185 int mTOPVolID = -1;
186 int mMTOVolID = -1;
187
189 void defineSensitiveVolumes();
190
191 Detector& operator=(const Detector&);
192
193 Geometry* mGeometry = nullptr;
194
195 template <typename Det>
196 friend class o2::base::DetImpl;
197
198 int mTrackIdTop;
199 int mTrackIdMCPtop; // TEMPORARY
200
201 int mSim2LUT[Geometry::Nchannels];
202
203 Double_t mPosModuleAx[Geometry::NCellsA];
204 Double_t mPosModuleAy[Geometry::NCellsA];
205 Double_t mPosModuleCx[Geometry::NCellsC];
206 Double_t mPosModuleCy[Geometry::NCellsC];
207 Double_t mPosModuleCz[Geometry::NCellsC];
208 Float_t mStartC[3] = {20., 20, 5.5};
209 Float_t mStartA[3] = {20., 20., 5};
210 Float_t mInStart[3] = {2.9491, 2.9491, 2.6};
211
212 ClassDefOverride(Detector, 6);
213};
214
215// Input and output function for standard C++ input/output.
216std::ostream& operator<<(std::ostream& os, Detector& source);
217
218std::istream& operator>>(std::istream& os, Detector& source);
219} // namespace ft0
220} // namespace o2
221
222#ifdef USESHM
223namespace o2
224{
225namespace base
226{
227template <>
228struct UseShm<o2::ft0::Detector> {
229 static constexpr bool value = true;
230};
231} // namespace base
232} // namespace o2
233#endif
234
235#endif
Definition of the Detector class.
int16_t time
Definition RawEventData.h:4
Definition of the FIT hits class.
static int getSensID(o2::detectors::DetID detid, int sensid)
static constexpr ID FT0
Definition DetID.h:75
void SetOneMCP(TGeoVolume *stl)
Definition Detector.cxx:201
void Read(std::istream *is)
TGeoVolume * SetCablesSize(int mod)
Definition Detector.cxx:327
Int_t ReadOptProperties(const std::string inputFilePath)
void DefineSim2LUTindex()
~Detector() override
Destructor.
Definition Detector.cxx:59
void DefineOpticalProperties()
void InitializeO2Detector() override
Initialization of the detector is done here.
Definition Detector.cxx:64
void EndOfEvent() override
Definition Detector.h:90
std::vector< o2::ft0::HitType > * getHits(Int_t iColl)
Definition Detector.h:81
Bool_t ProcessHits(FairVolume *v) override
This method is called for each step during simulation (see FairMCApplication::Stepping())
void Register() override
void FillOtherOptProperties()
void ConstructGeometry() override
Definition Detector.cxx:91
void addAlignableVolumes() const override
Add alignable volumes.
Definition Detector.cxx:365
void Print(std::ostream *os) const
void CreateMaterials()
Base class to create the detector geometry.
void SetCablesA(TGeoVolume *stl)
Definition Detector.cxx:290
void ConstructOpGeometry() override
Definition Detector.cxx:192
o2::ft0::HitType * AddHit(float x, float y, float z, float time, float energy, Int_t trackId, Int_t detId)
Detector()=default
Default constructor.
Bool_t RegisterPhotoE(float energy)
Int_t chipVolUID(Int_t id) const
Definition Detector.h:117
void Reset() override
static constexpr int NCellsA
Definition Geometry.h:52
static constexpr int Nchannels
Definition Geometry.h:50
static constexpr int NCellsC
Definition Geometry.h:53
GLint GLenum GLint x
Definition glcorearb.h:403
const GLdouble * v
Definition glcorearb.h:832
GLsizei GLsizei GLchar * source
Definition glcorearb.h:798
GLsizei const GLfloat * value
Definition glcorearb.h:819
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
std::ostream & operator<<(std::ostream &os, Detector &source)
std::istream & operator>>(std::istream &os, Detector &source)
struct o2::upgrades_utils::@461 ft0
structure to keep V0C information
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...