@@ -432,10 +432,10 @@ struct FlowGfwOmegaXi {
432432 registry.get <THnSparse>(HIST (" correction/hRunNumberPhiEtaVertexXi" ))->GetAxis (0 )->SetBinLabel (idx, std::to_string (runNumbers[idx - 1 ]).c_str ());
433433 registry.get <THnSparse>(HIST (" correction/hRunNumberPhiEtaVertexOmega" ))->GetAxis (0 )->SetBinLabel (idx, std::to_string (runNumbers[idx - 1 ]).c_str ());
434434 }
435- registry.add (" correction/hPhiEtaInvmassK0s" , " " , {HistType::kTHnSparseF , {cfgaxisPhi, cfgaxisEta, axisK0sMass, cfgaxisPtK0s }});
436- registry.add (" correction/hPhiEtaInvmassLambda" , " " , {HistType::kTHnSparseF , {cfgaxisPhi, cfgaxisEta, axisLambdaMass, cfgaxisPtLambda }});
437- registry.add (" correction/hPhiEtaInvmassXi" , " " , {HistType::kTHnSparseF , {cfgaxisPhi, cfgaxisEta, axisXiMass, cfgaxisPtXi }});
438- registry.add (" correction/hPhiEtaInvmassOmega" , " " , {HistType::kTHnSparseF , {cfgaxisPhi, cfgaxisEta, axisOmegaMass, cfgaxisPtOmega }});
435+ registry.add (" correction/hPhiEtaInvmassK0s" , " " , {HistType::kTH3D , {cfgaxisPhi, cfgaxisEta, axisK0sMass}});
436+ registry.add (" correction/hPhiEtaInvmassLambda" , " " , {HistType::kTH3D , {cfgaxisPhi, cfgaxisEta, axisLambdaMass}});
437+ registry.add (" correction/hPhiEtaInvmassXi" , " " , {HistType::kTH3D , {cfgaxisPhi, cfgaxisEta, axisXiMass}});
438+ registry.add (" correction/hPhiEtaInvmassOmega" , " " , {HistType::kTH3D , {cfgaxisPhi, cfgaxisEta, axisOmegaMass}});
439439 }
440440
441441 registry.add (" hEventCount" , " " , {HistType::kTH1D , {{14 , 0 , 14 }}});
@@ -1379,7 +1379,7 @@ struct FlowGfwOmegaXi {
13791379 th1sList[runNumber][hPhiK0scorr]->Fill (v0.phi (), wacc);
13801380 }
13811381 registry.fill (HIST (" correction/hRunNumberPhiEtaVertexK0s" ), matchedPosition, v0.phi (), v0.eta (), vtxz);
1382- registry.fill (HIST (" correction/hPhiEtaInvmassK0s" ), v0.phi (), v0.eta (), v0.mK0Short (), v0. pt () );
1382+ registry.fill (HIST (" correction/hPhiEtaInvmassK0s" ), v0.phi (), v0.eta (), v0.mK0Short ());
13831383 }
13841384 }
13851385 if (isLambda || isALambda) {
@@ -1414,9 +1414,9 @@ struct FlowGfwOmegaXi {
14141414 }
14151415 registry.fill (HIST (" correction/hRunNumberPhiEtaVertexLambda" ), matchedPosition, v0.phi (), v0.eta (), vtxz);
14161416 if (isLambda)
1417- registry.fill (HIST (" correction/hPhiEtaInvmassLambda" ), v0.phi (), v0.eta (), v0.mLambda (), v0. pt () );
1417+ registry.fill (HIST (" correction/hPhiEtaInvmassLambda" ), v0.phi (), v0.eta (), v0.mLambda ());
14181418 if (isALambda)
1419- registry.fill (HIST (" correction/hPhiEtaInvmassLambda" ), v0.phi (), v0.eta (), v0.mAntiLambda (), v0. pt () );
1419+ registry.fill (HIST (" correction/hPhiEtaInvmassLambda" ), v0.phi (), v0.eta (), v0.mAntiLambda ());
14201420 }
14211421 }
14221422 }
@@ -1651,7 +1651,7 @@ struct FlowGfwOmegaXi {
16511651 th1sList[runNumber][hPhiOmegacorr]->Fill (casc.phi (), wacc);
16521652 }
16531653 registry.fill (HIST (" correction/hRunNumberPhiEtaVertexOmega" ), matchedPosition, casc.phi (), casc.eta (), vtxz);
1654- registry.fill (HIST (" correction/hPhiEtaInvmassOmega" ), casc.phi (), casc.eta (), casc.mOmega (), casc. pt () );
1654+ registry.fill (HIST (" correction/hPhiEtaInvmassOmega" ), casc.phi (), casc.eta (), casc.mOmega ());
16551655 }
16561656 }
16571657 if (isXi) {
@@ -1681,7 +1681,7 @@ struct FlowGfwOmegaXi {
16811681 th1sList[runNumber][hPhiXicorr]->Fill (casc.phi (), wacc);
16821682 }
16831683 registry.fill (HIST (" correction/hRunNumberPhiEtaVertexXi" ), matchedPosition, casc.phi (), casc.eta (), vtxz);
1684- registry.fill (HIST (" correction/hPhiEtaInvmassXi" ), casc.phi (), casc.eta (), casc.mXi (), casc. pt () );
1684+ registry.fill (HIST (" correction/hPhiEtaInvmassXi" ), casc.phi (), casc.eta (), casc.mXi ());
16851685 }
16861686 }
16871687 }
0 commit comments