121 int i=fSignalLayer[signalLayerNo];
122 int wireNoInLayer=2*
wireNo+1-fLayer[i].FirstWire();
123 double phi=fLayer[i].Phi();
124 double shiftPhi=fLayer[i].ShiftPhi();
126 wirePhi= wireNoInLayer*shiftPhi+phi;
128 BesMdcWire temp(fLayer[i].Length(), fWirePhi[fLayer[i].BeginWireNo()+wireNoInLayer], fLayer[i].R(),fLayer[i].RotateAngle());
150 double length, phi, r, rotateCell,rotateAngle;
151 double innerR, outR, z;
156 G4cout<<
"BOOST environment not set!"<<G4endl; exit(-1);
158 geoPath +=
"/dat/Mdc.txt";
160 ifstream inFile(geoPath);
162 cout<<
"Error, mdc parameters file not exist"<<endl;
166 getline(inFile, line);
167 inFile>>fLayerNo>>fWireNo>>fSignalLayerNo>>fSignalWireR>>fFieldWireR;
169 inFile.seekg(1,ios::cur);
170 getline(inFile, line);
172 for(i=0; i<fSignalLayerNo; i++){
174 fSignalLayer[i]=signalLayer-1;
177 inFile.seekg(1,ios::cur);
178 getline(inFile, line);
179 getline(inFile, line);
180 for( i=0; i<fLayerNo; i++){
181 inFile>>name>>
wireNo>>length>>r>>phi>>firstWire>>rotateCell;
182 getline(inFile, line);
186 fLayer[i].SetName(name);fLayer[i].SetRadius(r);
187 fLayer[i].SetLength(length); fLayer[i].SetRotateCell(rotateCell);
188 fLayer[i].SetRotateAngle(rotateAngle); fLayer[i].SetWireNo(
wireNo);
189 fLayer[i].SetShiftPhi(twopi/
wireNo); fLayer[i].SetFirstWire(firstWire);
192 if(phi<0)phi += fLayer[i].ShiftPhi();
193 fLayer[i].SetPhi(phi);
196 fLayer[i].SetSumWireNo(
wireNo); fLayer[i].SetBeginWireNo(0);
198 fLayer[i].SetBeginWireNo(fLayer[i-1].SumWireNo());
199 fLayer[i].SetSumWireNo(fLayer[i-1].SumWireNo()+
wireNo);
202 for(
int j=0; j<
wireNo; j++){
203 fWirePhi[fLayer[i].BeginWireNo()+j]=j*fLayer[i].ShiftPhi()+phi;
207 if(fLayer[fLayerNo-1].SumWireNo()!= fWireNo){
208 cout<<
"Total wire number is not consistant!"<<endl;
211 getline(inFile, line);
213 inFile.seekg(1,ios::cur);
214 getline(inFile, line);
215 getline(inFile, line);
217 for(i=0; i<fSegmentNo; i++){
218 inFile>>length>>innerR>>outR>>z>>name;
219 getline(inFile,line);
221 fMdcSegment[i].SetLength(length); fMdcSegment[i].SetInnerR(innerR);
222 fMdcSegment[i].SetOutR(outR); fMdcSegment[i].SetZ(z);
223 fMdcSegment[i].SetName(name);
230 ISvcLocator* svcLocator = Gaudi::svcLocator();
233 StatusCode sc=svcLocator->service(
"MdcGeomSvc", ISvc);
236 std::cout<<
"BesMdcGeoParameter::Could not open Geometry Service"<<std::endl;
245 for(i=0; i<fSignalLayerNo; i++){
247 fSignalLayer[i]=signalLayer-1;
252 double length, r, phi,rotateCell,rotateAngle;
253 for(i=0;i<fLayerNo;i++){
264 fLayer[i].SetName(name);fLayer[i].SetRadius(r);
265 fLayer[i].SetLength(length); fLayer[i].SetRotateCell(rotateCell);
266 fLayer[i].SetRotateAngle(rotateAngle); fLayer[i].SetWireNo(
wireNo);
267 fLayer[i].SetShiftPhi(twopi/
wireNo); fLayer[i].SetFirstWire(firstWire);
268 fLayer[i].SetPhi(phi);
271 fLayer[i].SetSumWireNo(
wireNo); fLayer[i].SetBeginWireNo(0);
273 fLayer[i].SetBeginWireNo(fLayer[i-1].SumWireNo());
274 fLayer[i].SetSumWireNo(fLayer[i-1].SumWireNo()+
wireNo);
277 for(
int j=0; j<
wireNo; j++){
278 fWirePhi[fLayer[i].BeginWireNo()+j]=j*fLayer[i].ShiftPhi()+phi;
282 if(fLayer[fLayerNo-1].SumWireNo()!= fWireNo){
283 cout<<
"Total wire number is not consistant!"<<endl;
287 double innerR,outR,z;
289 for(i=0;i<fSegmentNo;i++){
292 outR=mdcGeomSvc->
End(i)->
OutR();
293 z=mdcGeomSvc->
End(i)->
Z();
294 name=mdcGeomSvc->
End(i)->
Name();
296 fMdcSegment[i].SetLength(length); fMdcSegment[i].SetInnerR(innerR);
297 fMdcSegment[i].SetOutR(outR); fMdcSegment[i].SetZ(z);
298 fMdcSegment[i].SetName(name);
305 cout<<
" fLayerNo: "<<fLayerNo<<endl;
306 cout<<
" fWireNo: "<<fWireNo<<endl;
307 cout<<
" fSignalLayerNo: "<<fSignalLayerNo<<endl;
308 cout<<
" fSignalWireR: "<<fSignalWireR<<endl;
309 cout<<
" fFieldWireR: "<<fFieldWireR<<endl;
311 cout<<
"fSingalLayer:"<<endl;
312 for(
int i=0; i<fSignalLayerNo; i++){
313 cout<<fSignalLayer[i]+1<<
' '; }
316 for(
int i=0;i<fLayerNo;i++){
317 cout<<
"Layer["<<i<<
"]: "
318 <<
" name:"<<fLayer[i].Name() <<
" wireNo:"<<fLayer[i].WireNo()
319 <<
" length: "<<fLayer[i].Length() <<
" r: "<<fLayer[i].R();
320 if (i<75) cout<<
" phi:"<<fLayer[i].Phi()*180/
pi;
321 else cout<<
" phi:"<<(fLayer[i].Phi()-fLayer[i].ShiftPhi())*180/
pi;
322 cout<<
" firstWire: "<<fLayer[i].FirstWire()
323 <<
" rotateCell: "<<fLayer[i].RotateCell()<<endl;
326 cout<<
"fSegmentNo:"<<fSegmentNo<<endl;
327 for(
int j=0;j<fSegmentNo;j++){
328 cout<<
"length:"<<fMdcSegment[j].Length()
329 <<
" innerR:"<<fMdcSegment[j].InnerR()
330 <<
" outR:"<<fMdcSegment[j].OutR()
331 <<
" z:"<<fMdcSegment[j].Z()
332 <<
" name:"<<fMdcSegment[j].Name()<<endl;