84 {
85
86 MsgStream log(
msgSvc(), name());
87 log << MSG::INFO << "initialize()" << endreq;
88 m_nEvent = 0;
89 m_nRun = 1;
90
91
92 static const bool CREATEIFNOTTHERE(true);
93 StatusCode RndmStatus = service("BesRndmGenSvc", p_BesRndmGenSvc, CREATEIFNOTTHERE);
94 if (!RndmStatus.isSuccess() || 0 == p_BesRndmGenSvc)
95 {
96 log << MSG::ERROR << " Could not initialize Random Number Service" << endreq;
97 return RndmStatus;
98 }
99
100 StatusCode status;
101 IG4Svc *tmpSvc;
102 status = service("G4Svc",tmpSvc);
103 if (status.isSuccess()) {
104 log << MSG::INFO << "got the G4Svc" << endreq;
105 m_G4Svc=dynamic_cast<G4Svc *>(tmpSvc);
106 } else {
107 log << MSG::ERROR << "could not get the G4Svc" << endreq;
108 return StatusCode::FAILURE;
109 }
110
112 StatusCode sc_det = service(
"DetVerSvc",
detVerSvc);
113 if( sc_det.isFailure() ) {
114 log << MSG::ERROR << "can't retrieve DetVerSvc instance" << endreq;
115 return sc_det;
116 }
117
119 log << MSG::INFO << "** ~~~ZZZ~~~ ** : retrieved DetectorStage = " << phase << endreq;
120
121
122 if( phase>2 ) { m_tof = 4; }
123
124
125 if(m_G4Svc->MdcRootFlag())
127
128 if(m_G4Svc->TofRootFlag())
130
131 if(m_G4Svc->EmcRootFlag())
133
134 if(m_G4Svc->MucRootFlag())
136
137 log << MSG::INFO << "Four sub-detector construction flags: " <<m_mdc<<" "<<m_tof<<" "<<m_emc<<" "<<m_muc<<endreq;
138
139 ReadBoostRoot* readBoost =new ReadBoostRoot(m_mdc, m_tof,m_emc, m_muc, m_field,m_formatAR,m_tuning,m_hitOut);
140 BesMdcGeoParameter * mdcGeoService;
141 mdcGeoService = new BesMdcGeoParameter;
142
143 log << MSG::INFO << "Instantiating BESIII Detector" << endreq;
144
145 BesSensitiveManager* sensitiveManager = new BesSensitiveManager;
146 sensitiveManager->
SetLogLevel(m_G4Svc->LogLevel());
147
148 BesDetectorConstruction* detectorConstruction = new BesDetectorConstruction();
150 m_G4Svc->SetUserInitialization(detectorConstruction);
151
152 switch(m_physicsList)
153 {
154 case 1:
155 m_G4Svc->SetUserInitialization(new QBBC);
156 break;
157 case 2:
158 m_G4Svc->SetUserInitialization(new QGS_BIC);
159 break;
160 case 3:
161 m_G4Svc->SetUserInitialization(new QGSP_BERT);
162 break;
163 case 4:
164 m_G4Svc->SetUserInitialization(new QGSP_BERT_HP);
165 break;
166 case 5:
167 m_G4Svc->SetUserInitialization(new QGSP_BIC_AllHP);
168 break;
169 case 6:
170 m_G4Svc->SetUserInitialization(new QGSP_BIC);
171 break;
172 case 7:
173 m_G4Svc->SetUserInitialization(new FTF_BIC);
174 break;
175 case 8:
176 m_G4Svc->SetUserInitialization(new FTFP_BERT_ATL);
177 break;
178 case 9:
179 m_G4Svc->SetUserInitialization(new FTFP_BERT);
180 break;
181 case 10:
182 m_G4Svc->SetUserInitialization(new FTFP_BERT_HP);
183 break;
184 case 11:
185 m_G4Svc->SetUserInitialization(new FTFP_BERT_TRV);
186 break;
187 case 12:
188 m_G4Svc->SetUserInitialization(new FTFQGSP_BERT);
189 break;
190 default:
191 m_G4Svc->SetUserInitialization(new FTFP_BERT);
192 break;
193 }
194
195 BesActionInitializer* actionInit = new BesActionInitializer();
203
204 m_G4Svc->SetUserInitialization(actionInit);
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235 return StatusCode::SUCCESS;
236}
void SetAsciiFile(std::string file)
void SetAsciiFlag(std::string flag)
void SetBesGenActionFlag(G4bool flag)
void SetTDSFlag(G4bool flag)
void SetTuningFile(std::vector< std::string > file)
void SetRootFile(std::string file)
void SetRootFlag(G4bool flag)
void SetPipeSCM(G4int value)
void SetLogLevel(G4int level)
StatusCode bookEmcRootFile()
StatusCode bookMdcRootFile()
StatusCode bookMucRootFile()
StatusCode bookTofRootFile()