Skip to content

Commit

Permalink
TTTrack conversion fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuh committed Sep 18, 2024
1 parent dee42ed commit 3360cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions L1Trigger/TrackerTFP/src/TrackFindingProcessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ namespace trackerTFP {
const auto it = find_if(tracks_.begin(), tracks_.end(), match);
// TTTrack conversion
const int region = ttTrackRef->phiSector();
const double aRinv = -.5 * it->inv2R_;
const double aRinv = -2. * it->inv2R_;
const double aphi = deltaPhi(it->phiT_ - it->inv2R_ * setup_->chosenRofPhi() + region * setup_->baseRegion());
const double aTanLambda = it->cot_;
const double az0 = it->zT_ - it->cot_ * setup_->chosenRofZ();
const double ad0 = ttTrackRef->d0();
const double ad0 = -ttTrackRef->d0();
const double aChi2xyfit = it->chi2rphi_;
const double aChi2zfit = it->chi2rz_;
const double trkMVA1 = (TTTrack_TrackWord::tqMVABins[it->mva_]);
Expand Down

0 comments on commit 3360cc6

Please sign in to comment.