72 const float kDegRad = TMath::Pi() / 180.;
74 TGeoRotation* rot180 =
new TGeoRotation(
"rot180", 90., 180., 90., 90., 180., 0.);
75 TGeoRotation* rotyz =
new TGeoRotation(
"rotyz", 90., 180., 0., 180., 90., 90.);
76 TGeoRotation* rotxz =
new TGeoRotation(
"rotxz", 0., 0., 90., 90., 90., 180.);
83 const TGeoMedium* kMedBe = matmgr.getTGeoMedium(
"ALICE3_PIPE_BE");
86 TGeoVolume*
top = gGeoManager->GetVolume(
"cave");
87 TGeoVolume* barrel = gGeoManager->GetVolume(
"barrel");
89 LOG(fatal) <<
"Could not find the top volume";
97 Double_t pipeASideLength = mA3IPLength / 2. - mVacuumVesselThick - mVacuumVesselASideLength / 2.;
98 Double_t pipeCSideLength = mA3IPLength / 2. + mVacuumVesselASideLength / 2.;
101 TGeoTube* pipeASide =
new TGeoTube(
"PIPE_Ash", mPipeRIn, mPipeRIn + mPipeThick, pipeASideLength / 2.);
102 TGeoTube* pipeCSide =
new TGeoTube(
"PIPE_Csh", mVacuumVesselRIn, mVacuumVesselRIn + mVacuumVesselThick, pipeCSideLength / 2.);
103 TGeoTube* vacuumVesselWall =
new TGeoTube(
"VACUUM_VESSEL_WALLsh", mPipeRIn, mVacuumVesselRIn + mVacuumVesselThick, mVacuumVesselThick / 2.);
106 TGeoTranslation* posPipeASide =
new TGeoTranslation(
"PIPE_ASIDE_POSITION", 0, 0, mVacuumVesselASideLength / 2. + mVacuumVesselThick + pipeASideLength / 2.);
107 posPipeASide->RegisterYourself();
108 TGeoTranslation* posPipeCSide =
new TGeoTranslation(
"PIPE_CSIDE_POSITION", 0, 0, mVacuumVesselASideLength / 2. - pipeCSideLength / 2.);
109 posPipeCSide->RegisterYourself();
110 TGeoTranslation* posVacuumVesselWall =
new TGeoTranslation(
"WALL_POSITION", 0, 0, mVacuumVesselASideLength / 2. + mVacuumVesselThick / 2.);
111 posVacuumVesselWall->RegisterYourself();
114 TString pipeCompositeFormula =
115 "PIPE_Ash:PIPE_ASIDE_POSITION"
116 "+PIPE_Csh:PIPE_CSIDE_POSITION"
117 "+VACUUM_VESSEL_WALLsh:WALL_POSITION";
119 TGeoCompositeShape* pipeComposite =
new TGeoCompositeShape(
"A3IPsh", pipeCompositeFormula);
120 TGeoVolume* pipeVolume =
new TGeoVolume(
"A3IP", pipeComposite, kMedBe);
123 barrel->AddNode(pipeVolume, 1,
new TGeoTranslation(0, 30.f, 0));
125 pipeVolume->SetLineColor(kGreen + 3);
150 matmgr.Material(
"ALICE3_PIPE", 5,
"BERYLLIUM$", 9.01, 4., 1.848, 35.3, 36.7);
151 matmgr.Medium(
"ALICE3_PIPE", 5,
"BE", 5, 0, isxfld, sxmgmx, tmaxfd, stemax, deemax, epsil, stmin);