BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
TRungeFitter Class Reference

A class to fit a TTrackBase object to a 3D line. More...

#include <TRungeFitter.h>

+ Inheritance diagram for TRungeFitter:

Public Member Functions

 TRungeFitter (const std::string &name)
 Constructor.
 
 TRungeFitter (const std::string &name, bool m_sag, int m_prop, bool m_tof)
 
virtual ~TRungeFitter ()
 Destructor.
 
void dump (const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
 dumps debug information.
 
virtual int fit (TTrackBase &) const
 
virtual int fit (TTrackBase &, float t0Offset, int layer) const
 
void innerwall (TRunge &trk, int l_mass, double y[6]) const
 
void sag (bool)
 
const RkFitMaterial getMaterial (int i) const
 
void propagation (int)
 
void tof (bool)
 
void setBesFromGdml (void)
 
- Public Member Functions inherited from TMFitter
 TMFitter (const std::string &name)
 Constructor.
 
virtual ~TMFitter ()
 Destructor.
 
const std::string & name (void) const
 returns name.
 
void dump (const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
 

Public Attributes

std::vector< RkFitCylinder_BesBeamPipeWalls
 
std::vector< RkFitMaterial_BesBeamPipeMaterials
 

Additional Inherited Members

- Protected Member Functions inherited from TMFitter
void fitDone (TTrackBase &) const
 sets the fitted flag. (Bad implementation)
 

Detailed Description

A class to fit a TTrackBase object to a 3D line.

Definition at line 34 of file TRungeFitter.h.

Constructor & Destructor Documentation

◆ TRungeFitter() [1/2]

TRungeFitter::TRungeFitter ( const std::string & name)

Constructor.

Definition at line 90 of file TRungeFitter.cxx.

91 : TMFitter(name),
92 _sag(true),_propagation(1),_tof(false){
93
94 StatusCode scmgn = Gaudi::svcLocator()->service("MagneticFieldSvc",m_pmgnIMF);
95 if(scmgn!=StatusCode::SUCCESS) {
96 std::cout<< __FILE__<<" Unable to open Magnetic field service"<<std::endl;
97 }
98}
const std::string & name(void) const
returns name.
Definition TMFitter.h:73
TMFitter(const std::string &name)
Constructor.
Definition TMFitter.cxx:17

◆ TRungeFitter() [2/2]

TRungeFitter::TRungeFitter ( const std::string & name,
bool m_sag,
int m_prop,
bool m_tof )

Definition at line 99 of file TRungeFitter.cxx.

101 : TMFitter(name),
102 _sag(m_sag),_propagation(m_prop),_tof(m_tof){
103
104 StatusCode scmgn = Gaudi::svcLocator()->service("MagneticFieldSvc",m_pmgnIMF);
105 if(scmgn!=StatusCode::SUCCESS) {
106 std::cout<< "Unable to open Magnetic field service"<<std::endl;
107 }
108}
NTuple::Array< double > m_tof

◆ ~TRungeFitter()

TRungeFitter::~TRungeFitter ( )
virtual

Destructor.

Definition at line 110 of file TRungeFitter.cxx.

110 {
111}

Member Function Documentation

◆ dump()

void TRungeFitter::dump ( const std::string & message = std::string(""),
const std::string & prefix = std::string("") ) const

dumps debug information.

◆ fit() [1/2]

int TRungeFitter::fit ( TTrackBase & tb) const
virtual

Implements TMFitter.

Definition at line 122 of file TRungeFitter.cxx.

122 {
123 return fit(tb,0,-1);
124}
virtual int fit(TTrackBase &) const

Referenced by TrkReco::execute(), and fit().

◆ fit() [2/2]

int TRungeFitter::fit ( TTrackBase & tb,
float t0Offset,
int layer ) const
virtual

Definition at line 126 of file TRungeFitter.cxx.

126 {
127// Argument layer is used for calibration interface in which doca is calculated without measured hit. liucy
128 IMdcCalibFunSvc* l_mdcCalFunSvc;
129 Gaudi::svcLocator() -> service("MdcCalibFunSvc", l_mdcCalFunSvc);
130 //std::cout<<"TRungeFitter::fit start"<<std::endl;
131 //...Type check...
132 if(tb.objectType() != Runge) return TFitUnavailable;
133 TRunge& t = (TRunge&) tb;
134 //...Already fitted ?...
135 if(t.fitted()&&layer==-1) return TFitAlreadyFitted;
136 //...Count # of hits...
137 const AList<TMLink>& cores = t.cores();
138 unsigned nCores = cores.length();
139 unsigned nStereoCores = NStereoHits(cores);
140 TMLink* last=NULL;
141 int lyr=0;
142 int layerid=0;
143 for(int i=0;i<nCores;i++){
144 layerid=(*cores[i]->hit()).wire()->layerId();
145 if(layerid>=lyr){
146 lyr=layerid;
147 last=cores[i];
148 }
149 }
150
151 //...Check # of hits...
152 // if ((nStereoCores < 2) || (nCores - nStereoCores < 3))
153 // return TFitErrorFewHits;
154
155 //...Move pivot to ORIGIN...
156 const HepPoint3D pivot_bak = t.pivot();
157 t.pivot(ORIGIN);
158
159 //...Setup...
160 Vector a(5),da(5);
161 a = t.a();
162 Vector ainitial(a);
163 Vector dDda(5);
164 Vector dchi2da(5);
165 SymMatrix d2chi2d2a(5,0);
166 const SymMatrix zero5(5,0);
167 double chi2;
168 double chi2Old = 0;
169 for(int i=0;i<t.links().length();i++){
170 chi2Old=chi2Old+t.links()[i]->pull();
171 }
172 chi2Old=DBL_MAX;
173 int err = 0;
174
175 double factor = 0.1;
176 Vector beta(5);
177 SymMatrix alpha(5,0);
178 SymMatrix alpha2(5,0);
179
180 double (*d)[5]=new double[nCores][5];
181 // double (*d2)[5]=new double[nCores][5];
182 Vector ea(5);
183
184 float tof;
185 HepVector3D p;
186 unsigned i;
187
188 double distance;
189 double eDistance;
190
191 // ea... init
192 const double ea_init=0.000001;
193 ea[0]=ea_init; //dr
194 ea[1]=ea_init; //phi0
195 ea[2]=ea_init; //kappa
196 ea[3]=ea_init; //dz
197 ea[4]=ea_init; //tanl
198
199 //std::cout<<"TRF ::"<<a[0]<<","<<a[1]<<","<<a[2]<<","<<a[3]<<","<<a[4]<<std::endl;
200
201 //long int lclock0=clock()/1000;
202 //long int lclock=lclock0;
203
204 Vector def_a(t.a());
205 Vector ta(def_a);
206
207 //...Fitting loop...
208 unsigned nTrial = 0;
209 while(nTrial < 100){
210
211 //...Set up...
212 chi2 = 0;
213 for (unsigned j=0;j<5;j++) dchi2da[j]=0;
214 d2chi2d2a=zero5;
215
216 def_a=t.a();
217
218 //#### loop for shifted helix parameter set ####
219 for(unsigned j=0;j<5;j++){
220 ta=def_a;
221 ta[j]+=ea[j];
222 t.a(ta);
223 //...Loop with hits...
224 i=0;
225 //std::cout<<"TRF:: cores="<<cores.length()<<std::endl;
226 while(TMLink * l = cores[i++]){
227 //...Cal. closest points...
228 t.approach(* l,tof,p,_BesBeamPipeMaterials[0],_sag);
229 const HepPoint3D& onTrack=l->positionOnTrack();
230 const HepPoint3D& onWire=l->positionOnWire();
231 d[i-1][j]=(onTrack-onWire).mag();
232 //std::cout<<"TRF:: i="<<i<<std::endl;
233 }//end of loop with hits
234 //lclock=clock()/1000;
235 //std::cout<<"TRF clock="<<lclock-lclock0<<std::endl;
236 //lclock0=lclock;
237 }
238 /*
239 for(int j=0;j<5;j++){
240 ta=def_a;
241 ta[j]-=ea[j];
242 t.a(ta);
243 //...Loop with hits...
244 float tof_dummy;
245 Vector3 p_dummy;
246 unsigned i=0;
247 while(TMLink* l = cores[i++]){
248 //...Cal. closest points...
249 t.approach(*l,tof_dummy,p_dummy,_sag);
250 const HepPoint3D& onTrack=l->positionOnTrack();
251 const HepPoint3D& onWire=l->positionOnWire();
252 d2[i-1][j]=(onTrack-onWire).mag();
253 }//end of loop with hits
254 }
255 */
256 t.a(def_a);
257
258 //#### original parameter set and calc. chi2 ####
259 //...Loop with hits...
260 i=0;
261 while(TMLink * l = cores[i++]){
262 const TMDCWireHit& h = * l->hit();
263 //...Cal. closest points...
264 if(t.approach(* l,tof,p,_BesBeamPipeMaterials[0],_sag)<0){
265 std::cout<<"TrkReco:TRF:: bad wire"<<std::endl;
266 continue;
267 }
268 int layerId=h.wire()->layerId();
269 const HepPoint3D& onTrack=l->positionOnTrack();
270 const HepPoint3D& onWire=l->positionOnWire();
271 unsigned leftRight = WireHitRight;
272 if (onWire.cross(onTrack).z() < 0.) leftRight = WireHitLeft;
273
274 //...Obtain drift distance and its error...
275 if ((t0Offset == 0.) && (_propagation==0) && (! _tof)) {
276 //...No correction...
277 distance = l->drift(leftRight);
278 eDistance = h.dDrift(leftRight);
279 }else{
280 //...T0 and propagation corrections...
281 int wire = h.wire()->id();
282 int wirelocal=h.wire()->localId();
283 int side = leftRight;
284 if (side==0) side = 0;
285 //maqm float tp[3] = {p.x(),p.y(),p.z()};
286 double tp[3] = {p.x(),p.y(),p.z()};
287 //maqm float x[3] = {onWire.x(), onWire.y(), onWire.z()};
288 double x[3] = {onWire.x(), onWire.y(), onWire.z()};
289 double tprop = l_mdcCalFunSvc->getTprop(layerId,onWire.z()*10.);
290 double timeWalk = l_mdcCalFunSvc->getTimeWalk(layerId, h.reccdc()->adc);
291 double T0 = l_mdcCalFunSvc->getT0(layerId,wirelocal);
292 double drifttime = h.reccdc()->tdc - tof - tprop - timeWalk -T0;
293 l->setDriftTime(drifttime);
294 float dist;
295 float edist;
296 int prop = _propagation;
297 const double x0 = t.helix().pivot().x();
298 const double y0 = t.helix().pivot().y();
299 Hep3Vector pivot_helix(x0,y0,0);
300 const double dr = t.helix().a()[0];
301 const double phi0 = t.helix().a()[1];
302 const double kappa = t.helix().a()[2];
303 const double dz = t.helix().a()[3];
304 const double tanl = t.helix().a()[4];
305
306 const double Bz = -1000*(m_pmgnIMF->getReferField());
307 const double alpha = 333.564095 / Bz;
308
309 const double cox = x0 + dr*cos(phi0)- alpha*cos(phi0)/kappa;
310 const double coy = y0 + dr*sin(phi0) - alpha*sin(phi0)/kappa;
311 HepPoint3D dir(onTrack.y()-coy,cox-onTrack.x(),0);
312 double pos_phi=onWire.phi();
313 double dir_phi=dir.phi();
314 while(pos_phi>pi){pos_phi-=pi;}
315 while(pos_phi<0){pos_phi+=pi;}
316 while(dir_phi>pi){dir_phi-=pi;}
317 while(dir_phi<0){dir_phi+=pi;}
318 double entrangle=dir_phi-pos_phi;
319 while(entrangle>pi/2)entrangle-=pi;
320 while(entrangle<(-1)*pi/2)entrangle+=pi;
321 dist = l_mdcCalFunSvc->driftTimeToDist(drifttime,layerId, wirelocal, side, entrangle);
322 dist= dist/10;//mm->cmo
323 if(layer==-1||layerId!=layer){
324 edist = l_mdcCalFunSvc->getSigma(layerId, side, dist, entrangle,tanl,onWire.z()*10,h.reccdc()->adc); }
325 else if(layerId==layer){edist=99999999;}
326 edist = edist/10;
327 distance = (double) dist;
328 eDistance = (double) edist;
329
330 }
331 double eDistance2=eDistance*eDistance;
332
333 //...Residual...
334 const double d0 = (onTrack-onWire).mag();
335 //if(d0>2) std::cout<<"TRF:: strange dist. d0="<<d0<<" x="<<distance
336 // <<" ex="<<eDistance<<std::endl;
337 double dDistance = d0 - distance;
338
339 //...dDda...
340 for(int j=0;j<5;j++){
341 dDda[j]=(d[i-1][j]-d0)/ea[j];
342 //if(dDda[j]==0) std::cout<<"TRF:: dDda=0 j="<<j<<" ea="<<ea[j]<<std::endl;
343 }
344 // for(int j=0;j<5;j++) dDda[j]=(d[i-1][j]-d2[i-1][j])/ea[j]/2.;
345 //...Chi2 related...
346 dchi2da += (dDistance / eDistance2) * dDda;
347 d2chi2d2a += vT_times_v(dDda) / eDistance2;
348 double pChi2 = dDistance * dDistance / eDistance2;
349 chi2 += pChi2;
350 //if(!(pChi2<0 || pChi2>=0)){
351 // std::cout<<"TRF:: pChi2="<<pChi2<<" X="<<d0<<" fx="<<distance
352 // <<" ex="<<eDistance<<std::endl;
353 //}
354
355 //...Store results...
356 if(layer==-1){
357 l->update(onTrack, onWire, leftRight, pChi2);
358 l->drift(distance,0);
359 l->drift(distance,1);
360 l->dDrift(eDistance,0);
361 l->dDrift(eDistance,1);
362 }
363
364 else if(layerId==layer){
365 l->distance((onTrack-onWire).mag());
366 }
367 }//end of loop with hits
368
369 //...Check condition...
370 double change = chi2Old - chi2;
371 if (0 <= change && change < 0.01) break;
372 if (change < 0.) {
373 factor *= 100;
374 a += da; //recover
375 if(-0.01 < change){
376 d2chi2d2a=alpha;
377 chi2=chi2Old;
378 break;
379 }
380 }else if(change > 0.){
381 chi2Old = chi2;
382 factor *= 0.1;
383 alpha=d2chi2d2a;
384 beta=dchi2da;
385 }else if(nTrial==0){
386 chi2Old = chi2;
387 factor *= 0.1;
388 alpha=d2chi2d2a;
389 beta=dchi2da;
390 }else{
391 std::cout<<"TrkReco:TRF:: bad chi2 = "<<chi2<<std::endl;
392 err=TFitFailed;
393// break; // protection for nan
394 return err;
395 }
396 alpha2=alpha;
397 for(unsigned j=0;j<5;j++) alpha2[j][j]*=(1+factor);
398 //...Cal. helix parameters for next loop...
399 da = solve(alpha2,beta);
400
401 //lclock=clock()/1000;
402 //std::cout<<"TRF "<<nTrial<<": "
403 // <<"cl="<<lclock-lclock0<<": "
404 // <<a[0]<<","<<a[1]<<","<<a[2]<<","<<a[3]<<","<<a[4]<<" "
405 // <<chi2<<"/"<<nCores<<":"<<factor
406 // <<" :da "<<da[0]<<","<<da[1]<<","<<da[2]<<","<<da[3]<<","<<da[4]<<std::endl;
407 //lclock0=lclock;
408
409 a -= da;
410 t.a(a);
411 //ea = 0.0001*da;
412 for(i=0;i<5;i++){
413 ea[i]=0.0001*abs(da[i]);
414 if(ea[i]>ea_init) ea[i]=ea_init;
415 if(ea[i]<1.0e-10) ea[i]=1.0e-10;
416 }
417 ++nTrial;
418 }
419 //std::cout<<"TRungeFitter:: nTrial="<<nTrial<<std::endl;
420
421 //...Cal. error matrix...
422 SymMatrix Ea(5,0);
423 unsigned dim;
424 dim=5;
425 Ea = d2chi2d2a.inverse(err);
426 if(nCores){
427 t.approach(*last,tof,p,_BesBeamPipeMaterials[0],_sag);}
428 // consider the material effect beam pipe.
429 double y_[6]={0,0,0,0,0,0};
430 t.SetFirst(y_);//obtain the momentum of the first layer
431 int lmass=0;
432 innerwall(t,lmass,y_);// consider the material layer by layer
433 int nsign=a[2]/abs(a[2]);
434 // Update the helix parameter (momentum part.)
435 a[4]=y_[5]/sqrt(y_[4]*y_[4]+y_[3]*y_[3]);
436 a[2]=nsign*1/sqrt(y_[4]*y_[4]+y_[3]*y_[3]);
437 //...Store information...
438 if(! err&&layer==-1){
439 t.a(a);
440 t.Ea(Ea);
441 t._fitted = true;
442 }else if(! err&&layer!=-1){
443 t.a(ainitial);
444// t.Ea(Ea);
445 t._fitted = true;
446 }else{
447 err = TFitFailed;
448 }
449
450 t._ndf = nCores - dim;
451 t._chi2 = chi2;
452
453 //...Recover pivot...
454 t.pivot(pivot_bak);
455
456 delete [] d;
457 // delete [] d2;
458
459 return err;
460}
double sin(const BesAngle a)
Definition BesAngle.h:210
double cos(const BesAngle a)
Definition BesAngle.h:213
Double_t x[10]
const double alpha
#define DBL_MAX
Definition KalFitAlg.h:13
const HepPoint3D ORIGIN
Constants.
Definition TMDCUtil.cxx:47
#define WireHitLeft
Definition TMDCWireHit.h:21
#define WireHitRight
Definition TMDCWireHit.h:22
#define TFitAlreadyFitted
Definition TMFitter.h:28
#define TFitFailed
Definition TMFitter.h:30
#define TFitUnavailable
Definition TMFitter.h:31
#define Runge
Definition TRunge.h:19
#define NULL
TTree * t
Definition binning.cxx:23
virtual double getReferField()=0
virtual double driftTimeToDist(double drifttime, int layid, int cellid, int lr, double entrance=0.0) const =0
virtual double getSigma(int layid, int lr, double dist, double entrance=0.0, double tanlam=0.0, double z=0.0, double Q=1000.0) const =0
virtual double getTprop(int lay, double z) const =0
virtual double getT0(int layid, int cellid) const =0
virtual double getTimeWalk(int layid, double Q) const =0
struct MdcRec_wirhit * reccdc(void) const
returns a pointer to RECMDC_WIRHIT.
float dDrift(unsigned) const
returns drift distance error.
const TMDCWire *const wire(void) const
returns a pointer to a TMDCWire.
unsigned id(void) const
returns id.
Definition TMDCWire.h:207
unsigned localId(void) const
returns local id in a wire layer.
Definition TMDCWire.h:213
unsigned layerId(void) const
returns layer id.
Definition TMDCWire.h:219
void innerwall(TRunge &trk, int l_mass, double y[6]) const
std::vector< RkFitMaterial > _BesBeamPipeMaterials
void tof(bool)
A class to represent a track in tracking.
Definition TRunge.h:65
virtual unsigned objectType(void) const
returns object type.
Definition TTrackBase.h:268
const float pi
Definition vector3.h:133

◆ getMaterial()

const RkFitMaterial TRungeFitter::getMaterial ( int i) const

◆ innerwall()

void TRungeFitter::innerwall ( TRunge & trk,
int l_mass,
double y[6] ) const

Definition at line 673 of file TRungeFitter.cxx.

673 {
674 for(int i = 0; i < _BesBeamPipeWalls.size(); i++) {
675 _BesBeamPipeWalls[i].updateTrack(track,y);
676 }
677}
std::vector< RkFitCylinder > _BesBeamPipeWalls
double y[1000]

Referenced by fit().

◆ propagation()

void TRungeFitter::propagation ( int _in)

Definition at line 116 of file TRungeFitter.cxx.

116 {
117 _propagation = _in;
118}

◆ sag()

void TRungeFitter::sag ( bool _in)

Definition at line 113 of file TRungeFitter.cxx.

113 {
114 _sag = _in;
115}

◆ setBesFromGdml()

void TRungeFitter::setBesFromGdml ( void )

mdcgas

inner wall aluminium

air

outer beryllium pipe

cooling oil

inner beryllium pipe

gold

now construct the cylinders

innerwall of inner drift chamber

outer air, be attention the calculation of the radius and thick of the air cylinder is special

outer Beryllium layer

oil layer

inner Beryllium layer

gold layer

Definition at line 461 of file TRungeFitter.cxx.

461 {
462 int i(0);
463 double Z(0.),A(0.),Ionization(0.),Density(0.),Radlen(0.);
464
465 G4LogicalVolume *logicalMdc = 0;
466 MdcG4Geo* aMdcG4Geo = new MdcG4Geo();
467 logicalMdc = aMdcG4Geo->GetTopVolume();
468
469 /// mdcgas
470 G4Material* mdcMaterial = logicalMdc->GetMaterial();
471
472 for(i=0; i<mdcMaterial->GetElementVector()->size(); i++){
473 Z += (mdcMaterial->GetElement(i)->GetZ())*
474 (mdcMaterial->GetFractionVector()[i]);
475 A += (mdcMaterial->GetElement(i)->GetA())*
476 (mdcMaterial->GetFractionVector()[i]);
477 }
478 Ionization = mdcMaterial->GetIonisation()->GetMeanExcitationEnergy();
479 Density = mdcMaterial->GetDensity()/(g/cm3);
480 Radlen = mdcMaterial->GetRadlen();
481 RkFitMaterial FitMdcMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
482 cout<<"mdcgas: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
483 _BesBeamPipeMaterials.push_back(FitMdcMaterial);
484 //RkFitTrack::mdcGasRadlen_ = Radlen/10.;
485
486 /// inner wall aluminium
487 G4LogicalVolume* innerwallVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicalMdcSegment2"));
488 G4Material* innerwallMaterial = innerwallVolume->GetMaterial();
489 G4Tubs* innerwallTub = dynamic_cast<G4Tubs*>(innerwallVolume->GetSolid());
490
491 Z = 0.;
492 A = 0.;
493 for(i=0; i<innerwallMaterial->GetElementVector()->size(); i++){
494 Z += (innerwallMaterial->GetElement(i)->GetZ())*
495 (innerwallMaterial->GetFractionVector()[i]);
496 A += (innerwallMaterial->GetElement(i)->GetA())*
497 (innerwallMaterial->GetFractionVector()[i]);
498 }
499
500 Ionization = innerwallMaterial->GetIonisation()->GetMeanExcitationEnergy();
501 Density = innerwallMaterial->GetDensity()/(g/cm3);
502 Radlen = innerwallMaterial->GetRadlen();
503 cout<<"Mdc innerwall, Al: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
504 RkFitMaterial FitInnerwallMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
505 _BesBeamPipeMaterials.push_back(FitInnerwallMaterial);
506
507 ///////////////////////////////////////////////////////////////////////////////////////////////////
508 G4LogicalVolume *logicalBes = 0;
509 BesG4Geo* aBesG4Geo = new BesG4Geo();
510 logicalBes = aBesG4Geo->GetTopVolume();
511
512 /// air
513 G4LogicalVolume* logicalAirVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicalWorld"));
514 G4Material* airMaterial = logicalAirVolume->GetMaterial();
515 Z = 0.;
516 A = 0.;
517 for(i=0; i<airMaterial->GetElementVector()->size(); i++){
518 Z += (airMaterial->GetElement(i)->GetZ())*
519 (airMaterial->GetFractionVector()[i]);
520 A += (airMaterial->GetElement(i)->GetA())*
521 (airMaterial->GetFractionVector()[i]);
522 }
523 Ionization = airMaterial->GetIonisation()->GetMeanExcitationEnergy();
524 Density = airMaterial->GetDensity()/(g/cm3);
525 Radlen = airMaterial->GetRadlen();
526 cout<<"air: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
527 RkFitMaterial FitAirMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
528 _BesBeamPipeMaterials.push_back(FitAirMaterial);
529
530 /// outer beryllium pipe
531 G4LogicalVolume* logicalOuterBeVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicalouterBe"));
532 G4Material* outerBeMaterial = logicalOuterBeVolume->GetMaterial();
533
534 G4Tubs* outerBeTub = dynamic_cast<G4Tubs*>(logicalOuterBeVolume->GetSolid());
535 Z = 0.;
536 A = 0.;
537 for(i=0; i<outerBeMaterial->GetElementVector()->size(); i++){
538 Z += (outerBeMaterial->GetElement(i)->GetZ())*
539 (outerBeMaterial->GetFractionVector()[i]);
540 A += (outerBeMaterial->GetElement(i)->GetA())*
541 (outerBeMaterial->GetFractionVector()[i]);
542 }
543 Ionization = outerBeMaterial->GetIonisation()->GetMeanExcitationEnergy();
544 Density = outerBeMaterial->GetDensity()/(g/cm3);
545 Radlen = outerBeMaterial->GetRadlen();
546 cout<<"outer beryllium: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
547 RkFitMaterial FitOuterBeMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
548 _BesBeamPipeMaterials.push_back(FitOuterBeMaterial);
549
550 /// cooling oil
551 G4LogicalVolume* logicalOilLayerVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicaloilLayer"));
552 G4Material* oilLayerMaterial = logicalOilLayerVolume->GetMaterial();
553 G4Tubs* oilLayerTub = dynamic_cast<G4Tubs*>(logicalOilLayerVolume->GetSolid());
554
555 Z = 0.;
556 A = 0.;
557 for(i=0; i<oilLayerMaterial->GetElementVector()->size(); i++){
558 Z += (oilLayerMaterial->GetElement(i)->GetZ())*
559 (oilLayerMaterial->GetFractionVector()[i]);
560 A += (oilLayerMaterial->GetElement(i)->GetA())*
561 (oilLayerMaterial->GetFractionVector()[i]);
562 }
563 Ionization = oilLayerMaterial->GetIonisation()->GetMeanExcitationEnergy();
564 Density = oilLayerMaterial->GetDensity()/(g/cm3);
565 Radlen = oilLayerMaterial->GetRadlen();
566 cout<<"cooling oil: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
567 RkFitMaterial FitOilLayerMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
568 _BesBeamPipeMaterials.push_back(FitOilLayerMaterial);
569
570
571 /// inner beryllium pipe
572 G4LogicalVolume* logicalInnerBeVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicalinnerBe"));
573
574 G4Material* innerBeMaterial = logicalInnerBeVolume->GetMaterial();
575 G4Tubs* innerBeTub = dynamic_cast<G4Tubs*>(logicalInnerBeVolume->GetSolid());
576 Z = 0.;
577 A = 0.;
578 for(i=0; i<innerBeMaterial->GetElementVector()->size(); i++){
579 Z += (innerBeMaterial->GetElement(i)->GetZ())*
580 (innerBeMaterial->GetFractionVector()[i]);
581 A += (innerBeMaterial->GetElement(i)->GetA())*
582 (innerBeMaterial->GetFractionVector()[i]);
583 }
584 Ionization = innerBeMaterial->GetIonisation()->GetMeanExcitationEnergy();
585 Density = innerBeMaterial->GetDensity()/(g/cm3);
586 Radlen = innerBeMaterial->GetRadlen();
587 cout<<"inner beryllium: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
588 RkFitMaterial FitInnerBeMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
589 _BesBeamPipeMaterials.push_back(FitInnerBeMaterial);
590
591
592 /// gold
593 G4LogicalVolume* logicalGoldLayerVolume = const_cast<G4LogicalVolume*>(GDMLProcessor::GetInstance()->GetLogicalVolume("logicalgoldLayer"));
594 G4Material* goldLayerMaterial = logicalGoldLayerVolume->GetMaterial();
595 G4Tubs* goldLayerTub = dynamic_cast<G4Tubs*>(logicalGoldLayerVolume->GetSolid());
596
597 Z = 0.;
598 A = 0.;
599 for(i=0; i<goldLayerMaterial->GetElementVector()->size(); i++){
600 Z += (goldLayerMaterial->GetElement(i)->GetZ())*
601 (goldLayerMaterial->GetFractionVector()[i]);
602 A += (goldLayerMaterial->GetElement(i)->GetA())*
603 (goldLayerMaterial->GetFractionVector()[i]);
604 }
605 Ionization = goldLayerMaterial->GetIonisation()->GetMeanExcitationEnergy();
606 Density = goldLayerMaterial->GetDensity()/(g/cm3);
607 Radlen = goldLayerMaterial->GetRadlen();
608 cout<<"gold layer: Z: "<<Z<<" A: "<<(A/(g/mole))<<" Ionization: "<<(Ionization/eV)<<" Density: "<<Density<<" Radlen: "<<Radlen<<endl;
609 RkFitMaterial FitGoldLayerMaterial(Z,A/g/mole,Ionization/eV,Density,Radlen/10.);
610 _BesBeamPipeMaterials.push_back(FitGoldLayerMaterial);
611
612
613 /// now construct the cylinders
614 double radius, thick, length , z0;
615
616 /// innerwall of inner drift chamber
617 radius = innerwallTub->GetInnerRadius()/(cm);
618 thick = innerwallTub->GetOuterRadius()/(cm) - innerwallTub->GetInnerRadius()/(cm);
619 length = 2.0*innerwallTub->GetZHalfLength()/(cm);
620 z0 = 0.0;
621 cout<<"innerwall: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
622 RkFitCylinder innerwallCylinder(&_BesBeamPipeMaterials[1], radius, thick, length , z0);
623 _BesBeamPipeWalls.push_back(innerwallCylinder);
624
625 /// outer air, be attention the calculation of the radius and thick of the air cylinder is special
626 radius = outerBeTub->GetOuterRadius()/(cm);
627 thick = innerwallTub->GetInnerRadius()/(cm) - outerBeTub->GetOuterRadius()/(cm);
628 length = 2.0*innerwallTub->GetZHalfLength()/(cm);
629 z0 = 0.0;
630 cout<<"outer air: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
631 RkFitCylinder outerAirCylinder(&_BesBeamPipeMaterials[2], radius, thick, length , z0);
632 _BesBeamPipeWalls.push_back(outerAirCylinder);
633
634 /// outer Beryllium layer
635 radius = outerBeTub->GetInnerRadius()/(cm);
636 thick = outerBeTub->GetOuterRadius()/(cm) - outerBeTub->GetInnerRadius()/(cm);
637 length = 2.0*outerBeTub->GetZHalfLength()/(cm);
638 z0 = 0.0;
639 cout<<"outer Be: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
640 RkFitCylinder outerBeCylinder(&_BesBeamPipeMaterials[3], radius, thick, length , z0);
641 _BesBeamPipeWalls.push_back(outerBeCylinder);
642
643 /// oil layer
644 radius = oilLayerTub->GetInnerRadius()/(cm);
645 thick = oilLayerTub->GetOuterRadius()/(cm) - oilLayerTub->GetInnerRadius()/(cm);
646 length = 2.0*oilLayerTub->GetZHalfLength()/(cm);
647 z0 = 0.0;
648 cout<<"oil layer: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
649 RkFitCylinder oilLayerCylinder(&_BesBeamPipeMaterials[4], radius, thick, length , z0);
650 _BesBeamPipeWalls.push_back(oilLayerCylinder);
651
652 /// inner Beryllium layer
653 radius = innerBeTub->GetInnerRadius()/(cm);
654 thick = innerBeTub->GetOuterRadius()/(cm) - innerBeTub->GetInnerRadius()/(cm);
655 length = 2.0*innerBeTub->GetZHalfLength()/(cm);
656 z0 = 0.0;
657 cout<<"inner Be: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
658 RkFitCylinder innerBeCylinder(&_BesBeamPipeMaterials[5], radius, thick, length , z0);
659 _BesBeamPipeWalls.push_back(innerBeCylinder);
660
661 /// gold layer
662 radius = goldLayerTub->GetInnerRadius()/(cm);
663 thick = goldLayerTub->GetOuterRadius()/(cm) - goldLayerTub->GetInnerRadius()/(cm);
664 length = 2.0*goldLayerTub->GetZHalfLength()/(cm);
665 z0 = 0.0;
666 cout<<"gold layer: "<<" radius: "<<radius<<" thick:"<<thick<<" length: "<<length<<endl;
667 RkFitCylinder goldLayerCylinder(&_BesBeamPipeMaterials[6], radius, thick, length , z0);
668 _BesBeamPipeWalls.push_back(goldLayerCylinder);
669 delete aMdcG4Geo;
670 delete aBesG4Geo;
671}//end of setBesFromGdml
Cylinder is an Element whose shape is a cylinder.
G4LogicalVolume * GetTopVolume()
Get the top(world) volume;.

◆ tof()

void TRungeFitter::tof ( bool _in)

Definition at line 119 of file TRungeFitter.cxx.

119 {
120 _tof = _in;
121}

Referenced by fit().

Member Data Documentation

◆ _BesBeamPipeMaterials

std::vector<RkFitMaterial> TRungeFitter::_BesBeamPipeMaterials

Definition at line 58 of file TRungeFitter.h.

Referenced by fit(), and setBesFromGdml().

◆ _BesBeamPipeWalls

std::vector<RkFitCylinder> TRungeFitter::_BesBeamPipeWalls

Definition at line 57 of file TRungeFitter.h.

Referenced by innerwall(), and setBesFromGdml().


The documentation for this class was generated from the following files: