Skip to content

Commit 83440d1

Browse files
committed
suppress warning on service member
1 parent 2a6e331 commit 83440d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ struct FactorialMomentsTask {
9292
Configurable<int> reduceOutput{"reduceOutput", 0, "Suppress info level output (0 = all output, 1 = per collision, 2 = none)"};
9393
Filter filterTracks = (nabs(aod::track::eta) < centralEta) && (aod::track::pt >= ptMin);
9494
Filter filterCollisions = (nabs(aod::collision::posZ) < vertexXYZ.value[2]) && (nabs(aod::collision::posX) < vertexXYZ.value[0]) && (nabs(aod::collision::posY) < vertexXYZ.value[1]);
95-
Service<o2::framework::O2DatabasePDG> pdg;
95+
Service<o2::framework::O2DatabasePDG> pdg{};
9696
// Histograms
9797
HistogramRegistry histos1{
9898
"histos1",

0 commit comments

Comments
 (0)