Skip to content

Commit

Permalink
Merge pull request #46795 from smuzaffar/root6-fix-Tof_of_hits-key
Browse files Browse the repository at this point in the history
[ROOT6]Drop extra space from the key name
  • Loading branch information
cmsbuild authored Nov 26, 2024
2 parents 3e10166 + 546544c commit 8c530a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Validation/MuonHits/plugins/MuonSimHitsValidAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ void MuonSimHitsValidAnalyzer::bookHistograms(DQMStore::IBooker& iBooker,
sprintf(histo_t, "Number_of_muon_DT_hits");
meMuDTHits = iBooker.book1D(histo_n, histo_t, 150, 1.0, 151.0);

sprintf(histo_n, "Tof_of_hits ");
sprintf(histo_t, "Tof_of_hits ");
sprintf(histo_n, "Tof_of_hits");
sprintf(histo_t, "Tof_of_hits");
meToF = iBooker.book1D(histo_n, histo_t, 100, -0.5, 50.);

sprintf(histo_n, "DT_energy_loss_keV");
Expand Down

0 comments on commit 8c530a9

Please sign in to comment.