19#include "TGeoMatrix.h"
20#include "TGeoCompositeShape.h"
21#include "TGeoVolume.h"
32 mWallThickness = .15e-1;
36 mPetalCaseLength = 70.;
39 mAngularCoverageAzimuthalWall = (0.25 * (2 * mRIn * TMath::Pi()) - 2 * mWallThickness) / mRIn;
40 mAngularCoverageRadialWall = mWallThickness / mRIn;
41 mToDeg = 180 / TMath::Pi();
46 Double_t rHalfPetal = 0.5 * (mRIn + mROut);
47 Double_t rOpenStateCenter = TMath::Sqrt(rHalfPetal * rHalfPetal + mRInOpenState * mRInOpenState);
48 mXPos = rOpenStateCenter * TMath::Cos(0.25 * TMath::Pi() + (mPetalCaseNumber - 1) * 0.5 * TMath::Pi());
49 mYPos = rOpenStateCenter * TMath::Sin(0.25 * TMath::Pi() + (mPetalCaseNumber - 1) * 0.5 * TMath::Pi());
56 constructCase(motherVolume);
58 constructColdPlate(motherVolume);
60 constructDetectionPetals(motherVolume);
65 TString fullCompositeName = Form(
"PETALCASE%d_FULLCOMPOSITE", mPetalCaseNumber);
66 TGeoCompositeShape* fullCompositeShape =
new TGeoCompositeShape(fullCompositeName, mFullCompositeFormula);
67 return fullCompositeName;
70void TRKPetalCase::constructCase(TGeoVolume* motherVolume)
74 mInnerAzimuthalWall =
new TGeoTubeSeg(Form(
"PETAL%d_INNER_AZIMUTHAL_WALL", mPetalCaseNumber), mRIn, mRIn + mWallThickness, mPetalCaseLength / 2., -0.5 * mAngularCoverageAzimuthalWall * mToDeg, 0.5 * mAngularCoverageAzimuthalWall * mToDeg);
75 mOuterAzimuthalWall =
new TGeoTubeSeg(Form(
"PETAL%d_OUTER_AZIMUTHAL_WALL", mPetalCaseNumber), mROut, mROut + mWallThickness, mPetalCaseLength / 2., -0.5 * mAngularCoverageAzimuthalWall * mToDeg, 0.5 * mAngularCoverageAzimuthalWall * mToDeg);
76 mRadialWall =
new TGeoTubeSeg(Form(
"PETAL%d_RADIAL_WALL", mPetalCaseNumber), mRIn, mROut + mWallThickness, mPetalCaseLength / 2., -0.5 * mAngularCoverageRadialWall * mToDeg, 0.5 * mAngularCoverageRadialWall * mToDeg);
77 mForwardWall =
new TGeoTubeSeg(Form(
"PETAL%d_FORWARD_WALL", mPetalCaseNumber), mRIn, mROut + mWallThickness, mWallThickness / 2., -0.5 * (mAngularCoverageAzimuthalWall + 2 * mAngularCoverageRadialWall) * mToDeg, 0.5 * (mAngularCoverageAzimuthalWall + 2 * mAngularCoverageRadialWall) * mToDeg);
80 mAzimuthalWallRot =
new TGeoRotation((TString)Form(
"PETAL%d_AZIMUTHAL_WALL_ROT", mPetalCaseNumber), (mPetalCaseNumber * 0.5 * TMath::Pi() + 0.5 * mAngularCoverageAzimuthalWall + mAngularCoverageRadialWall) * mToDeg, 0., 0.);
81 mAzimuthalWallRot->RegisterYourself();
82 mRadialWall1Rot =
new TGeoRotation((TString)Form(
"PETAL%d_RADIAL_WALL1_ROT", mPetalCaseNumber), (mPetalCaseNumber * 0.5 * TMath::Pi() + 0.5 * mAngularCoverageRadialWall) * mToDeg, 0., 0.);
83 mRadialWall1Rot->RegisterYourself();
84 mRadialWall2Rot =
new TGeoRotation((TString)Form(
"PETAL%d_RADIAL_WALL2_ROT", mPetalCaseNumber), (mPetalCaseNumber * 0.5 * TMath::Pi() + mAngularCoverageAzimuthalWall + 1.5 * mAngularCoverageRadialWall) * mToDeg, 0., 0.);
85 mRadialWall2Rot->RegisterYourself();
88 mAzimuthalWallCombiTrans =
new TGeoCombiTrans((TString)Form(
"PETAL%d_AZIMUTHAL_WALL_COMBITRANS", mPetalCaseNumber), mXPos, mYPos, mZPos, mAzimuthalWallRot);
89 mAzimuthalWallCombiTrans->RegisterYourself();
90 mRadialWall1CombiTrans =
new TGeoCombiTrans((TString)Form(
"PETAL%d_RADIAL_WALL1_COMBITRANS", mPetalCaseNumber), mXPos, mYPos, mZPos, mRadialWall1Rot);
91 mRadialWall1CombiTrans->RegisterYourself();
92 mRadialWall2CombiTrans =
new TGeoCombiTrans((TString)Form(
"PETAL%d_RADIAL_WALL2_COMBITRANS", mPetalCaseNumber), mXPos, mYPos, mZPos, mRadialWall2Rot);
93 mRadialWall2CombiTrans->RegisterYourself();
94 mForwardWall1CombiTrans =
new TGeoCombiTrans((TString)Form(
"PETAL%d_FORWARD_WALL1_COMBITRANS", mPetalCaseNumber), mXPos, mYPos, (mPetalCaseLength + mWallThickness) / 2., mAzimuthalWallRot);
95 mForwardWall1CombiTrans->RegisterYourself();
96 mForwardWall2CombiTrans =
new TGeoCombiTrans((TString)Form(
"PETAL%d_FORWARD_WALL2_COMBITRANS", mPetalCaseNumber), mXPos, mYPos, -(mPetalCaseLength + mWallThickness) / 2., mAzimuthalWallRot);
97 mForwardWall2CombiTrans->RegisterYourself();
99 TString petalCaseCompositeFormula = (TString)Form(
"PETAL%d_INNER_AZIMUTHAL_WALL:PETAL%d_AZIMUTHAL_WALL_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber) + (TString)Form(
"+PETAL%d_OUTER_AZIMUTHAL_WALL:PETAL%d_AZIMUTHAL_WALL_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber) + (TString)Form(
"+PETAL%d_RADIAL_WALL:PETAL%d_RADIAL_WALL1_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber) + (TString)Form(
"+PETAL%d_RADIAL_WALL:PETAL%d_RADIAL_WALL2_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber) + (TString)Form(
"+PETAL%d_FORWARD_WALL:PETAL%d_FORWARD_WALL1_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber) + (TString)Form(
"+PETAL%d_FORWARD_WALL:PETAL%d_FORWARD_WALL2_COMBITRANS", mPetalCaseNumber, mPetalCaseNumber);
101 TGeoCompositeShape* petalCaseComposite =
new TGeoCompositeShape((TString)Form(
"PETALCASE%dsh", mPetalCaseNumber), petalCaseCompositeFormula);
102 mFullCompositeFormula = petalCaseComposite->GetName();
104 const TGeoMedium* kMedBe = matmgr.getTGeoMedium(
"ALICE3_TRKSERVICES_BERYLLIUM");
106 mPetalCaseName = Form(
"PETALCASE%d", mPetalCaseNumber);
107 mPetalCaseVolume =
new TGeoVolume(mPetalCaseName, petalCaseComposite, kMedBe);
108 mPetalCaseVolume->SetVisibility(1);
109 mPetalCaseVolume->SetLineColor(kGray);
111 LOGP(info,
"Creating IRIS Tracker vacuum petal case {}", mPetalCaseNumber);
112 LOGP(info,
"Inserting {} in {} ", mPetalCaseVolume->GetName(), motherVolume->GetName());
113 motherVolume->AddNode(mPetalCaseVolume, 1,
nullptr);
116void TRKPetalCase::constructColdPlate(TGeoVolume* motherVolume)
118 Double_t coldPlateRadius = 2.6;
119 Double_t coldPlateThickness = 0.15;
120 Double_t coldPlateLength = 50.;
122 mColdPlate =
new TGeoTubeSeg((TString)Form(
"PETAL%d_COLDPLATE", mPetalCaseNumber), coldPlateRadius, coldPlateRadius + coldPlateThickness, coldPlateLength / 2., -0.5 * mAngularCoverageAzimuthalWall * mToDeg, 0.5 * mAngularCoverageAzimuthalWall * mToDeg);
124 const TGeoMedium* medCeramic = matmgr.getTGeoMedium(
"ALICE3_TRKSERVICES_CERAMIC");
125 mColdPlateVolume =
new TGeoVolume(Form(
"COLDPLATE%d", mPetalCaseNumber), mColdPlate, medCeramic);
127 TString coldPlateCompositeFormula = mColdPlate->GetName();
128 coldPlateCompositeFormula +=
":";
129 coldPlateCompositeFormula += mAzimuthalWallCombiTrans->GetName();
130 addToPetalCaseComposite(coldPlateCompositeFormula);
132 mColdPlateVolume->SetVisibility(1);
133 mColdPlateVolume->SetLineColor(kGray);
135 LOGP(info,
"Creating cold plate service");
136 LOGP(info,
"Inserting {} in {} ", mColdPlateVolume->GetName(), motherVolume->GetName());
137 motherVolume->AddNode(mColdPlateVolume, 1, mAzimuthalWallCombiTrans);
140void TRKPetalCase::constructDetectionPetals(TGeoVolume* motherVolume)
144 mPetalLayers.emplace_back(0, Form(
"%s_LAYER%d", mPetalCaseName.Data(), 0), 0.5f, mAngularCoverageAzimuthalWall, 50.f, 1.e-3);
145 mPetalLayers.emplace_back(1, Form(
"%s_LAYER%d", mPetalCaseName.Data(), 1), 1.2f, mAngularCoverageAzimuthalWall, 50.f, 1.e-3);
146 mPetalLayers.emplace_back(2, Form(
"%s_LAYER%d", mPetalCaseName.Data(), 2), 2.5f, mAngularCoverageAzimuthalWall, 50.f, 1.e-3);
148 mPetalLayers[
i].createLayer(motherVolume, mAzimuthalWallCombiTrans);
153 mPetalDisks.emplace_back(0, Form(
"%s_DISK%d", mPetalCaseName.Data(), 0), 26., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
154 mPetalDisks.emplace_back(1, Form(
"%s_DISK%d", mPetalCaseName.Data(), 1), 30., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
155 mPetalDisks.emplace_back(2, Form(
"%s_DISK%d", mPetalCaseName.Data(), 2), 34., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
156 mPetalDisks.emplace_back(3, Form(
"%s_DISK%d", mPetalCaseName.Data(), 3), -26., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
157 mPetalDisks.emplace_back(4, Form(
"%s_DISK%d", mPetalCaseName.Data(), 4), -30., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
158 mPetalDisks.emplace_back(5, Form(
"%s_DISK%d", mPetalCaseName.Data(), 5), -34., .5, 2.5, mAngularCoverageAzimuthalWall, 1.e-3);
160 mPetalDisks[
i].createDisk(motherVolume, mAzimuthalWallCombiTrans);
163 addDetectionPetelsToFullComposite();
166void TRKPetalCase::addDetectionPetelsToFullComposite()
172 Double_t angularCoverage =
mPetalLayers[
i].getAngularCoverage();
173 TGeoTubeSeg* layerForExcavation =
new TGeoTubeSeg(Form(
"PETALCASE%d_EXCAVATIONLAYER%d", mPetalCaseNumber,
i), rIn, rIn + thickness, zLength / 2., -0.5 * angularCoverage * mToDeg, 0.5 * angularCoverage * mToDeg);
175 TString layerForExcavationCompositeFormula = layerForExcavation->GetName();
176 layerForExcavationCompositeFormula +=
":";
177 layerForExcavationCompositeFormula += mAzimuthalWallCombiTrans->GetName();
178 addToPetalCaseComposite(layerForExcavationCompositeFormula);
186 Double_t angularCoverage =
mPetalDisks[
i].getAngularCoverage();
187 TGeoTubeSeg* diskForExcavation =
new TGeoTubeSeg(Form(
"PETALCASE%d_EXCAVATIONDISK%d", mPetalCaseNumber,
i), rIn, rOut, thickness / 2., -0.5 * angularCoverage * mToDeg, 0.5 * angularCoverage * mToDeg);
188 TGeoCombiTrans* diskForExcavationCombiTrans =
new TGeoCombiTrans(*(mAzimuthalWallCombiTrans->MakeClone()));
189 diskForExcavationCombiTrans->SetName((TString)Form(
"PETALCASE%d_EXCAVATIONDISK%d_COMBITRANS", mPetalCaseNumber,
i));
190 diskForExcavationCombiTrans->SetDz(zPos);
191 diskForExcavationCombiTrans->RegisterYourself();
193 TString diskForExcavationCompositeFormula = diskForExcavation->GetName();
194 diskForExcavationCompositeFormula +=
":";
195 diskForExcavationCompositeFormula += diskForExcavationCombiTrans->GetName();
196 addToPetalCaseComposite(diskForExcavationCompositeFormula);
static MaterialManager & Instance()
std::vector< TRKPetalDisk > mPetalDisks
std::vector< TRKPetalLayer > mPetalLayers
constexpr float thickness
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...