Skip to content

Commit

Permalink
Rename plot: "Averaged number of fake tracks
Browse files Browse the repository at this point in the history
per particle"
  • Loading branch information
SylvainJoube committed May 20, 2024
1 parent 5d588a3 commit 27753e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions performance/src/efficiency/fake_tracks_plot_tool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ class fake_tracks_plot_tool {
// fake tracks number vs pT
cache.n_fake_vs_pT = plot_helpers::book_prof(
TString(name) + "_nFakeTracks_vs_pT",
"Number of fake tracks candidates", b_pt, b_num);
"Averaged number of fake tracks per particle", b_pt, b_num);
// fake tracks number vs eta
cache.n_fake_vs_eta = plot_helpers::book_prof(
TString(name) + "_nFakeTracks_vs_eta",
"Number of fake tracks candidates", b_eta, b_num);
"Averaged number of fake tracks per particle", b_eta, b_num);
// fake tracks number vs phi
cache.n_fake_vs_phi = plot_helpers::book_prof(
TString(name) + "_nFakeTracks_vs_phi",
"Number of fake tracks candidates", b_phi, b_num);
"Averaged number of fake tracks per particle", b_phi, b_num);
#endif // TRACCC_HAVE_ROOT
}

Expand Down

0 comments on commit 27753e3

Please sign in to comment.