Skip to content

Commit

Permalink
Take in account circle fit chi2 in RFit result (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
felicepantaleo authored and fwyzard committed Aug 17, 2018
1 parent 1d8846b commit a721b31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ std::unique_ptr<reco::Track> PixelFitterByRiemannParaboloid::run(
float errValCotTheta = std::sqrt(fittedTrack.cov(3, 3));
float errValZip = std::sqrt(fittedTrack.cov(4, 4));

float chi2 = fittedTrack.chi2_line;
float chi2 = fittedTrack.chi2_line + fittedTrack.chi2_circle;

PixelTrackBuilder builder;
Measurement1D phi(valPhi, errValPhi);
Expand Down

0 comments on commit a721b31

Please sign in to comment.