@@ -176,6 +176,7 @@ struct LfLambdaTwoPartPolarization {
176176 histos.add (" Ana/SignalCos2" , " " , {HistType::kTHnSparseF , {ptAxis, ptAxis, detaAxis, dphiAxis, centAxis, cosSigAxis}});
177177 histos.add (" Ana/Acceptance" , " " , {HistType::kTHnSparseF , {ptAxis, centAxis, rapAxis, cosAccAxis}});
178178
179+
179180 histos.add (" AnaHL/LambdaSignal" , " " , {HistType::kTHnSparseF , {ptAxis, ptAxis, detaAxis, dphiAxis, centAxis, massAxis, cosSigAxis}});
180181 histos.add (" AnaHL/ALambdaSignal" , " " , {HistType::kTHnSparseF , {ptAxis, ptAxis, detaAxis, dphiAxis, centAxis, massAxis, cosSigAxis}});
181182
@@ -407,14 +408,14 @@ struct LfLambdaTwoPartPolarization {
407408 weight *= cfgAccCor ? 1.0 / AccMap->GetBinContent (AccMap->GetXaxis ()->FindBin (v01.pt ()), AccMap->GetYaxis ()->FindBin (v01.yLambda ())) : 1 .;
408409
409410 if (LambdaTag) {
410- histos.fill (HIST (" AnaHL/LambdaSignal" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * weight);
411- histos.fill (HIST (" AnaHL/LambdaSignalSin2" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * std::sin (2.0 * dphi) * weight);
412- histos.fill (HIST (" AnaHL/LambdaSignalCos2" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * std::cos (2.0 * dphi) * weight);
411+ histos.fill (HIST (" AnaHL/LambdaSignal" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * weight);
412+ histos.fill (HIST (" AnaHL/LambdaSignalSin2" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * std::sin (2.0 * dphi) * weight);
413+ histos.fill (HIST (" AnaHL/LambdaSignalCos2" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mLambda (), costhetastar1 * std::cos (2.0 * dphi) * weight);
413414 }
414415 if (aLambdaTag) {
415- histos.fill (HIST (" AnaHL/ALambdaSignal" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * weight);
416- histos.fill (HIST (" AnaHL/ALambdaSignalSin2" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * std::sin (2.0 * dphi) * weight);
417- histos.fill (HIST (" AnaHL/ALambdaSignalCos2" ), trk.pt (), v01.pt (), v01.yLambda () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * std::cos (2.0 * dphi) * weight);
416+ histos.fill (HIST (" AnaHL/ALambdaSignal" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * weight);
417+ histos.fill (HIST (" AnaHL/ALambdaSignalSin2" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * std::sin (2.0 * dphi) * weight);
418+ histos.fill (HIST (" AnaHL/ALambdaSignalCos2" ), trk.pt (), v01.pt (), v01.eta () - trk.eta (), dphi, centrality, v01.mAntiLambda (), costhetastar1 * std::cos (2.0 * dphi) * weight);
418419 }
419420 }
420421 }
@@ -664,7 +665,7 @@ struct LfLambdaTwoPartPolarization {
664665 Preslice<TrackCandidates> tracksPerCollisionPri = aod::track::collisionId;
665666
666667 void processDataMixedHadronT0M (EventCandidates const & collisions,
667- TrackCandidates const & tracks, aod::V0Datas const & V0s, aod::BCsWithTimestamps const &)
668+ TrackCandidates const & tracks, aod::V0Datas const & V0s, aod::BCsWithTimestamps const &)
668669 {
669670 for (const auto & [c1, c2] : selfCombinations (colBinningT0M, cfgNoMixedEvents, -1 , collisions, collisions)) {
670671
@@ -697,6 +698,7 @@ struct LfLambdaTwoPartPolarization {
697698 }
698699 }
699700 PROCESS_SWITCH (LfLambdaTwoPartPolarization, processDataMixedHadronT0M, " Process event for mixed data in pp with hadrons" , false );
701+
700702};
701703
702704WorkflowSpec defineDataProcessing (ConfigContext const & cfgc)
0 commit comments