File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -477,15 +477,14 @@ struct checkMCTemplate {
477477
478478 float dca = 999 .f ;
479479 float det = cXX * cYY - cXY * cXY; // determinanat
480- float dcaXYinSigma = 999 .f ;
481480 if (det < 0 ) {
482481 dca = 999 .f ;
483482 } else {
484483 dca = std::sqrt (std::fabs ((dcaX * dcaX * cYY + dcaY * dcaY * cXX - 2 .f * dcaX * dcaY * cXY) / det / 2 .f )); // dca xy in sigma
485484 }
486485
487- float rAtAbsorberEnd = muon.rAtAbsorberEnd (); // this works only for GlobalMuonTrack
488- float pDCA = propmuonAtPV.getP () * dcaXY;
486+ // float rAtAbsorberEnd = muon.rAtAbsorberEnd(); // this works only for GlobalMuonTrack
487+ // float pDCA = propmuonAtPV.getP() * dcaXY;
489488 int nClustersMFT = 0 ;
490489 float ptMatchedMCHMID = propmuonAtPV.getPt ();
491490 float etaMatchedMCHMID = propmuonAtPV.getEta ();
You can’t perform that action at this time.
0 commit comments