Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include "MarlinKalTestTrack.h"
#include "MarlinKalTest.h"
#include "TrackSystemSvc/IMarlinTrkSystem.h"
#include <kaltest/TKalDetCradle.h>
#include <kaltest/TKalTrack.h>
#include <kaltest/TKalTrackState.h>
#include "kaltest/TKalTrackSite.h"
#include "kaltest/TKalFilterCond.h"
//#include <lcio.h>
#include <edm4hep/TrackerHit.h>
//#include <plcio/TrackerHitPlane.h>
#include <UTIL/BitField64.h>
#include <UTIL/Operators.h>
#include <UTIL/ILDConf.h>
#include "kaldet/ILDCylinderMeasLayer.h" // needed for dedicated IP Layer
#include "kaldet/ILDCylinderHit.h"
#include "kaldet/ILDPlanarHit.h"
#include "kaldet/ILDPlanarStripHit.h"
#include "gear/GEAR.h"
#include "gear/BField.h"
//#include "streamlog/streamlog.h"
/** Helper class for defining a filter condition based on the delta chi2 in the AddAndFilter step.
*/
class KalTrackFilter : public TKalFilterCond{
public:
/** C'tor - takes as optional argument the maximum allowed delta chi2 for adding the hit (in IsAccepted() )
*/
KalTrackFilter(double maxDeltaChi2 = DBL_MAX) : _maxDeltaChi2( maxDeltaChi2 ), _passed_last_filter_step(true) {
}
virtual ~KalTrackFilter() {}
virtual Bool_t IsAccepted(const TKalTrackSite &site) {
double deltaChi2 = site.GetDeltaChi2();
//streamlog_out( DEBUG1 ) << " KalTrackFilter::IsAccepted called ! deltaChi2 = " << std::scientific << deltaChi2 << " _maxDeltaChi2 = " << _maxDeltaChi2 << std::endl;
_passed_last_filter_step = deltaChi2 < _maxDeltaChi2;
return ( _passed_last_filter_step ) ;
}
void resetFilterStatus() { _passed_last_filter_step = true; }
bool passedLastFilterStep() const { return _passed_last_filter_step; }
protected:
double _maxDeltaChi2 ;
bool _passed_last_filter_step;
} ;
namespace MarlinTrk {
//---------------------------------------------------------------------------------------------------------------
std::string decodeILD(int detElementID) {
lcio::BitField64 bf(UTIL::ILDCellID0::encoder_string) ;
bf.setValue(detElementID) ;
return bf.valueString() ;
}
//---------------------------------------------------------------------------------------------------------------
MarlinKalTestTrack::MarlinKalTestTrack(MarlinKalTest* ktest)
: _ktest(ktest) {
_kaltrack = new TKalTrack() ;
_kaltrack->SetOwner() ;
_kalhits = new TObjArray() ;
_kalhits->SetOwner() ;
_initialised = false ;
_fitDirection = false ;
_smoothed = false ;
_trackHitAtPositiveNDF = 0;
_hitIndexAtPositiveNDF = 0;
#ifdef MARLINTRK_DIAGNOSTICS_ON
_ktest->_diagnostics.new_track(this) ;
#endif
}
MarlinKalTestTrack::~MarlinKalTestTrack(){
#ifdef MARLINTRK_DIAGNOSTICS_ON
_ktest->_diagnostics.end_track() ;
#endif
delete _kaltrack ;
delete _kalhits ;
}
int MarlinKalTestTrack::addHit( edm4hep::TrackerHit* trkhit) {
const ILDVMeasLayer* ml = 0;
try{
ml = _ktest->findMeasLayer( trkhit );
}
catch(MarlinTrk::Exception& e){
std::cout << e.what() << std::endl;
}
return this->addHit( trkhit, ml) ;
}
int MarlinKalTestTrack::addHit( edm4hep::TrackerHit* trkhit, const ILDVMeasLayer* ml) {
//std::cout << "MarlinKalTestTrack::addHit: trkhit = " << trkhit->id() << " addr: " << trkhit << " ml = " << ml << std::endl ;
if( trkhit && ml ) {
//if(ml){
return this->addHit( trkhit, ml->ConvertLCIOTrkHit(trkhit), ml) ;
}
else {
//std::cout << "MarlinKalTestTrack::addHit: trkhit = " << trkhit->id() << " addr: " << trkhit << " ml = " << ml << std::endl ;
}
return bad_intputs ;
}
int MarlinKalTestTrack::addHit( edm4hep::TrackerHit* trkhit, ILDVTrackHit* kalhit, const ILDVMeasLayer* ml) {
//std::cout << "MarlinKalTestTrack::addHit: trkhit = " << trkhit->id() << " ILDVTrackHit: " << kalhit << " ml = " << ml << std::endl ;
if( kalhit && ml ) {
//if(ml){
_kalhits->Add(kalhit ) ; // Add hit and set surface found
_lcio_hits_to_kaltest_hits[trkhit] = kalhit ; // add hit to map relating lcio and kaltest hits
// _kaltest_hits_to_lcio_hits[kalhit] = trkhit ; // add hit to map relating kaltest and lcio hits
}
else {
//std::cout << "MarlinKalTestTrack::addHit: trkhit = " << trkhit->id() << " ILDVTrackHit: " << kalhit << " ml = " << ml << std::endl ;
if(kalhit) delete kalhit;
//std::cout << "debug: " << "MarlinKalTestTrack::addHit: hit added number of hits for track = " << _kalhits->GetEntries() << std::endl ;
return success ;
}
int MarlinKalTestTrack::initialise( bool fitDirection ) {;
//SJA:FIXME: check here if the track is already initialised, and for now don't allow it to be re-initialised
// if the track is going to be re-initialised then we would need to do it directly on the first site
if ( _initialised ) {
throw MarlinTrk::Exception("Track fit already initialised");
}
if (_kalhits->GetEntries() < 3) {
std::cout << "Error: <<<<<< MarlinKalTestTrack::initialise: Shortage of Hits! nhits = "
<< _kalhits->GetEntries() << " >>>>>>>" << std::endl;
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
return error ;
}
_fitDirection = fitDirection ;
// establish the hit order
Int_t i1, i2, i3; // (i1,i2,i3) = (1st,mid,last) hit to filter
if (_fitDirection == kIterBackward) {
i3 = 0 ; // fg: first index is 0 and not 1
i1 = _kalhits->GetEntries() - 1;
i2 = i1 / 2;
} else {
i1 = 0 ;
i3 = _kalhits->GetEntries() - 1;
i2 = i3 / 2;
}
TVTrackHit *startingHit = dynamic_cast<TVTrackHit *>(_kalhits->At(i1));
// ---------------------------
// Create an initial start site for the track using the first hit
// ---------------------------
// set up a dummy hit needed to create initial site
TVTrackHit* pDummyHit = 0;
if ( (pDummyHit = dynamic_cast<ILDCylinderHit *>( startingHit )) ) {
pDummyHit = (new ILDCylinderHit(*static_cast<ILDCylinderHit*>( startingHit )));
}
else if ( (pDummyHit = dynamic_cast<ILDPlanarHit *>( startingHit )) ) {
pDummyHit = (new ILDPlanarHit(*static_cast<ILDPlanarHit*>( startingHit )));
}
else if ( ILDPlanarStripHit_DIM == 2 && (pDummyHit = dynamic_cast<ILDPlanarStripHit *>( startingHit )) ) {
pDummyHit = (new ILDPlanarStripHit(*static_cast<ILDPlanarStripHit*>( startingHit )));
}
else {
std::cout << "Error: <<<<<<<<< MarlinKalTestTrack::initialise: dynamic_cast failed for hit type >>>>>>>" << std::endl;
204
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
return error ;
}
TVTrackHit& dummyHit = *pDummyHit;
//SJA:FIXME: this constants should go in a header file
// give the dummy hit huge errors so that it does not contribute to the fit
dummyHit(0,1) = 1.e16; // give a huge error to d
dummyHit(1,1) = 1.e16; // give a huge error to z
// use dummy hit to create initial site
TKalTrackSite& initialSite = *new TKalTrackSite(dummyHit);
initialSite.SetHitOwner();// site owns hit
initialSite.SetOwner(); // site owns states
// ---------------------------
// Create initial helix
// ---------------------------
TVTrackHit &h1 = *dynamic_cast<TVTrackHit *>(_kalhits->At(i1)); // first hit
TVTrackHit &h2 = *dynamic_cast<TVTrackHit *>(_kalhits->At(i2)); // middle hit
TVTrackHit &h3 = *dynamic_cast<TVTrackHit *>(_kalhits->At(i3)); // last hit
TVector3 x1 = h1.GetMeasLayer().HitToXv(h1);
TVector3 x2 = h2.GetMeasLayer().HitToXv(h2);
TVector3 x3 = h3.GetMeasLayer().HitToXv(h3);
if ( h1.GetDimension() == 1 || h2.GetDimension() == 1 || h3.GetDimension() == 1 ) {
throw MarlinTrk::Exception("Track fit cannot be initialised from 1 Dimentional hits. Use method MarlinKalTestTrack::initialise( const edm4hep::TrackState& ts, double bfield_z, bool fitDirection )");
}
/*
streamlog_out(DEBUG2) << "MarlinKalTestTrack::initialise Create initial helix from hits: \n "
<< "P1 x = " << x1.x() << " y = " << x1.y() << " z = " << x1.z() << " r = " << x1.Perp() << "\n "
<< "P2 x = " << x2.x() << " y = " << x2.y() << " z = " << x2.z() << " r = " << x2.Perp() << "\n "
<< "P3 x = " << x3.x() << " y = " << x3.y() << " z = " << x3.z() << " r = " << x3.Perp() << "\n "
<< "Bz = " << h1.GetBfield() << " direction = " << _fitDirection
<< std::endl;
*/
// create helix using 3 global space points
THelicalTrack helstart(x1, x2, x3, h1.GetBfield(), _fitDirection); // initial helix
// ---------------------------
// Set up initial track state ... could try to use lcio track parameters ...
// ---------------------------
static TKalMatrix initialState(kSdim,1) ;
initialState(0,0) = 0.0 ; // dr
initialState(1,0) = helstart.GetPhi0() ; // phi0
initialState(2,0) = helstart.GetKappa() ; // kappa
initialState(3,0) = 0.0 ; // dz
initialState(4,0) = helstart.GetTanLambda() ; // tan(lambda)
if (kSdim == 6) initialState(5,0) = 0.; // t0
// ---------------------------
// Set up initial Covariance Matrix with very large errors
// ---------------------------
TKalMatrix Cov(kSdim,kSdim);
// make sure everything is initialised to zero
for (int i=0; i<kSdim*kSdim; ++i) {
Cov.GetMatrixArray()[i] = 0.0;
}
// for (Int_t i=0; i<kSdim; i++) {
// // fg: if the error is too large the initial helix parameters might be changed extremely by the first three (or so) hits,
// // such that the fit will not work because the helix curls away and does not hit the next layer !!!
// Cov(i,i) = 1.e2 ; // initialise diagonal elements of dummy error matrix
// }
// prefer translation over rotation of the trackstate early in the fit
Cov(0,0) = 1.e6 ; // d0
Cov(1,1) = 1.e2 ; // dphi0
Cov(2,2) = 1.e2 ; // dkappa
Cov(3,3) = 1.e6 ; // dz
Cov(4,4) = 1.e2 ; // dtanL
if (kSdim == 6) Cov(5,5) = 1.e2; // t0
// Add initial states to the site
initialSite.Add(new TKalTrackState(initialState,Cov,initialSite,TVKalSite::kPredicted));
initialSite.Add(new TKalTrackState(initialState,Cov,initialSite,TVKalSite::kFiltered));
// add the initial site to the track: that is, give the track initial parameters and covariance
// matrix at the starting measurement layer
_kaltrack->Add(&initialSite);
_initialised = true ;
/*
streamlog_out( DEBUG2 ) << " track parameters used for init : " << std::scientific << std::setprecision(6)
<< "\t D0 " << 0.0
<< "\t Phi :" << toBaseRange( helstart.GetPhi0() + M_PI/2. )
<< "\t Omega " << 1. /helstart.GetRho()
<< "\t Z0 " << 0.0
<< "\t tan(Lambda) " << helstart.GetTanLambda()
<< "\t pivot : [" << helstart.GetPivot().X() << ", " << helstart.GetPivot().Y() << ", " << helstart.GetPivot().Z()
<< " - r: " << std::sqrt( helstart.GetPivot().X()*helstart.GetPivot().X()+helstart.GetPivot().Y()*helstart.GetPivot().Y() ) << "]"
<< std::endl ;
*/
#ifdef MARLINTRK_DIAGNOSTICS_ON
// convert to LICO parameters first
double d0 = 0.0 ;
double phi = toBaseRange( helstart.GetPhi0() + M_PI/2. );
double omega = 1. /helstart.GetRho() ;
double z0 = 0.0 ;
double tanLambda = helstart.GetTanLambda() ;
// Cov.Print();
_ktest->_diagnostics.set_intial_track_parameters(d0,
phi,
omega,
z0,
tanLambda,
helstart.GetPivot().X(),
helstart.GetPivot().Y(),
helstart.GetPivot().Z(),
Cov);
#endif
return success ;
}
int MarlinKalTestTrack::initialise( const edm4hep::TrackState& ts, double bfield_z, bool fitDirection ) {
if (_kalhits->GetEntries() == 0) {
//streamlog_out( ERROR) << "<<<<<< MarlinKalTestTrack::Initialise: Number of Hits is Zero. Cannot Initialise >>>>>>>" << std::endl;
return error ;
}
//SJA:FIXME: check here if the track is already initialised, and for now don't allow it to be re-initialised
// if the track is going to be re-initialised then we would need to do it directly on the first site
if ( _initialised ) {
throw MarlinTrk::Exception("Track fit already initialised");
}
/*
streamlog_out( DEBUG2 ) << "MarlinKalTestTrack::initialise using TrackState: track parameters used for init : "
<< "\t D0 " << ts.getD0()
<< "\t Phi :" << ts.getPhi()
<< "\t Omega " << ts.getOmega()
<< "\t Z0 " << ts.getZ0()
<< "\t tan(Lambda) " << ts.getTanLambda()
<< "\t pivot : [" << ts.getReferencePoint()[0] << ", " << ts.getReferencePoint()[1] << ", " << ts.getReferencePoint()[2]
<< " - r: " << std::sqrt( ts.getReferencePoint()[0]*ts.getReferencePoint()[0]+ts.getReferencePoint()[1]*ts.getReferencePoint()[1] ) << "]"
<< std::endl ;
*/
_fitDirection = fitDirection ;
// for GeV, Tesla, R in mm
double alpha = bfield_z * 2.99792458E-4 ;
double kappa;
if ( bfield_z == 0.0 )
kappa = DBL_MAX;
else kappa = ts.omega / alpha ;
THelicalTrack helix( -ts.D0,
toBaseRange( ts.phi - M_PI/2. ) ,
kappa,
ts.Z0,
ts.tanLambda,
ts.referencePoint[0],
ts.referencePoint[1],
ts.referencePoint[2],
bfield_z );
TMatrixD cov(5,5) ;
std::array<float, 15> covLCIO = ts.covMatrix;
cov( 0 , 0 ) = covLCIO[ 0] ; // d0, d0
cov( 0 , 1 ) = - covLCIO[ 1] ; // d0, phi
cov( 0 , 2 ) = - covLCIO[ 3] / alpha ; // d0, kappa
cov( 0 , 3 ) = - covLCIO[ 6] ; // d0, z0
cov( 0 , 4 ) = - covLCIO[10] ; // d0, tanl
cov( 1 , 0 ) = - covLCIO[ 1] ; // phi, d0
cov( 1 , 1 ) = covLCIO[ 2] ; // phi, phi
cov( 1 , 2 ) = covLCIO[ 4] / alpha ; // phi, kappa
cov( 1 , 3 ) = covLCIO[ 7] ; // phi, z0
cov( 1 , 4 ) = covLCIO[11] ; // tanl, phi
cov( 2 , 0 ) = - covLCIO[ 3] / alpha ; // kappa, d0
cov( 2 , 1 ) = covLCIO[ 4] / alpha ; // kappa, phi
cov( 2 , 2 ) = covLCIO[ 5] / (alpha * alpha) ; // kappa, kappa
cov( 2 , 3 ) = covLCIO[ 8] / alpha ; // kappa, z0
cov( 2 , 4 ) = covLCIO[12] / alpha ; // kappa, tanl
cov( 3 , 0 ) = - covLCIO[ 6] ; // z0, d0
cov( 3 , 1 ) = covLCIO[ 7] ; // z0, phi
cov( 3 , 2 ) = covLCIO[ 8] / alpha ; // z0, kappa
cov( 3 , 3 ) = covLCIO[ 9] ; // z0, z0
cov( 3 , 4 ) = covLCIO[13] ; // z0, tanl
cov( 4 , 0 ) = - covLCIO[10] ; // tanl, d0
cov( 4 , 1 ) = covLCIO[11] ; // tanl, phi
cov( 4 , 2 ) = covLCIO[12] / alpha ; // tanl, kappa
cov( 4 , 3 ) = covLCIO[13] ; // tanl, z0
cov( 4 , 4 ) = covLCIO[14] ; // tanl, tanl
// cov.Print();
// move the helix to either the position of the last hit or the first depending on initalise_at_end
// default case initalise_at_end
int index = _kalhits->GetEntries() - 1 ;
// or initialise at start
if( _fitDirection == IMarlinTrack::forward ){
index = 0 ;
}
TVTrackHit* kalhit = dynamic_cast<TVTrackHit *>(_kalhits->At(index));
double dphi;
TVector3 initial_pivot ;
// Leave the pivot at the origin for a 1-dim hit
if (kalhit->GetDimension() > 1) {
initial_pivot = kalhit->GetMeasLayer().HitToXv(*kalhit) ;
}
else{
initial_pivot = TVector3(0.0,0.0,0.0);
}
// ---------------------------
// Create an initial start site for the track using the hit
// ---------------------------
// set up a dummy hit needed to create initial site
TVTrackHit* pDummyHit = 0;
if ( (pDummyHit = dynamic_cast<ILDCylinderHit *>( kalhit )) ) {
pDummyHit = (new ILDCylinderHit(*static_cast<ILDCylinderHit*>( kalhit )));
}
else if ( (pDummyHit = dynamic_cast<ILDPlanarHit *>( kalhit )) ) {
pDummyHit = (new ILDPlanarHit(*static_cast<ILDPlanarHit*>( kalhit )));
}
else if ( (pDummyHit = dynamic_cast<ILDPlanarStripHit *>( kalhit )) ) {
pDummyHit = (new ILDPlanarStripHit(*static_cast<ILDPlanarStripHit*>( kalhit )));
const TVMeasLayer *ml = &pDummyHit->GetMeasLayer();
const TVSurface* surf = dynamic_cast<const TVSurface*>(ml);
if (surf) {
double phi;
surf->CalcXingPointWith(helix, initial_pivot, phi);
} else {
//streamlog_out( ERROR) << "<<<<<<<<< MarlinKalTestTrack::initialise: dynamic_cast failed for TVSurface >>>>>>>" << std::endl;
return error ;
}
}
else {
//streamlog_out( ERROR) << "<<<<<<<<< MarlinKalTestTrack::initialise: dynamic_cast failed for hit type >>>>>>>" << std::endl;
return error ;
}
TVTrackHit& dummyHit = *pDummyHit;
//SJA:FIXME: this constants should go in a header file
// give the dummy hit huge errors so that it does not contribute to the fit
dummyHit(0,1) = 1.e16; // give a huge error to d
if(dummyHit.GetDimension()>1) dummyHit(1,1) = 1.e16; // give a huge error to z
// use dummy hit to create initial site
TKalTrackSite& initialSite = *new TKalTrackSite(dummyHit);
initialSite.SetHitOwner();// site owns hit
initialSite.SetOwner(); // site owns states
// ---------------------------
// Set up initial track state
// ---------------------------
helix.MoveTo( initial_pivot, dphi, 0, &cov );
static TKalMatrix initialState(kSdim,1) ;
initialState(0,0) = helix.GetDrho() ; // d0
initialState(1,0) = helix.GetPhi0() ; // phi0
initialState(2,0) = helix.GetKappa() ; // kappa
initialState(3,0) = helix.GetDz(); // dz
initialState(4,0) = helix.GetTanLambda() ; // tan(lambda)
if (kSdim == 6) initialState(5,0) = 0.; // t0
// make sure that the pivot is in the right place
initialSite.SetPivot(initial_pivot);
// ---------------------------
// Set up initial Covariance Matrix
// ---------------------------
TKalMatrix covK(kSdim,kSdim) ;
for(int i=0;i<5;++i) {
for(int j=0;j<5;++j) {
covK[i][j] = cov[i][j] ;
}
}
if (kSdim == 6) covK(5,5) = 1.e6; // t0
// covK.Print();
// Add initial states to the site
initialSite.Add(new TKalTrackState(initialState,covK,initialSite,TVKalSite::kPredicted));
initialSite.Add(new TKalTrackState(initialState,covK,initialSite,TVKalSite::kFiltered));
// add the initial site to the track: that is, give the track initial parameters and covariance
// matrix at the starting measurement layer
_kaltrack->Add(&initialSite);
_initialised = true ;
#ifdef MARLINTRK_DIAGNOSTICS_ON
// convert to LICO parameters first
double d0 = - helix.GetDrho() ;
double phi = toBaseRange( helix.GetPhi0() + M_PI/2. );
double omega = 1. /helix.GetRho() ;
double z0 = helix.GetDz() ;
double tanLambda = helix.GetTanLambda() ;
_ktest->_diagnostics.set_intial_track_parameters(d0,
phi,
omega,
z0,
tanLambda,
helix.GetPivot().X(),
helix.GetPivot().Y(),
helix.GetPivot().Z(),
covK);
#endif
return success ;
}
int MarlinKalTestTrack::addAndFit( ILDVTrackHit* kalhit, double& chi2increment, TKalTrackSite*& site, double maxChi2Increment) {
//streamlog_out(DEBUG1) << "MarlinKalTestTrack::addAndFit called : maxChi2Increment = " << std::scientific << maxChi2Increment << std::endl ;
if ( ! _initialised ) {
throw MarlinTrk::Exception("Track fit not initialised");
}
// here do dynamic cast repeatedly in DEBUG statement as this will be stripped out any way for production code
// otherwise we have to do the cast outside of the DEBUG statement and it won't be stripped out
/*streamlog_out( DEBUG1 ) << "Kaltrack::addAndFit : add site to track at index : "
<< (dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) ))->GetIndex()
<< " for type "
<< dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) )->GetName() ;
streamlog_out( DEBUG0 ) << " with CellIDs:";
for (unsigned int i = 0; i < (dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) )->getNCellIDs());++i) {
streamlog_out( DEBUG0 ) << " : "
<< dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) )->getCellIDs()[i] ;
}
streamlog_out( DEBUG1 ) << std::endl ;
*/
TKalTrackSite* temp_site = new TKalTrackSite(*kalhit); // create new site for this hit
KalTrackFilter filter( maxChi2Increment );
filter.resetFilterStatus();
temp_site->SetFilterCond( &filter ) ;
// this is the only point at which a hit is actually filtered
// and it is here that we can get the GetDeltaChi2 vs the maxChi2Increment
// it will always be possible to get the delta chi2 so long as we have a link to the sites ...
// although calling smooth will natrually update delta chi2.
if (!_kaltrack->AddAndFilter(*temp_site)) {
chi2increment = temp_site->GetDeltaChi2() ;
// get the measurement layer of the current hit
const ILDVMeasLayer* ml = dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) ) ;
TVector3 pos = ml->HitToXv(*kalhit);
std::cout << "debug: Kaltrack::addAndFit : site discarded! at index : " << ml->GetIndex()
<< " for type " << ml->GetName()
<< " chi2increment = " << chi2increment
<< " maxChi2Increment = " << maxChi2Increment
<< " x = " << pos.x()
<< " y = " << pos.y()
<< " z = " << pos.z()
<< " with CellIDs: " << std::endl;
for (unsigned int i = 0; i < (dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) )->getNCellIDs());++i) {
std::cout << "debug: CellID = "
<< dynamic_cast<const ILDVMeasLayer*>( &(kalhit->GetMeasLayer() ) )->getCellIDs()[i]
<< std::endl ;
}
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
#ifdef MARLINTRK_DIAGNOSTICS_ON
_ktest->_diagnostics.record_rejected_site(kalhit, temp_site);
#endif
delete temp_site; // delete site if filter step failed
// compiling the code below with the cmake option CMAKE_BUILD_TYPE=Debug
// and with LDFLAGS=-Wl,--no-undefined
// causes an undefined reference error
// the problem gets fixed using the if/else statement below
// this fails
//return filter.usedForLastFilterStep() ? site_fails_chi2_cut : site_discarded ;
// this also fails..
//bool rc = filter.usedForLastFilterStep() ;
//return (rc ? site_fails_chi2_cut : site_discarded);
// but this works ?!!
//return ( true ? site_fails_chi2_cut : site_discarded);
// and this also works..
//streamlog_out(DEBUG2) << " addAndFit : Site Fails Chi2 cut ? " << filter.passedLastFilterStep() << std::endl;
if( filter.passedLastFilterStep() == false ) {
return site_fails_chi2_cut ;
} else {
return site_discarded ;
}
}
site = temp_site;
chi2increment = site->GetDeltaChi2() ;
#ifdef MARLINTRK_DIAGNOSTICS_ON
_ktest->_diagnostics.record_site(kalhit, site);
#endif
return success ;
}
int MarlinKalTestTrack::addAndFit( edm4hep::TrackerHit* trkhit, double& chi2increment, double maxChi2Increment) {
if( ! trkhit ) {
std::cout << "Error: MarlinKalTestTrack::addAndFit(edm4hep::TrackerHit trkhit, double& chi2increment, double maxChi2Increment): trkhit == 0" << std::endl;
return bad_intputs ;
}
const ILDVMeasLayer* ml = _ktest->findMeasLayer( trkhit ) ;
if( ml == 0 ){
// fg: not sure if ml should ever be 0 - but it seems to happen,
// if point is not on surface and more than one surface exists ...
std::cout << "Error>>>>>>>>>>> no measurment layer found for trkhit cellid0 : "
<< decodeILD( trkhit->getCellID() ) << " at "
<< trkhit->getPosition() << std::endl ;
return IMarlinTrack::bad_intputs ;
}
ILDVTrackHit* kalhit = ml->ConvertLCIOTrkHit(trkhit) ;
if( kalhit == 0 ){ //fg: ml->ConvertLCIOTrkHit returns 0 if hit not on surface !!!
return IMarlinTrack::bad_intputs ;
}
TKalTrackSite* site = 0 ;
int error_code = this->addAndFit( kalhit, chi2increment, site, maxChi2Increment);
if( error_code != success ){
delete kalhit;
// if the hit fails for any reason other than the Chi2 cut record the Chi2 contibution as DBL_MAX
if( error_code != site_fails_chi2_cut ) {
chi2increment = DBL_MAX;
}
_outlier_chi2_values.push_back(std::make_pair(trkhit, chi2increment));
//streamlog_out( DEBUG2 ) << ">>>>>>>>>>> addAndFit Number of Outliers : "
//<< _outlier_chi2_values.size() << std::endl;
return error_code ;
}
else {
this->addHit(trkhit, kalhit, ml ) ;
_hit_used_for_sites[trkhit] = site ;
_hit_chi2_values.push_back(std::make_pair(trkhit, chi2increment));
}
// set the values for the point at which the fit becomes constained
if( _trackHitAtPositiveNDF == 0 && _kaltrack->GetNDF() >= 0){
_trackHitAtPositiveNDF = trkhit;
_hitIndexAtPositiveNDF = _kaltrack->IndexOf( site );
/*
streamlog_out( DEBUG2 ) << ">>>>>>>>>>> Fit is now constrained at : "
<< decodeILD( trkhit->getCellID() )
<< " pos " << trkhit->getPosition()
<< " trkhit = " << _trackHitAtPositiveNDF
<< " index of kalhit = " << _hitIndexAtPositiveNDF
<< " NDF = " << _kaltrack->GetNDF()
<< std::endl;
*/
}
return success ;
}
int MarlinKalTestTrack::testChi2Increment( edm4hep::TrackerHit* trkhit, double& chi2increment ) {
//if( ! trkhit ) {
// streamlog_out( ERROR) << "MarlinKalTestTrack::addAndFit(edm4hep::TrackerHit trkhit, double& chi2increment, double maxChi2Increment): trkhit == 0" << std::endl;
// return IMarlinTrack::bad_intputs ;
//}
const ILDVMeasLayer* ml = _ktest->findMeasLayer( trkhit ) ;
if( ml == 0 ){
// fg: not sure if ml should ever be 0 - but it seems to happen,
// if point is not on surface and more than one surface exists ...
std::cout << "Error>>>>>>>>>>> no measurment layer found for trkhit cellid0 : "
<< decodeILD( trkhit->getCellID() ) << " at "
<< trkhit->getPosition() << std::endl ;
return IMarlinTrack::bad_intputs ;
}
ILDVTrackHit* kalhit = ml->ConvertLCIOTrkHit(trkhit) ;
if( kalhit == 0 ){ //fg: ml->ConvertLCIOTrkHit returns 0 if hit not on surface !!!
return IMarlinTrack::bad_intputs ;
}
TKalTrackSite* site = 0 ;
int error_code = this->addAndFit( kalhit, chi2increment, site, -DBL_MAX); // using -DBL_MAX here ensures the hit will never be added to the fit
delete kalhit;
return error_code;
}
int MarlinKalTestTrack::fit( double maxChi2Increment ) {
// SJA:FIXME: what do we do about calling fit after we have already added hits and filtered
// I guess this would created new sites when addAndFit is called
// one option would be to remove the sites
// need to check where the sites are stored ... probably in the KalTrackSystem
//
//streamlog_out(DEBUG2) << "MarlinKalTestTrack::fit() called " << std::endl ;
if ( ! _initialised ) {
throw MarlinTrk::Exception("Track fit not initialised");
}
// ---------------------------
// Prepare hit iterrator for adding hits to kaltrack
// ---------------------------
TIter next(_kalhits, _fitDirection);
// ---------------------------
// Start Kalman Filter
// ---------------------------
ILDVTrackHit *kalhit = 0;
while ( (kalhit = dynamic_cast<ILDVTrackHit *>( next() ) ) ) {
double chi2increment;
TKalTrackSite* site;
int error_code = this->addAndFit( kalhit, chi2increment, site, maxChi2Increment );
edm4hep::TrackerHit* trkhit = kalhit->getLCIOTrackerHit();
if( error_code == 0 ){ // add trkhit to map associating trkhits and sites
_hit_used_for_sites[trkhit] = site;
_hit_chi2_values.push_back(std::make_pair(trkhit, chi2increment));
// set the values for the point at which the fit becomes constained
if( _trackHitAtPositiveNDF == 0 && _kaltrack->GetNDF() >= 0){
_trackHitAtPositiveNDF = trkhit;
_hitIndexAtPositiveNDF = _kaltrack->IndexOf( site );
/*
streamlog_out( DEBUG2 ) << ">>>>>>>>>>> Fit is now constrained at : "
<< decodeILD( trkhit->getCellID() )
<< " pos " << trkhit->getPosition()
<< " trkhit = " << _trackHitAtPositiveNDF
<< " index of kalhit = " << _hitIndexAtPositiveNDF
<< " NDF = " << _kaltrack->GetNDF()
<< std::endl;
*/
}
}
else { // hit rejected by the filter, so store in the list of rejected hits
// if the hit fails for any reason other than the Chi2 cut record the Chi2 contibution as DBL_MAX
if( error_code != site_fails_chi2_cut ) {
chi2increment = DBL_MAX;
}
_outlier_chi2_values.push_back(std::make_pair(trkhit, chi2increment));
//streamlog_out( DEBUG2 ) << ">>>>>>>>>>> fit(): Number of Outliers : "
//<< _outlier_chi2_values.size() << std::endl;
_hit_not_used_for_sites.push_back(trkhit) ;
}
} // end of Kalman filter
if( _ktest->getOption( MarlinTrk::IMarlinTrkSystem::CFG::useSmoothing ) ){
//streamlog_out( DEBUG2 ) << "Perform Smoothing for All Previous Measurement Sites " << std::endl ;
int error = this->smooth() ;
if( error != success ) return error ;
}
//return _hit_used_for_sites.empty() == false ? success : all_sites_fail_fit ;
if( _hit_used_for_sites.empty() == false )
{
return success ;
}
else{
return all_sites_fail_fit ;
}
}
/** smooth all track states
*/
int MarlinKalTestTrack::smooth(){
//streamlog_out( DEBUG2 ) << "MarlinKalTestTrack::smooth() " << std::endl ;
//fg: we should actually smooth all sites - it is then up to the user which smoothed tracks state to take
// for any furthter extrapolation/propagation ...
if( !_smoothed )
_kaltrack->SmoothAll() ;
//SJA:FIXME: in the current implementation it is only possible to smooth back to the 4th site.
// This is due to the fact that the covariance matrix is not well defined at the first 3 measurement sites filtered.
// _kaltrack->SmoothBackTo( _hitIndexAtPositiveNDF + 1 ) ;
_smoothed = true ;
return success ;
}
/** smooth track states from the last filtered hit back to the measurement site associated with the given hit
*/
int MarlinKalTestTrack::smooth( edm4hep::TrackerHit* trkhit ) {
//streamlog_out( DEBUG2 ) << "MarlinKalTestTrack::smooth( edm4hep::TrackerHit " << trkhit << " ) " << std::endl ;
if ( !trkhit ) {
return bad_intputs ;
}
std::map<edm4hep::TrackerHit*, TKalTrackSite*>::const_iterator it;
TKalTrackSite* site = 0 ;
int error_code = getSiteFromLCIOHit(trkhit, site);
if( error_code != success ) return error_code ;
int index = _kaltrack->IndexOf( site );
_kaltrack->SmoothBackTo( index ) ;
_smoothed = true ;
return success ;
}
int MarlinKalTestTrack::getTrackState( edm4hep::TrackState& ts, double& chi2, int& ndf ) {
//streamlog_out( DEBUG2 ) << "MarlinKalTestTrack::getTrackState( edm4hep::TrackState& ts ) " << std::endl ;
// use the last filtered track state
const TKalTrackSite& site = *(dynamic_cast<const TKalTrackSite*>(_kaltrack->Last())) ;
this->ToLCIOTrackState( site, ts, chi2, ndf );
return success ;
}
int MarlinKalTestTrack::getTrackState( edm4hep::TrackerHit* trkhit, edm4hep::TrackState& ts, double& chi2, int& ndf ) {
//streamlog_out( DEBUG2 ) << "MarlinKalTestTrack::getTrackState(edm4hep::TrackerHit* trkhit, edm4hep::TrackState& ts ) using hit: " << trkhit << " with cellID0 = " << trkhit->getCellID() << std::endl ;
TKalTrackSite* site = 0 ;
int error_code = getSiteFromLCIOHit(trkhit, site);
if( error_code != success ) return error_code ;
//streamlog_out( DEBUG1 ) << "MarlinKalTestTrack::getTrackState: site " << site << std::endl;
this->ToLCIOTrackState( *site, ts, chi2, ndf );
return success ;
}
int MarlinKalTestTrack::getHitsInFit( std::vector<std::pair<edm4hep::TrackerHit*, double> >& hits ) {
//std::cout << "debug: _hit_chi2_values address= " << &_hit_chi2_values << " " << &(*(_hit_chi2_values.begin())) << " want to copy to hits address=" << &hits << std::endl;
std::copy( _hit_chi2_values.begin() , _hit_chi2_values.end() , std::back_inserter( hits ) ) ;
//hits.resize(_hit_chi2_values.size());
//std::copy( _hit_chi2_values.begin() , _hit_chi2_values.end() , hits.begin());
// this needs more thought. What about when the hits are added using addAndFit?
// need to check the order so that we can return the list ordered in time
// as they will be added to _hit_chi2_values in the order of fitting
// not in the order of time
//
// if( _fitDirection == IMarlinTrack::backward ){
// std::reverse_copy( _hit_chi2_values.begin() , _hit_chi2_values.end() , std::back_inserter( hits ) ) ;
// } else {
// std::copy( _hit_chi2_values.begin() , _hit_chi2_values.end() , std::back_inserter( hits ) ) ;
// }
return success ;
}
int MarlinKalTestTrack::getOutliers( std::vector<std::pair<edm4hep::TrackerHit*, double> >& hits ) {
std::copy( _outlier_chi2_values.begin() , _outlier_chi2_values.end() , std::back_inserter( hits ) ) ;
// this needs more thought. What about when the hits are added using addAndFit?
// // need to check the order so that we can return the list ordered in time
// // as they will be added to _hit_chi2_values in the order of fitting
// // not in the order of time
//
// if( _fitDirection == IMarlinTrack::backward ){
// std::reverse_copy( _outlier_chi2_values.begin() , _outlier_chi2_values.end() , std::back_inserter( hits ) ) ;