You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GPU/GPUTracking/TRDTracking/GPUTRDTrackerDebug.h
-11Lines changed: 0 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -95,9 +95,7 @@ class GPUTRDTrackerDebug
95
95
fTrackYReal.ResizeTo(6);
96
96
fTrackZReal.ResizeTo(6);
97
97
fTrackSecReal.ResizeTo(6);
98
-
fChi2YZPhiUpdate.ResizeTo(6);
99
98
fChi2Update.ResizeTo(6);
100
-
fChi2YZPhiReal.ResizeTo(6);
101
99
fChi2Real.ResizeTo(6);
102
100
fNmatchesAvail.ResizeTo(6);
103
101
fFindable.ResizeTo(6);
@@ -151,9 +149,7 @@ class GPUTRDTrackerDebug
151
149
fTrackYReal.Zero();
152
150
fTrackZReal.Zero();
153
151
fTrackSecReal.Zero();
154
-
fChi2YZPhiUpdate.Zero();
155
152
fChi2Update.Zero();
156
-
fChi2YZPhiReal.Zero();
157
153
fChi2Real.Zero();
158
154
fNmatchesAvail.Zero();
159
155
fFindable.Zero();
@@ -290,8 +286,6 @@ class GPUTRDTrackerDebug
290
286
// update information
291
287
voidSetChi2Update(float chi2, int ly) { fChi2Update(ly) = chi2; }
292
288
voidSetChi2Real(float chi2, int ly) { fChi2Real(ly) = chi2; }
293
-
voidSetChi2YZPhiUpdate(float chi2, int ly) { fChi2YZPhiUpdate(ly) = chi2; }
294
-
voidSetChi2YZPhiReal(float chi2, int ly) { fChi2YZPhiReal(ly) = chi2; }
295
289
296
290
// other infos
297
291
voidSetRoad(float roadY, float roadZ, int ly)
@@ -370,8 +364,6 @@ class GPUTRDTrackerDebug
370
364
"trackletDetReal.=" << &fTrackletDetReal << // detector number for matching or related tracklet if available, otherwise -1
371
365
"chi2Update.=" << &fChi2Update << // chi2 for update
372
366
"chi2Real.=" << &fChi2Real << // chi2 for first tracklet w/ matching MC label
373
-
"chi2YZPhiUpdate.=" << &fChi2YZPhiUpdate << // chi2 for update taking into account full tracklet information (y, z, dY aka sin(phi))
374
-
"chi2YZPhiReal.=" << &fChi2YZPhiReal << // chi2 for first tracklet w/ matching MC label taking into account full tracklet information (y, z, dY aka sin(phi))
375
367
"chi2Total=" << fChi2 << // total chi2 for track
376
368
"nLayers=" << fNlayers << // number of layers in which track was findable
377
369
"nTracklets=" << fNtrklts << // number of attached tracklets
@@ -456,8 +448,6 @@ class GPUTRDTrackerDebug
456
448
TVectorF fTrackletDetReal;
457
449
TVectorF fChi2Update;
458
450
TVectorF fChi2Real;
459
-
TVectorF fChi2YZPhiUpdate;
460
-
TVectorF fChi2YZPhiReal;
461
451
TVectorF fRoadY;
462
452
TVectorF fRoadZ;
463
453
TVectorF fFindable;
@@ -512,7 +502,6 @@ class GPUTRDTrackerDebug
512
502
GPUd() voidSetChi2Update(float chi2, int ly) {}
513
503
GPUd() voidSetChi2Real(float chi2, int ly) {}
514
504
GPUd() voidSetChi2YZPhiUpdate(float chi2, int ly) {}
515
-
GPUd() voidSetChi2YZPhiReal(float chi2, int ly) {}
516
505
517
506
// other infos
518
507
GPUd() voidSetRoad(float roadY, float roadZ, int ly) {}
0 commit comments