| 1 |
/** |
| 2 |
* \file TrkLevel2.cpp |
| 3 |
* \author Elena Vannuccini |
| 4 |
*/ |
| 5 |
#include <TrkLevel2.h> |
| 6 |
#include <iostream> |
| 7 |
using namespace std; |
| 8 |
//...................................... |
| 9 |
// F77 routines |
| 10 |
//...................................... |
| 11 |
extern "C" { |
| 12 |
void dotrack_(int*, double*, double*, double*, double*, int*); |
| 13 |
void dotrack2_(int*, double*, double*, double*, double*,double*, double*, double*,int*); |
| 14 |
int readb_(const char*); |
| 15 |
} |
| 16 |
//-------------------------------------- |
| 17 |
// |
| 18 |
// |
| 19 |
//-------------------------------------- |
| 20 |
TrkTrack::TrkTrack(){ |
| 21 |
seqno = -1; |
| 22 |
image = -1; |
| 23 |
chi2 = 0; |
| 24 |
for(int it1=0;it1<5;it1++){ |
| 25 |
al[it1] = 0; |
| 26 |
for(int it2=0;it2<5;it2++) |
| 27 |
coval[it1][it2] = 0; |
| 28 |
}; |
| 29 |
for(int ip=0;ip<6;ip++){ |
| 30 |
xgood[ip] = 0; |
| 31 |
ygood[ip] = 0; |
| 32 |
xm[ip] = 0; |
| 33 |
ym[ip] = 0; |
| 34 |
zm[ip] = 0; |
| 35 |
resx[ip] = 0; |
| 36 |
resy[ip] = 0; |
| 37 |
xv[ip] = 0; |
| 38 |
yv[ip] = 0; |
| 39 |
zv[ip] = 0; |
| 40 |
axv[ip] = 0; |
| 41 |
ayv[ip] = 0; |
| 42 |
dedx_x[ip] = 0; |
| 43 |
dedx_y[ip] = 0; |
| 44 |
}; |
| 45 |
}; |
| 46 |
//-------------------------------------- |
| 47 |
// |
| 48 |
// |
| 49 |
//-------------------------------------- |
| 50 |
TrkTrack::TrkTrack(const TrkTrack& t){ |
| 51 |
seqno = t.seqno; |
| 52 |
image = t.image; |
| 53 |
chi2 = t.chi2; |
| 54 |
for(int it1=0;it1<5;it1++){ |
| 55 |
al[it1] = t.al[it1]; |
| 56 |
for(int it2=0;it2<5;it2++) |
| 57 |
coval[it1][it2] = t.coval[it1][it2]; |
| 58 |
}; |
| 59 |
for(int ip=0;ip<6;ip++){ |
| 60 |
xgood[ip] = t.xgood[ip]; |
| 61 |
ygood[ip] = t.ygood[ip]; |
| 62 |
xm[ip] = t.xm[ip]; |
| 63 |
ym[ip] = t.ym[ip]; |
| 64 |
zm[ip] = t.zm[ip]; |
| 65 |
resx[ip] = t.resx[ip]; |
| 66 |
resy[ip] = t.resy[ip]; |
| 67 |
xv[ip] = t.xv[ip]; |
| 68 |
yv[ip] = t.yv[ip]; |
| 69 |
zv[ip] = t.zv[ip]; |
| 70 |
axv[ip] = t.axv[ip]; |
| 71 |
ayv[ip] = t.ayv[ip]; |
| 72 |
dedx_x[ip] = t.dedx_x[ip]; |
| 73 |
dedx_y[ip] = t.dedx_y[ip]; |
| 74 |
}; |
| 75 |
}; |
| 76 |
//-------------------------------------- |
| 77 |
// |
| 78 |
// |
| 79 |
//-------------------------------------- |
| 80 |
/** |
| 81 |
* Evaluates the trajectory in the apparatus associated to the track. |
| 82 |
* It integrates the equations of motion in the magnetic field. The magnetic field should be previously loaded ( by calling TrkLevel2::LoadField() ), otherwise an error message is returned. |
| 83 |
* @param t pointer to an object of the class Trajectory, |
| 84 |
* which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ). |
| 85 |
* @return error flag. |
| 86 |
*/ |
| 87 |
int TrkTrack::DoTrack(Trajectory* t){ |
| 88 |
|
| 89 |
double *dxout = new double[t->npoint]; |
| 90 |
double *dyout = new double[t->npoint]; |
| 91 |
double *dzin = new double[t->npoint]; |
| 92 |
double dal[5]; |
| 93 |
|
| 94 |
int ifail = 0; |
| 95 |
|
| 96 |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
| 97 |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
| 98 |
|
| 99 |
dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail); |
| 100 |
|
| 101 |
for (int i=0; i<t->npoint; i++){ |
| 102 |
t->x[i] = (float)*dxout++; |
| 103 |
t->y[i] = (float)*dyout++; |
| 104 |
} |
| 105 |
|
| 106 |
// delete [] dxout; |
| 107 |
// delete [] dyout; |
| 108 |
// delete [] dzin; |
| 109 |
|
| 110 |
return ifail; |
| 111 |
}; |
| 112 |
//-------------------------------------- |
| 113 |
// |
| 114 |
// |
| 115 |
//-------------------------------------- |
| 116 |
/** |
| 117 |
* Evaluates the trajectory in the apparatus associated to the track. |
| 118 |
* It integrates the equations of motion in the magnetic field. The magnetic field should be previously loaded ( by calling TrkLevel2::LoadField() ), otherwise an error message is returned. |
| 119 |
* @param t pointer to an object of the class Trajectory, |
| 120 |
* which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ). |
| 121 |
* @return error flag. |
| 122 |
*/ |
| 123 |
int TrkTrack::DoTrack2(Trajectory* t){ |
| 124 |
|
| 125 |
double *dxout = new double[t->npoint]; |
| 126 |
double *dyout = new double[t->npoint]; |
| 127 |
double *dthxout = new double[t->npoint]; |
| 128 |
double *dthyout = new double[t->npoint]; |
| 129 |
double *dtlout = new double[t->npoint]; |
| 130 |
double *dzin = new double[t->npoint]; |
| 131 |
double dal[5]; |
| 132 |
|
| 133 |
int ifail = 0; |
| 134 |
|
| 135 |
for (int i=0; i<5; i++) dal[i] = (double)al[i]; |
| 136 |
for (int i=0; i<t->npoint; i++) dzin[i] = (double)t->z[i]; |
| 137 |
|
| 138 |
dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail); |
| 139 |
|
| 140 |
for (int i=0; i<t->npoint; i++){ |
| 141 |
t->x[i] = (float)*dxout++; |
| 142 |
t->y[i] = (float)*dyout++; |
| 143 |
t->thx[i] = (float)*dthxout++; |
| 144 |
t->thy[i] = (float)*dthyout++; |
| 145 |
t->tl[i] = (float)*dtlout++; |
| 146 |
} |
| 147 |
|
| 148 |
// delete [] dxout; |
| 149 |
// delete [] dyout; |
| 150 |
// delete [] dzin; |
| 151 |
|
| 152 |
return ifail; |
| 153 |
}; |
| 154 |
//-------------------------------------- |
| 155 |
// |
| 156 |
// |
| 157 |
//-------------------------------------- |
| 158 |
//float TrkTrack::BdL(){ |
| 159 |
//}; |
| 160 |
//-------------------------------------- |
| 161 |
// |
| 162 |
// |
| 163 |
//-------------------------------------- |
| 164 |
Float_t TrkTrack::GetRigidity(){ |
| 165 |
Float_t rig=0; |
| 166 |
if(chi2>0)rig=1./al[4]; |
| 167 |
if(rig<0) rig=-rig; |
| 168 |
return rig; |
| 169 |
}; |
| 170 |
// |
| 171 |
Float_t TrkTrack::GetDeflection(){ |
| 172 |
Float_t def=0; |
| 173 |
if(chi2>0)def=al[4]; |
| 174 |
return def; |
| 175 |
}; |
| 176 |
// |
| 177 |
Float_t TrkTrack::GetDEDX(){ |
| 178 |
Float_t dedx=0; |
| 179 |
for(Int_t i=0; i<6; i++)dedx+=dedx_x[i]*xgood[i]+dedx_y[i]*ygood[i]; |
| 180 |
dedx = dedx/(this->GetNX()+this->GetNY()); |
| 181 |
return dedx; |
| 182 |
}; |
| 183 |
|
| 184 |
//-------------------------------------- |
| 185 |
// |
| 186 |
// |
| 187 |
//-------------------------------------- |
| 188 |
void TrkTrack::Dump(){ |
| 189 |
cout << endl << "========== Track " ; |
| 190 |
cout << endl << "al : "; for(int i=0; i<5; i++)cout << al[i] << " "; |
| 191 |
cout << endl << "chi^2 : "<< chi2; |
| 192 |
cout << endl << "xgood : "; for(int i=0; i<6; i++)cout << xgood[i] ; |
| 193 |
cout << endl << "ygood : "; for(int i=0; i<6; i++)cout << ygood[i] ; |
| 194 |
cout << endl << "xm : "; for(int i=0; i<6; i++)cout << xm[i] << " "; |
| 195 |
cout << endl << "ym : "; for(int i=0; i<6; i++)cout << ym[i] << " "; |
| 196 |
cout << endl << "zm : "; for(int i=0; i<6; i++)cout << zm[i] << " "; |
| 197 |
cout << endl << "dedx_x : "; for(int i=0; i<6; i++)cout << dedx_x[i] << " "; |
| 198 |
cout << endl << "dedx_y : "; for(int i=0; i<6; i++)cout << dedx_y[i] << " "; |
| 199 |
} |
| 200 |
//-------------------------------------- |
| 201 |
// |
| 202 |
// |
| 203 |
//-------------------------------------- |
| 204 |
TrkSinglet::TrkSinglet(){ |
| 205 |
plane = 0; |
| 206 |
coord[0] = 0; |
| 207 |
coord[1] = 0; |
| 208 |
sgnl = 0; |
| 209 |
}; |
| 210 |
//-------------------------------------- |
| 211 |
// |
| 212 |
// |
| 213 |
//-------------------------------------- |
| 214 |
TrkSinglet::TrkSinglet(const TrkSinglet& s){ |
| 215 |
plane = s.plane; |
| 216 |
coord[0] = s.coord[0]; |
| 217 |
coord[1] = s.coord[1]; |
| 218 |
sgnl = s.sgnl; |
| 219 |
}; |
| 220 |
//-------------------------------------- |
| 221 |
// |
| 222 |
// |
| 223 |
//-------------------------------------- |
| 224 |
void TrkSinglet::Dump(){ |
| 225 |
int i=0; |
| 226 |
cout << endl << "========== Singlet " ; |
| 227 |
cout << endl << "plane : " << plane; |
| 228 |
cout << endl << "coord[2] : "; while( i<2 && cout << coord[i] << " ") i++; |
| 229 |
cout << endl << "sgnl : " << sgnl; |
| 230 |
} |
| 231 |
//-------------------------------------- |
| 232 |
// |
| 233 |
// |
| 234 |
//-------------------------------------- |
| 235 |
TrkLevel2::TrkLevel2(){ |
| 236 |
good2 = -1; |
| 237 |
for(Int_t i=0; i<12 ; i++){ |
| 238 |
crc[i] = -1; |
| 239 |
}; |
| 240 |
Track = new TClonesArray("TrkTrack"); |
| 241 |
SingletX = new TClonesArray("TrkSinglet"); |
| 242 |
SingletY = new TClonesArray("TrkSinglet"); |
| 243 |
|
| 244 |
// PhysicalTrack = new TClonesArray("TrkTrack"); |
| 245 |
//sostituire con TRefArray... appena ho capito come si usa |
| 246 |
} |
| 247 |
//-------------------------------------- |
| 248 |
// |
| 249 |
// |
| 250 |
//-------------------------------------- |
| 251 |
void TrkLevel2::Dump(){ |
| 252 |
TClonesArray &t = *Track; |
| 253 |
TClonesArray &sx = *SingletX; |
| 254 |
TClonesArray &sy = *SingletY; |
| 255 |
|
| 256 |
cout << endl << endl << "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-"; |
| 257 |
cout << endl << "good2 : " << good2; |
| 258 |
cout << endl << "crc : "; for(int i=0; i<12; i++) cout << crc[i]; |
| 259 |
cout << endl << "ntrk() : " << this->ntrk() ; |
| 260 |
cout << endl << "nclsx() : " << this->nclsx(); |
| 261 |
cout << endl << "nclsy() : " << this->nclsy(); |
| 262 |
for(int i=0; i<this->ntrk(); i++) ((TrkTrack *)t[i])->Dump(); |
| 263 |
for(int i=0; i<this->nclsx(); i++) ((TrkSinglet *)sx[i])->Dump(); |
| 264 |
for(int i=0; i<this->nclsy(); i++) ((TrkSinglet *)sy[i])->Dump(); |
| 265 |
} |
| 266 |
//-------------------------------------- |
| 267 |
// |
| 268 |
// |
| 269 |
//-------------------------------------- |
| 270 |
/** |
| 271 |
* Fills a TrkLevel2 object with values from a struct cTrkLevel2 (to get data from F77 common). |
| 272 |
*/ |
| 273 |
void TrkLevel2::SetFromLevel2Struct(cTrkLevel2 *l2){ |
| 274 |
// |
| 275 |
// Track = new TClonesArray("TrkTrack"); |
| 276 |
// SingletX = new TClonesArray("TrkSinglet"); |
| 277 |
// SingletY = new TClonesArray("TrkSinglet"); |
| 278 |
// temporary objects: |
| 279 |
TrkSinglet* t_singlet = new TrkSinglet(); |
| 280 |
TrkTrack* t_track = new TrkTrack(); |
| 281 |
// general variables |
| 282 |
good2 = l2->good2; |
| 283 |
for(Int_t i=0; i<12 ; i++){ |
| 284 |
crc[i] = l2->crc[i]; |
| 285 |
}; |
| 286 |
// *** TRACKS *** |
| 287 |
TClonesArray &t = *Track; |
| 288 |
for(int i=0; i<l2->ntrk; i++){ |
| 289 |
t_track->seqno = i; |
| 290 |
t_track->image = l2->image[i]-1; |
| 291 |
// cout << "track "<<i<<t_track->seqno << t_track->image<<endl; |
| 292 |
t_track->chi2 = l2->chi2_nt[i]; |
| 293 |
for(int it1=0;it1<5;it1++){ |
| 294 |
t_track->al[it1] = l2->al_nt[i][it1]; |
| 295 |
for(int it2=0;it2<5;it2++) |
| 296 |
t_track->coval[it1][it2] = l2->coval[i][it2][it1]; |
| 297 |
}; |
| 298 |
for(int ip=0;ip<6;ip++){ |
| 299 |
t_track->xgood[ip] = l2->xgood_nt[i][ip]; |
| 300 |
t_track->ygood[ip] = l2->ygood_nt[i][ip]; |
| 301 |
t_track->xm[ip] = l2->xm_nt[i][ip]; |
| 302 |
t_track->ym[ip] = l2->ym_nt[i][ip]; |
| 303 |
t_track->zm[ip] = l2->zm_nt[i][ip]; |
| 304 |
t_track->resx[ip] = l2->resx_nt[i][ip]; |
| 305 |
t_track->resy[ip] = l2->resy_nt[i][ip]; |
| 306 |
t_track->xv[ip] = l2->xv_nt[i][ip]; |
| 307 |
t_track->yv[ip] = l2->yv_nt[i][ip]; |
| 308 |
t_track->zv[ip] = l2->zv_nt[i][ip]; |
| 309 |
t_track->axv[ip] = l2->axv_nt[i][ip]; |
| 310 |
t_track->ayv[ip] = l2->ayv_nt[i][ip]; |
| 311 |
t_track->dedx_x[ip] = l2->dedx_x[i][ip]; |
| 312 |
t_track->dedx_y[ip] = l2->dedx_y[i][ip]; |
| 313 |
}; |
| 314 |
new(t[i]) TrkTrack(*t_track); |
| 315 |
t_track->Clear(); |
| 316 |
}; |
| 317 |
// *** SINGLETS *** |
| 318 |
TClonesArray &sx = *SingletX; |
| 319 |
for(int i=0; i<l2->nclsx; i++){ |
| 320 |
t_singlet->plane = l2->planex[i]; |
| 321 |
t_singlet->coord[0] = l2->xs[i][0]; |
| 322 |
t_singlet->coord[1] = l2->xs[i][1]; |
| 323 |
t_singlet->sgnl = l2->signlxs[i]; |
| 324 |
new(sx[i]) TrkSinglet(*t_singlet); |
| 325 |
t_singlet->Clear(); |
| 326 |
} |
| 327 |
TClonesArray &sy = *SingletY; |
| 328 |
for(int i=0; i<l2->nclsy; i++){ |
| 329 |
t_singlet->plane = l2->planey[i]; |
| 330 |
t_singlet->coord[0] = l2->ys[i][0]; |
| 331 |
t_singlet->coord[1] = l2->ys[i][1]; |
| 332 |
t_singlet->sgnl = l2->signlys[i]; |
| 333 |
new(sy[i]) TrkSinglet(*t_singlet); |
| 334 |
t_singlet->Clear(); |
| 335 |
}; |
| 336 |
|
| 337 |
delete t_track; |
| 338 |
delete t_singlet; |
| 339 |
} |
| 340 |
/** |
| 341 |
* Fills a struct cTrkLevel2 with values from a TrkLevel2 object (to put data into a F77 common). |
| 342 |
*/ |
| 343 |
|
| 344 |
void TrkLevel2::GetLevel2Struct(cTrkLevel2 *l2) const { |
| 345 |
|
| 346 |
// general variables |
| 347 |
l2->good2 = good2 ; |
| 348 |
for(Int_t i=0; i<12 ; i++){ |
| 349 |
l2->crc[i] = crc[i]; |
| 350 |
}; |
| 351 |
// *** TRACKS *** |
| 352 |
|
| 353 |
l2->ntrk = Track->GetEntries(); |
| 354 |
for(Int_t i=0;i<l2->ntrk;i++){ |
| 355 |
l2->image[i] = 1 + ((TrkTrack *)Track->At(i))->image; |
| 356 |
l2->chi2_nt[i] = ((TrkTrack *)Track->At(i))->chi2; |
| 357 |
for(int it1=0;it1<5;it1++){ |
| 358 |
l2->al_nt[i][it1] = ((TrkTrack *)Track->At(i))->al[it1]; |
| 359 |
for(int it2=0;it2<5;it2++) |
| 360 |
l2->coval[i][it2][it1] = ((TrkTrack *)Track->At(i))->coval[it1][it2]; |
| 361 |
}; |
| 362 |
for(int ip=0;ip<6;ip++){ |
| 363 |
l2->xgood_nt[i][ip] = ((TrkTrack *)Track->At(i))->xgood[ip]; |
| 364 |
l2->ygood_nt[i][ip] = ((TrkTrack *)Track->At(i))->ygood[ip]; |
| 365 |
l2->xm_nt[i][ip] = ((TrkTrack *)Track->At(i))->xm[ip]; |
| 366 |
l2->ym_nt[i][ip] = ((TrkTrack *)Track->At(i))->ym[ip]; |
| 367 |
l2->zm_nt[i][ip] = ((TrkTrack *)Track->At(i))->zm[ip]; |
| 368 |
l2->resx_nt[i][ip] = ((TrkTrack *)Track->At(i))->resx[ip]; |
| 369 |
l2->resy_nt[i][ip] = ((TrkTrack *)Track->At(i))->resy[ip]; |
| 370 |
l2->xv_nt[i][ip] = ((TrkTrack *)Track->At(i))->xv[ip]; |
| 371 |
l2->yv_nt[i][ip] = ((TrkTrack *)Track->At(i))->yv[ip]; |
| 372 |
l2->zv_nt[i][ip] = ((TrkTrack *)Track->At(i))->zv[ip]; |
| 373 |
l2->axv_nt[i][ip] = ((TrkTrack *)Track->At(i))->axv[ip]; |
| 374 |
l2->ayv_nt[i][ip] = ((TrkTrack *)Track->At(i))->ayv[ip]; |
| 375 |
l2->dedx_x[i][ip] = ((TrkTrack *)Track->At(i))->dedx_x[ip]; |
| 376 |
l2->dedx_y[i][ip] = ((TrkTrack *)Track->At(i))->dedx_y[ip]; |
| 377 |
}; |
| 378 |
} |
| 379 |
|
| 380 |
// *** SINGLETS *** |
| 381 |
l2->nclsx = SingletX->GetEntries(); |
| 382 |
for(Int_t i=0;i<l2->nclsx;i++){ |
| 383 |
l2->planex[i] = ((TrkSinglet *)SingletX->At(i))->plane; |
| 384 |
l2->xs[i][0] = ((TrkSinglet *)SingletX->At(i))->coord[0]; |
| 385 |
l2->xs[i][1] = ((TrkSinglet *)SingletX->At(i))->coord[1]; |
| 386 |
l2->signlxs[i] = ((TrkSinglet *)SingletX->At(i))->sgnl; |
| 387 |
} |
| 388 |
l2->nclsy = SingletY->GetEntries(); |
| 389 |
for(Int_t i=0;i<l2->nclsy;i++){ |
| 390 |
l2->planey[i] = ((TrkSinglet *)SingletY->At(i))->plane; |
| 391 |
l2->ys[i][0] = ((TrkSinglet *)SingletY->At(i))->coord[0]; |
| 392 |
l2->ys[i][1] = ((TrkSinglet *)SingletY->At(i))->coord[1]; |
| 393 |
l2->signlys[i] = ((TrkSinglet *)SingletY->At(i))->sgnl; |
| 394 |
} |
| 395 |
} |
| 396 |
//-------------------------------------- |
| 397 |
// |
| 398 |
// |
| 399 |
//-------------------------------------- |
| 400 |
void TrkLevel2::Clear(){ |
| 401 |
good2 = -1; |
| 402 |
for(Int_t i=0; i<12 ; i++){ |
| 403 |
crc[i] = -1; |
| 404 |
}; |
| 405 |
/* Track->RemoveAll(); |
| 406 |
SingletX->RemoveAll(); |
| 407 |
SingletY->RemoveAll();*/ |
| 408 |
// modify to avoid memory leakage |
| 409 |
Track->Clear(); |
| 410 |
SingletX->Clear(); |
| 411 |
SingletY->Clear(); |
| 412 |
} |
| 413 |
//-------------------------------------- |
| 414 |
// |
| 415 |
// |
| 416 |
//-------------------------------------- |
| 417 |
/** |
| 418 |
* Sort physical tracks and stores them in a TObjectArray, ordering by increasing chi**2 value (in case of track image, it selects the one with lower chi**2). The total number of physical tracks is given by GetNTracks() and the it-th physical track can be retrieved by means of the method GetTrack(int it). |
| 419 |
* This method is overridden by PamLevel2::GetTracks(), where calorimeter and TOF information is used. |
| 420 |
*/ |
| 421 |
TClonesArray *TrkLevel2::GetTracks(){ |
| 422 |
TClonesArray *sorted = GetTracks_NFitSorted(); |
| 423 |
return sorted; |
| 424 |
|
| 425 |
// fare di meglio... |
| 426 |
/* PhysicalTrack->Clear(); |
| 427 |
if(ntrk() > 0) GetTracks_NFitSorted(); |
| 428 |
return PhysicalTrack;*/ |
| 429 |
}; |
| 430 |
|
| 431 |
/*TClonesArray *TrkLevel2::GetTracks_Chi2Sorted(){ |
| 432 |
|
| 433 |
TClonesArray *sorted = new TClonesArray("TrkTrack"); |
| 434 |
TClonesArray &t = *Track; |
| 435 |
TClonesArray &ts = *sorted; |
| 436 |
int N=this->ntrk(); |
| 437 |
vector<int> m(N); for(int i=0; i<N; i++)m[i]=1; |
| 438 |
|
| 439 |
int indo=0; |
| 440 |
int indi=0; |
| 441 |
while(N != 0){ |
| 442 |
float chi2ref=1000000; |
| 443 |
for(int i=0; i<this->ntrk(); i++){ |
| 444 |
if(((TrkTrack *)t[i])->chi2 < chi2ref && m[i]==1){ |
| 445 |
chi2ref = ((TrkTrack *)t[i])->chi2; |
| 446 |
indi = i; |
| 447 |
} |
| 448 |
} |
| 449 |
if( ((TrkTrack *)t[indi])->image != -1 ){ |
| 450 |
m[((TrkTrack *)t[indi])->image] = 0; |
| 451 |
N--; |
| 452 |
} |
| 453 |
new(ts[indo]) TrkTrack(*(TrkTrack*)t[indi]); |
| 454 |
m[indi] = 0; |
| 455 |
N--; |
| 456 |
indo++; |
| 457 |
} |
| 458 |
return sorted; |
| 459 |
}*/ |
| 460 |
TClonesArray *TrkLevel2::GetTracks_NFitSorted(){ |
| 461 |
|
| 462 |
TClonesArray *sorted = new TClonesArray("TrkTrack"); |
| 463 |
TClonesArray &t = *Track; |
| 464 |
TClonesArray &ts = *sorted; |
| 465 |
// TClonesArray &ts = *PhysicalTrack; |
| 466 |
int N=this->ntrk(); |
| 467 |
vector<int> m(N); for(int i=0; i<N; i++)m[i]=1; |
| 468 |
|
| 469 |
int indo=0; |
| 470 |
int indi=0; |
| 471 |
while(N != 0){ |
| 472 |
int nfit =0; |
| 473 |
float chi2ref=1000000; |
| 474 |
// first loop to search maximum num. of fit points |
| 475 |
for(int i=0; i<this->ntrk(); i++){ |
| 476 |
if( ((TrkTrack *)t[i])->GetNtot() >= nfit && m[i]==1){ |
| 477 |
nfit = ((TrkTrack *)t[i])->GetNtot(); |
| 478 |
// cout << "1** "<<i<< " " << nfit<<endl; |
| 479 |
} |
| 480 |
} |
| 481 |
//second loop to search minimum chi2 among selected |
| 482 |
for(int i=0; i<this->ntrk(); i++){ |
| 483 |
if( ((TrkTrack *)t[i])->chi2 < chi2ref |
| 484 |
&& ((TrkTrack *)t[i])->GetNtot()== nfit |
| 485 |
&& m[i]==1){ |
| 486 |
chi2ref = ((TrkTrack *)t[i])->chi2; |
| 487 |
indi = i; |
| 488 |
// cout << "2** "<<i<< " " << nfit <<" "<<chi2ref<<endl; |
| 489 |
} |
| 490 |
} |
| 491 |
if( ((TrkTrack *)t[indi])->HasImage() ){ |
| 492 |
m[((TrkTrack *)t[indi])->image] = 0; |
| 493 |
N--; |
| 494 |
|
| 495 |
// Int_t nfiti=((TrkTrack *)t[((TrkTrack *)t[indi])->image ])->GetNtot(); |
| 496 |
// Float_t chi2i=((TrkTrack *)t[((TrkTrack *)t[indi])->image ])->chi2; |
| 497 |
|
| 498 |
// cout << "i** "<< ((TrkTrack *)t[indi])->image << " " << nfiti <<" "<<chi2i<<endl; |
| 499 |
} |
| 500 |
new(ts[indo]) TrkTrack(*(TrkTrack*)t[indi]); |
| 501 |
m[indi] = 0; |
| 502 |
N--; |
| 503 |
indo++; |
| 504 |
} |
| 505 |
return sorted; |
| 506 |
// return PhysicalTrack; |
| 507 |
} |
| 508 |
//-------------------------------------- |
| 509 |
// |
| 510 |
// |
| 511 |
//-------------------------------------- |
| 512 |
/** |
| 513 |
* Retrieves the is-th stored track. |
| 514 |
* @param it Track number, ranging from 0 to ntrk(). |
| 515 |
* Fitted tracks ( images included ) are stored in a TObjectArray ( TrkLevel2::Track ) in the same order they are returned by the F77 fitting routine. |
| 516 |
*/ |
| 517 |
TrkTrack *TrkLevel2::GetStoredTrack(int is){ |
| 518 |
|
| 519 |
if(is >= this->ntrk()){ |
| 520 |
cout << "** TrkLevel2 ** Track "<< is << "doen not exits! " << endl; |
| 521 |
cout << " Stored tracks ntrk() = "<< this->ntrk() << endl; |
| 522 |
return 0; |
| 523 |
} |
| 524 |
TClonesArray &t = *(Track); |
| 525 |
TrkTrack *track = (TrkTrack*)t[is]; |
| 526 |
return track; |
| 527 |
} |
| 528 |
//-------------------------------------- |
| 529 |
// |
| 530 |
// |
| 531 |
//-------------------------------------- |
| 532 |
/** |
| 533 |
* Retrieves the is-th stored X singlet. |
| 534 |
* @param it Singlet number, ranging from 0 to nclsx(). |
| 535 |
*/ |
| 536 |
TrkSinglet *TrkLevel2::GetSingletX(int is){ |
| 537 |
|
| 538 |
if(is >= this->nclsx()){ |
| 539 |
cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl; |
| 540 |
cout << " Stored x-singlets nclsx() = "<< this->nclsx() << endl; |
| 541 |
return 0; |
| 542 |
} |
| 543 |
TClonesArray &t = *(SingletX); |
| 544 |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
| 545 |
return singlet; |
| 546 |
} |
| 547 |
//-------------------------------------- |
| 548 |
// |
| 549 |
// |
| 550 |
//-------------------------------------- |
| 551 |
/** |
| 552 |
* Retrieves the is-th stored Y singlet. |
| 553 |
* @param it Singlet number, ranging from 0 to nclsx(). |
| 554 |
*/ |
| 555 |
TrkSinglet *TrkLevel2::GetSingletY(int is){ |
| 556 |
|
| 557 |
if(is >= this->nclsy()){ |
| 558 |
cout << "** TrkLevel2 ** Singlet "<< is << "doen not exits! " << endl; |
| 559 |
cout << " Stored y-singlets nclsy() = "<< this->nclsx() << endl; |
| 560 |
return 0; |
| 561 |
} |
| 562 |
TClonesArray &t = *(SingletY); |
| 563 |
TrkSinglet *singlet = (TrkSinglet*)t[is]; |
| 564 |
return singlet; |
| 565 |
} |
| 566 |
//-------------------------------------- |
| 567 |
// |
| 568 |
// |
| 569 |
//-------------------------------------- |
| 570 |
/** |
| 571 |
* Retrieves the it-th "physical" track, sorted by the method GetNTracks(). |
| 572 |
* @param it Track number, ranging from 0 to GetNTracks(). |
| 573 |
*/ |
| 574 |
TrkTrack *TrkLevel2::GetTrack(int it){ |
| 575 |
|
| 576 |
if(it >= this->GetNTracks()){ |
| 577 |
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
| 578 |
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
| 579 |
return 0; |
| 580 |
} |
| 581 |
TrkTrack *track = (TrkTrack*)(*(this->GetTracks()))[it]; |
| 582 |
GetTracks()->Delete();////TEMPORANEO |
| 583 |
return track; |
| 584 |
} |
| 585 |
/** |
| 586 |
* Give the number of "physical" tracks, sorted by the method GetTracks(). |
| 587 |
*/ |
| 588 |
Int_t TrkLevel2::GetNTracks(){ |
| 589 |
Int_t ntot=0; |
| 590 |
ntot = GetTracks()->GetEntries(); |
| 591 |
GetTracks()->Delete();////TEMPORANEO |
| 592 |
return ntot; |
| 593 |
}; |
| 594 |
//-------------------------------------- |
| 595 |
// |
| 596 |
// |
| 597 |
//-------------------------------------- |
| 598 |
/** |
| 599 |
* Retrieves (if present) the image of the it-th "physical" track, sorted by the method GetNTracks(). |
| 600 |
* @param it Track number, ranging from 0 to GetNTracks(). |
| 601 |
*/ |
| 602 |
TrkTrack *TrkLevel2::GetTrackImage(int it){ |
| 603 |
|
| 604 |
if(it >= this->GetNTracks()){ |
| 605 |
cout << "** TrkLevel2 ** Track "<< it << "does not exits! " << endl; |
| 606 |
cout << " Physical tracks GetNTracks() = "<< this->ntrk() << endl; |
| 607 |
return 0; |
| 608 |
} |
| 609 |
TrkTrack *track = (TrkTrack*)(*(this->GetTracks()))[it]; |
| 610 |
if(!track->HasImage()){ |
| 611 |
cout << "** TrkLevel2 ** Track "<< it << "does not have image! " << endl; |
| 612 |
return 0; |
| 613 |
} |
| 614 |
TrkTrack *image = (TrkTrack*)(*Track)[track->image]; |
| 615 |
GetTracks()->Delete(); ////TEMPORANEO |
| 616 |
return image; |
| 617 |
|
| 618 |
} |
| 619 |
//-------------------------------------- |
| 620 |
// |
| 621 |
// |
| 622 |
//-------------------------------------- |
| 623 |
/** |
| 624 |
* Loads the magnetic field. |
| 625 |
* @param s Path of the magnetic-field files. |
| 626 |
*/ |
| 627 |
void TrkLevel2::LoadField(TString s){ |
| 628 |
readb_(s.Data()); |
| 629 |
}; |
| 630 |
//-------------------------------------- |
| 631 |
// |
| 632 |
// |
| 633 |
//-------------------------------------- |
| 634 |
/** |
| 635 |
* Get tracker-plane (mechanical) z-coordinate |
| 636 |
* @param plane_id plane index (1=TOP,2,3,4,5,6=BOTTOM) |
| 637 |
*/ |
| 638 |
Float_t TrkLevel2::GetZTrk(Int_t plane_id){ |
| 639 |
switch(plane_id){ |
| 640 |
case 1: return ZTRK1; |
| 641 |
case 2: return ZTRK2; |
| 642 |
case 3: return ZTRK3; |
| 643 |
case 4: return ZTRK4; |
| 644 |
case 5: return ZTRK5; |
| 645 |
case 6: return ZTRK6; |
| 646 |
default: return 0.; |
| 647 |
}; |
| 648 |
}; |
| 649 |
//-------------------------------------- |
| 650 |
// |
| 651 |
// |
| 652 |
//-------------------------------------- |
| 653 |
/** |
| 654 |
* Trajectory default constructor. |
| 655 |
* (By default is created with z-coordinates inside the tracking volume) |
| 656 |
*/ |
| 657 |
Trajectory::Trajectory(){ |
| 658 |
npoint = 10; |
| 659 |
x = new float[npoint]; |
| 660 |
y = new float[npoint]; |
| 661 |
z = new float[npoint]; |
| 662 |
thx = new float[npoint]; |
| 663 |
thy = new float[npoint]; |
| 664 |
tl = new float[npoint]; |
| 665 |
float dz = ((ZTRK1)-(ZTRK6))/(npoint-1); |
| 666 |
for(int i=0; i<npoint; i++){ |
| 667 |
x[i] = 0; |
| 668 |
y[i] = 0; |
| 669 |
z[i] = (ZTRK1) - i*dz; |
| 670 |
thx[i] = 0; |
| 671 |
thy[i] = 0; |
| 672 |
tl[i] = 0; |
| 673 |
} |
| 674 |
} |
| 675 |
//-------------------------------------- |
| 676 |
// |
| 677 |
// |
| 678 |
//-------------------------------------- |
| 679 |
/** |
| 680 |
* Trajectory constructor. |
| 681 |
* (By default is created with z-coordinates inside the tracking volume) |
| 682 |
* \param n Number of points |
| 683 |
*/ |
| 684 |
Trajectory::Trajectory(int n){ |
| 685 |
if(n<=0){ |
| 686 |
cout << "NB! Trajectory must have at least 1 point >>> created with 10 points" << endl; |
| 687 |
n=10; |
| 688 |
} |
| 689 |
npoint = n; |
| 690 |
x = new float[npoint]; |
| 691 |
y = new float[npoint]; |
| 692 |
z = new float[npoint]; |
| 693 |
thx = new float[npoint]; |
| 694 |
thy = new float[npoint]; |
| 695 |
tl = new float[npoint]; |
| 696 |
float dz = ((ZTRK1)-(ZTRK6))/(npoint-1); |
| 697 |
for(int i=0; i<npoint; i++){ |
| 698 |
x[i] = 0; |
| 699 |
y[i] = 0; |
| 700 |
z[i] = (ZTRK1) - i*dz; |
| 701 |
thx[i] = 0; |
| 702 |
thy[i] = 0; |
| 703 |
tl[i] = 0; |
| 704 |
} |
| 705 |
} |
| 706 |
//-------------------------------------- |
| 707 |
// |
| 708 |
// |
| 709 |
//-------------------------------------- |
| 710 |
/** |
| 711 |
* Trajectory constructor. |
| 712 |
* \param n Number of points |
| 713 |
* \param pz Pointer to float array, defining z coordinates |
| 714 |
*/ |
| 715 |
Trajectory::Trajectory(int n, float* zin){ |
| 716 |
npoint = 10; |
| 717 |
if(n>0)npoint = n; |
| 718 |
x = new float[npoint]; |
| 719 |
y = new float[npoint]; |
| 720 |
z = new float[npoint]; |
| 721 |
thx = new float[npoint]; |
| 722 |
thy = new float[npoint]; |
| 723 |
tl = new float[npoint]; |
| 724 |
int i=0; |
| 725 |
do{ |
| 726 |
x[i] = 0; |
| 727 |
y[i] = 0; |
| 728 |
z[i] = zin[i]; |
| 729 |
thx[i] = 0; |
| 730 |
thy[i] = 0; |
| 731 |
tl[i] = 0; |
| 732 |
i++; |
| 733 |
}while(zin[i-1] > zin[i] && i < npoint); |
| 734 |
npoint=i; |
| 735 |
if(npoint != n)cout << "NB! Trajectory created with "<<npoint<<" points"<<endl; |
| 736 |
} |
| 737 |
//-------------------------------------- |
| 738 |
// |
| 739 |
// |
| 740 |
//-------------------------------------- |
| 741 |
/** |
| 742 |
* Dump the trajectory coordinates. |
| 743 |
*/ |
| 744 |
void Trajectory::Dump(){ |
| 745 |
cout <<endl<< "Trajectory ========== "<<endl; |
| 746 |
for (int i=0; i<npoint; i++){ |
| 747 |
cout << i <<" >> " << x[i] <<" "<< y[i] <<" "<< z[i] ; |
| 748 |
cout <<" -- " << thx[i] <<" "<< thy[i] ; |
| 749 |
cout <<" -- " << tl[i] << endl; |
| 750 |
}; |
| 751 |
} |
| 752 |
//-------------------------------------- |
| 753 |
// |
| 754 |
// |
| 755 |
//-------------------------------------- |
| 756 |
/** |
| 757 |
* Get trajectory length between two points |
| 758 |
* @param ifirst first point (default 0) |
| 759 |
* @param ilast last point (default npoint) |
| 760 |
*/ |
| 761 |
float Trajectory::GetLength(int ifirst, int ilast){ |
| 762 |
if( ifirst<0 ) ifirst = 0; |
| 763 |
if( ilast>=npoint) ilast = npoint-1; |
| 764 |
float l=0; |
| 765 |
for(int i=ifirst;i<=ilast;i++){ |
| 766 |
l=l+tl[i]; |
| 767 |
}; |
| 768 |
if(z[ilast] > ZINI)l=l-tl[ilast]; |
| 769 |
if(z[ifirst] < ZINI) l=l-tl[ifirst]; |
| 770 |
|
| 771 |
return l; |
| 772 |
|
| 773 |
} |
| 774 |
|
| 775 |
ClassImp(TrkLevel2); |
| 776 |
ClassImp(TrkSinglet); |
| 777 |
ClassImp(TrkTrack); |
| 778 |
ClassImp(Trajectory); |