Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed Sep 7, 2024
1 parent c627e41 commit 3ef25ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tracking/src/Tracking/dqm/TrackingRecoDQM.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ void TrackingRecoDQM::TrackMonitoring(const std::vector<ldmx::Track>& tracks,
histograms_.fill(title + "nHits", track.getNhits());
histograms_.fill(title + "Chi2", track.getChi2());
histograms_.fill(title + "ndf", track.getNdf());
histograms_.fill(title + "Chi2_per_ndf", track.getChi2() / track.getNdf());
histograms_.fill(title + "Chi2_per_ndf",
track.getChi2() / track.getNdf());
histograms_.fill(title + "nShared", track.getNsharedHits());

histograms_.fill(title + "d0_err", sigmad0);
Expand Down

0 comments on commit 3ef25ee

Please sign in to comment.