Skip to content

Commit 425b60d

Browse files
authored
[PWGJE] Update PhotonIsolationQA.cxx (#8507)
1 parent 57e7f16 commit 425b60d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGJE/Tasks/PhotonIsolationQA.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ struct PhotonIsolationQA {
142142
Data_Info.add("hEvsPtIso", "Pt_Iso", o2HistType::kTH2F, {{Energy_Axis}, {PtIso_Axis}});
143143
Data_Info.add("hRho_Perpen_Cone", "Energy vs Density of perpendicular cone", o2HistType::kTH2F, {{Energy_Axis}, {Rho_Axis}});
144144
Data_Info.add("hShowerShape", "Shower shape", o2HistType::kTH2F, {{Shower_Shape_Long_Axis}, {Shower_Shape_Short_Axis}});
145-
Data_Info.add("hSigmaLongvsPtIso", "Long shower shape vs Pt_Iso", o2HistType::kTH2F, {{Shower_Shape_Long_Axis}, {PtIso_Axis}});
145+
Data_Info.add("hSigmaLongvsPtIso", "Long shower shape vs Pt_Iso", o2HistType::kTH3F, {{Shower_Shape_Long_Axis}, {PtIso_Axis}, {Energy_Axis}});
146146
Data_Info.add("hABCDControlRegion", "Yield Control Regions", o2HistType::kTH2F, {{ABCD_Axis}, {Energy_Axis}});
147147
Data_Info.add("hCollperBC", "collisions per BC", o2HistType::kTH1F, {BC_Axis});
148148
Data_Info.add("hEnergy_NLM_Flag", "Energy vs NLM", o2HistType::kTH3F, {{Energy_Axis}, {NLM_Axis}, {SM_Flag_Axis}});
@@ -493,7 +493,7 @@ struct PhotonIsolationQA {
493493

494494
Data_Info.fill(HIST("hEvsPtIso"), cluster.energy(), Pt_iso);
495495
Data_Info.fill(HIST("hRho_Perpen_Cone"), cluster.energy(), Rho_Perpen_Cone);
496-
Data_Info.fill(HIST("hSigmaLongvsPtIso"), cluster.m02(), Pt_iso);
496+
Data_Info.fill(HIST("hSigmaLongvsPtIso"), cluster.m02(), Pt_iso, cluster.energy());
497497
fillABCDHisto(Data_Info, cluster, Pt_iso);
498498
}
499499
}

0 commit comments

Comments
 (0)