Skip to content

Commit

Permalink
[PWGEM/PhotonMeson] Change event counter precision (float -> double) (#…
Browse files Browse the repository at this point in the history
…9059)

Co-authored-by: Nicolas Strangmann <[email protected]>
  • Loading branch information
nstrangm and Nicolas Strangmann authored Dec 19, 2024
1 parent bab7be3 commit 54e8603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGEM/PhotonMeson/Utils/EventHistograms.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace o2::aod::pwgem::photonmeson::utils::eventhistogram
void addEventHistograms(HistogramRegistry* fRegistry)
{
// event info
auto hCollisionCounter = fRegistry->add<TH1>("Event/before/hCollisionCounter", "collision counter;;Number of events", kTH1F, {{12, 0.5, 12.5}}, false);
auto hCollisionCounter = fRegistry->add<TH1>("Event/before/hCollisionCounter", "collision counter;;Number of events", kTH1D, {{12, 0.5, 12.5}}, false);
hCollisionCounter->GetXaxis()->SetBinLabel(1, "all");
hCollisionCounter->GetXaxis()->SetBinLabel(2, "No TF border");
hCollisionCounter->GetXaxis()->SetBinLabel(3, "No ITS ROF border");
Expand Down

0 comments on commit 54e8603

Please sign in to comment.