Project
Loading...
Searching...
No Matches
MIDLayer.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
12#ifndef MI3LAYER_H_
13#define MI3LAYER_H_
14
15#include <string>
16#include <vector>
17
18class TGeoVolume;
19class TGeoVolumeAssembly;
20namespace o2::mi3
21{
23{
24 class Stave
25 {
26 class Module
27 {
28 class Sensor
29 {
30 public:
31 Sensor() = default;
32 Sensor(std::string sensorName,
33 int layer,
34 int stave,
35 int module,
36 int number,
37 float moduleOffset = -59.8f,
38 float sensorLength = 49.9f,
39 float sensorWidth = 2.5f,
40 float sensorThickness = 0.5f,
41 float sensorSpacing = 0.2f);
42 void createSensor(TGeoVolume* motherVolume);
43
44 private:
45 std::string mName;
46 float mModuleOffset;
47 float mWidth;
48 float mLength;
49 float mThickness;
50 float mSpacing;
51 int mLayer;
52 int mStave;
53 int mModule;
54 int mNumber;
55 };
56
57 public:
58 Module() = default;
59 Module(std::string moduleName,
60 int layer,
61 int stave,
62 int number,
63 int nBars = 23,
64 float zOffset = -500.f,
65 float barLength = 49.9f,
66 float barSpacing = 0.2f,
67 float barWidth = 2.5f,
68 float barThickness = 0.5f);
69 void createModule(TGeoVolume* motherVolume);
70
71 private:
72 std::string mName;
73 float mBarSpacing;
74 float mBarWidth;
75 float mBarLength;
76 float mBarThickness;
77 float mZOffset;
78 int mNBars;
79 int mLayer;
80 int mStave;
81 int mNumber;
82 std::vector<Sensor> mSensors;
83 };
84
85 public:
86 Stave() = default;
87 Stave(std::string staveName,
88 float radDistance,
89 float rotAngle,
90 int layer,
91 int number,
92 float staveLength = 500.f,
93 float staveWidth = 50.f,
94 float staveThickness = 0.5f,
95 int nModulesZ = 10);
96 void createStave(TGeoVolume* motherVolume);
97
98 private:
99 std::string mName;
100 float mRadDistance;
101 float mRotAngle;
102 float mLength;
103 float mWidth;
104 float mThickness;
105 std::vector<Module> mModules;
106 int mLayer;
107 int mNumber;
108 int mNModulesZ;
109 };
110
111 public:
112 MIDLayer() = default;
113 MIDLayer(int layerNumber, std::string layerName, float rInn, float length, int nstaves = 16);
114 void createLayer(TGeoVolume* motherVolume);
115
116 private:
117 std::string mName;
118 std::vector<Stave> mStaves;
119 float mRadius;
120 float mLength;
121 int mNumber;
122 int mNStaves;
123};
124} // namespace o2::mi3
125
126#endif // MI3LAYER_H
MIDLayer()=default
void createLayer(TGeoVolume *motherVolume)
Definition MIDLayer.cxx:137
GLuint GLsizei GLsizei * length
Definition glcorearb.h:790
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310