Skip to content

Commit

Permalink
Add comments to Track.h
Browse files Browse the repository at this point in the history
  • Loading branch information
SClarkPhysics authored and tomalin committed Feb 3, 2022
1 parent 2697f94 commit 4c44924
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion L1Trigger/TrackFindingTracklet/interface/Track.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ namespace trklet {
// Get floating point helix params by undigitized digi helix params
double phi0(Settings const& settings) const;

//The following return the floating point track parameters by undigitizing the digitized parameters
double eta(Settings const& settings) const { return (asinh(ipars_.t() + 0.5) * settings.ktpars()); }
double tanL(Settings const& settings) const { return (ipars_.t() + 0.5) * settings.ktpars(); }
double z0(Settings const& settings) const { return (ipars_.z0() + 0.5) * settings.kz0pars(); }
Expand All @@ -78,7 +79,7 @@ namespace trklet {
}

private:
TrackPars<int> ipars_;
TrackPars<int> ipars_; //digitized track parameters
int ichisqrphi_;
int ichisqrz_;

Expand Down

0 comments on commit 4c44924

Please sign in to comment.