Project
Loading...
Searching...
No Matches
TRKPetalCase.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 ALICEO2_TRK_PETALCASE_H
13#define ALICEO2_TRK_PETALCASE_H
14
15#include <Rtypes.h>
16
19#include "TGeoCompositeShape.h"
20
21namespace o2
22{
23namespace trk
24{
26{
27 public:
28 TRKPetalCase() = default;
29 TRKPetalCase(Int_t number, TGeoVolume* motherVolume, Bool_t irisOpen);
30 ~TRKPetalCase() = default;
31
32 // Sensitive volume list
33 std::vector<TRKPetalLayer> mPetalLayers;
34 std::vector<TRKPetalDisk> mPetalDisks;
35
36 auto getPetalCaseName() { return mPetalCaseName; }
37 TString getFullName();
38
39 private:
40 void constructCase(TGeoVolume* motherVolume);
41 void constructColdPlate(TGeoVolume* motherVolume);
42 void constructDetectionPetals(TGeoVolume* motherVolume);
43 void addDetectionPetelsToFullComposite();
44
45 void addToPetalCaseComposite(TString shape) { mFullCompositeFormula += ("+" + shape); }
46
47 Int_t mPetalCaseNumber; // Used to determine rotation and position. 0-3
48 Bool_t mOpenState; // At injection energy, the iris tracker is in the open position. During stable beams, it is closed
49
50 TString mPetalCaseName;
51 TString mFullCompositeFormula; // Used to excavate the petal and all its components from the vacuum
52
53 // Center position of the petal case. 0,0,0 at stable beams (a.k.a. closed state)
54 Double_t mXPos, mYPos, mZPos;
55
56 Double_t mWallThickness; // cm // Assume all the walls have the same thickness for now
57 Double_t mRIn; // cm
58 Double_t mROut; // cm
59 Double_t mRInOpenState; // cm
60 Double_t mPetalCaseLength; // cm
61
62 Double_t mAngularCoverageAzimuthalWall; // Rad // Angular coverage of azimuthal part of wall (equivalent to that of the sensitive volumes)
63 Double_t mAngularCoverageRadialWall; // Rad // Angular coverage of radial part of wall
64 Double_t mToDeg;
65
66 // Petal case parts -> In one composite shape
67 TGeoTubeSeg* mInnerAzimuthalWall;
68 TGeoTubeSeg* mOuterAzimuthalWall;
69 TGeoTubeSeg* mRadialWall;
70 TGeoTubeSeg* mForwardWall;
71
72 TGeoRotation* mAzimuthalWallRot;
73 TGeoRotation* mRadialWall1Rot;
74 TGeoRotation* mRadialWall2Rot;
75
76 TGeoCombiTrans* mAzimuthalWallCombiTrans;
77 TGeoCombiTrans* mRadialWall1CombiTrans;
78 TGeoCombiTrans* mRadialWall2CombiTrans;
79 TGeoCombiTrans* mForwardWall1CombiTrans;
80 TGeoCombiTrans* mForwardWall2CombiTrans;
81
82 TGeoVolume* mPetalCaseVolume;
83
84 // Cold plate
85 TGeoTubeSeg* mColdPlate;
86 TGeoVolume* mColdPlateVolume;
87
88 ClassDef(TRKPetalCase, 1);
89};
90
91} // namespace trk
92} // namespace o2
93#endif // ALICEO2_TRK_PETALCASE_H
Definition of the TRKPetalDisk class.
std::vector< TRKPetalDisk > mPetalDisks
std::vector< TRKPetalLayer > mPetalLayers
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...