66 gGeoManager->SetVisOption(0);
67 gGeoManager->SetVisLevel(5);
69 TGeoIdentity *identity =
new TGeoIdentity();
71 TGeoMaterial *mat =
new TGeoMaterial(
"VOID",0,0,0);
72 mat->SetTransparency(20);
73 TGeoMedium *med =
new TGeoMedium(
"MED",1,mat);
74 m_Bes = gGeoManager->MakeBox(
"volBes", med, m_BesR, m_BesR, 0.5*m_BesZ);
76 TGeoVolume *topVolume =
new TGeoVolume();
77 gGeoManager->SetTopVolume(topVolume);
78 gGeoManager->SetTopVolume(m_Bes);
82 m_MdcROOTGeo->InitFromGDML( (fPath + TString(
"Mdc.gdml")).Data(),
"Default" );
83 cout<<
"in BesGeometry construct mdc1"<<endl;
84 m_Mdc = m_MdcROOTGeo->GetVolumeMdc();
85 if (m_Mdc) cout <<
"Construct Mdc" << endl;
86 else cout <<
"Volume Mdc not found " << endl;
87 m_Bes->AddNode(m_Mdc, iChildNo, identity);
88 m_MdcROOTGeo->SetChildNo(iChildNo);
95 m_TofROOTGeo->InitFromGDML( (fPath + TString(
"Tof_mrpc.gdml")).Data(),
"Default" );
97 m_TofROOTGeo->InitFromGDML( (fPath + TString(
"Tof.gdml")).Data(),
"Default" );
99 cout<<
"construct tof"<<endl;
100 m_Tof = m_TofROOTGeo->GetVolumeTof();
101 if (m_Tof) cout <<
"Construct Tof" << endl;
102 else cout <<
"Volume Tof not found " << endl;
103 m_Bes->AddNode(m_Tof, iChildNo, identity);
104 m_TofROOTGeo->SetChildNo(iChildNo);
108 m_EmcROOTGeo->InitFromGDML( (fPath + TString(
"Emc.gdml")).Data(),
"Default" );
109 m_Emc = m_EmcROOTGeo->GetVolumeEmc();
110 if (m_Emc) cout <<
"Construct Emc" << endl;
111 else cout <<
"Volume Emc not found " << endl;
112 m_Bes->AddNode(m_Emc, iChildNo, identity);
113 m_EmcROOTGeo->SetChildNo(iChildNo);
117 m_MucROOTGeo->InitFromGDML( (fPath + TString(
"Muc.gdml")).Data(),
"Default" );
118 m_Muc = m_MucROOTGeo->GetVolumeMuc();
119 if (m_Muc) cout <<
"Construct Muc" << endl;
120 else cout <<
"Volume Muc not found " << endl;
121 m_Bes->AddNode(m_Muc, iChildNo, identity);
122 m_MucROOTGeo->SetChildNo(iChildNo);
125 Int_t beamPipeColor = m_BeamPipeColor;
126 m_BeamPipe = gGeoManager->MakeTube(
"volBeamPipe", med, m_BeamPipeRMin, m_BeamPipeRMax, m_BeamPipeZ);
127 m_BeamPipe->SetLineColor(beamPipeColor);
128 m_Bes->AddNode(m_BeamPipe, iChildNo, identity);
130 Int_t nDaughters = m_Bes->GetNodes()->GetEntries();
131 cout <<
"volBes contains " << nDaughters <<
" nodes : " << endl;
132 for (Int_t i = 0; i < nDaughters; i++) {
133 cout << i <<
" : " << m_Bes->GetNode(i)->GetName() << endl;
141 gGeoManager->SetVisOption(0);
142 gGeoManager->SetVisLevel(5);
145 m_BesR = ((TGeoBBox*)m_Bes->GetShape())->GetDX();
146 m_BesZ = ((TGeoBBox*)m_Bes->GetShape())->GetDZ()*2.0;
148 TGeoVolume *topVolume =
new TGeoVolume();
149 gGeoManager->SetTopVolume(topVolume);
150 gGeoManager->SetTopVolume(m_Bes);
152 Int_t nDaughters = m_Bes->GetNodes()->GetEntries();
161 TGeoNode *nodeMdc = m_Bes->GetNode(iChildNo);
162 if (nodeMdc) m_Mdc = nodeMdc->GetVolume();
166 m_MdcROOTGeo->InitFromROOT( m_Mdc );
167 m_MdcROOTGeo->SetChildNo(iChildNo);
171 TGeoNode *nodeTof = m_Bes->GetNode(iChildNo);
172 if (nodeTof) m_Tof = nodeTof->GetVolume();
176 m_TofROOTGeo->InitFromROOT( m_Tof );
177 m_TofROOTGeo->SetChildNo(iChildNo);
181 TGeoNode *nodeEmc = m_Bes->GetNode(iChildNo);
182 if (nodeEmc) m_Emc = nodeEmc->GetVolume();
186 m_EmcROOTGeo->InitFromROOT( m_Emc );
187 m_EmcROOTGeo->SetChildNo(iChildNo);
191 TGeoNode *nodeMuc = m_Bes->GetNode(iChildNo);
192 if (nodeMuc) m_Muc = nodeMuc->GetVolume();
196 m_MucROOTGeo->InitFromROOT( m_Muc );
197 m_MucROOTGeo->SetChildNo(iChildNo);
200 TGeoNode *nodeBeamPipe = m_Bes->GetNode(iChildNo);
202 m_BeamPipe = nodeBeamPipe->GetVolume();
203 m_BeamPipe->SetLineColor(m_BeamPipeColor);
214 gGeoManager->SetDrawExtraPaths();
215 gGeoManager->CloseGeometry();
216 gGeoManager->SetNsegments(20);
220 m_MdcROOTGeo->SetPhysicalNode();
221 m_TofROOTGeo->SetPhysicalNode();
222 m_EmcROOTGeo->SetPhysicalNode();
223 m_MucROOTGeo->SetPhysicalNode();
226 m_phyBeamPipe = gGeoManager->MakePhysicalNode(TString(
"/") + m_Bes->GetName() + TString(
"_1/") + m_BeamPipe->GetName() + TString(
"_4"));
227 m_phyBeamPipe->SetVisibility(0);
228 m_phyBeamPipe->SetIsVolAtt(kFALSE);
229 m_phyBeamPipe->SetLineColor(m_BeamPipeColor);
234 m_TofROOTGeo->Init2DGeometry();
235 m_MdcROOTGeo->Init2DGeometry();
236 m_EmcROOTGeo->Init2DGeometry();
237 m_MucROOTGeo->Init2DGeometry();
239 Double_t
P[3*4] = {0.0};
242 Double_t beamPipeCenter[3] = {0.0, 0.0, 0.0};
244 new BesCircle2D(
"BeamPipe",
"BeamPipe", m_BeamPipeRMin, m_BeamPipeRMax, &beamPipeCenter[0]);
246 for (Int_t i = 0; i < 4; i++) {
248 if (i == 0 || i == 3)
P[3*i+1] = -1.0*m_BeamPipeRMax;
249 else P[3*i+1] = m_BeamPipeRMax;
250 if (i == 0 || i == 1)
P[3*i+2] = -1.0*m_BeamPipeZ;
251 else P[3*i+2] = m_BeamPipeZ;
253 m_BeamPipeZR =
new BesPolygon2D(
"BeamPipe",
"BeamPipe", 4, &
P[0]);
254 m_BeamPipeZR->SetRotatable(
true);
257 if (!m_Bes) cout <<
"BesGeometry:InitGeometry, top volume m_Bes not found" << endl;
258 TGeoBBox *besShape = (TGeoBBox*)m_Bes->GetShape();
259 m_BesR = besShape->GetDX();
260 m_BesZ = besShape->GetDZ()*2.0;
261 for (Int_t i = 0; i < 4; i++) {
263 if (i == 0 || i == 3)
P[3*i+1] = -1.0*m_BesR;
264 else P[3*i+1] = m_BesR;
265 if (i == 0 || i == 1)
P[3*i+2] = -1.0*m_BesZ;
266 else P[3*i+2] = m_BesZ;
269 m_ZRPlaneOnXY =
new BesPolygon2D(
"ZRPlaneOnXY",
"ZRPlaneOnXY", 4, &
P[0]);
270 m_ZRPlaneOnXY->SetRotatable(
true);
271 m_ZRPlaneOnXY->SetLineWidth(1);
272 m_ZRPlaneOnXY->SetLineStyle(3);
273 m_ZRPlaneOnXY->SetFillStyle(4000);
330 m_BeamPipe->AppendPad();
334 else m_phyBeamPipe->SetVisibility(0);
337 m_MdcROOTGeo->SetVisMdcDetector();
338 m_MdcROOTGeo->SetPhysicalDefaultVis();
339 m_MdcROOTGeo->SetVisMdcHits();
343 m_TofROOTGeo->SetVisTofDetector();
344 m_TofROOTGeo->SetPhysicalDefaultVis();
345 m_TofROOTGeo->SetVisTofHits();
349 m_EmcROOTGeo->SetVisEmcDetector();
350 m_EmcROOTGeo->SetPhysicalDefaultVis();
351 m_EmcROOTGeo->SetVisEmcHits();
355 m_MucROOTGeo->SetVisMucDetector();
356 m_MucROOTGeo->SetPhysicalDefaultVis();
357 m_MucROOTGeo->SetVisMucHits();