55{
56
57 TGeoVolume *
top=gGeoManager->GetTopVolume();
58 InitMedium("Aluminum");
59 TGeoMedium *Al =gGeoManager->GetMedium("Aluminum");
60
61 TGeoVolume *tub1 = gGeoManager->MakeTube("tub1", Al, 245, 250, 50);
62 tub1->SetLineColor(18);
63 top->AddNode(tub1, 1,
new TGeoTranslation(0, 0, -2450));
64
65
66
67 TGeoVolume *tub2 = gGeoManager->MakeTube("tub2", Al, 245, 250, 3880/2);
68 tub2->SetLineColor(18);
69 top->AddNode(tub2, 1,
new TGeoTranslation(0, 0, -440));
70
71
72
73 TGeoVolume *tub3 = gGeoManager->MakeTube("tub3", Al, 245, 250, 80);
74 tub3->SetLineColor(18);
75 top->AddNode(tub3, 1,
new TGeoTranslation(0, 0, 1620));
76
77
78 TGeoVolume *tub4 = gGeoManager->MakeTube("tub4", Al, 245, 250, 200);
79 tub4->SetLineColor(18);
80 top->AddNode(tub4, 1,
new TGeoTranslation(0, 0, 1940));
81
82
83 TGeoVolume *tub5 = gGeoManager->MakeTube("tub5", Al, 245, 250, 90);
84 tub5->SetLineColor(18);
85 top->AddNode(tub5, 1,
new TGeoTranslation(0, 0, 2270));
86
87
88 TGeoVolume *tub6 = gGeoManager->MakeTube("tub6", Al, 245, 250, 20);
89 tub6->SetLineColor(18);
90 top->AddNode(tub6, 1,
new TGeoTranslation(0, 0, 2540));
91
92
93
94}