65{
66 gGeoManager->SetVisOption(0);
67 gGeoManager->SetVisLevel(5);
68
69 TGeoIdentity *identity = new TGeoIdentity();
70
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);
75
76 TGeoVolume *topVolume = new TGeoVolume();
77 gGeoManager->SetTopVolume(topVolume);
78 gGeoManager->SetTopVolume(m_Bes);
79
80 Int_t iChildNo = 0;
81 m_MdcROOTGeo = new MdcROOTGeo(false);
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);
89
90 iChildNo++;
91 m_TofROOTGeo = new TofROOTGeo();
92
93
94 if (mrpc)
95 m_TofROOTGeo->InitFromGDML( (fPath + TString("Tof_mrpc.gdml")).Data(), "Default" );
96 else
97 m_TofROOTGeo->InitFromGDML( (fPath + TString("Tof.gdml")).Data(), "Default" );
98
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);
105
106 iChildNo++;
107 m_EmcROOTGeo = new EmcROOTGeo();
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);
114
115 iChildNo++;
116 m_MucROOTGeo = new MucROOTGeo();
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);
123
124 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);
129
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;
134 }
135
137}
virtual void InitGeometry()