diff --git a/PWGLF/Tasks/Nuspex/multiplicityPt.cxx b/PWGLF/Tasks/Nuspex/multiplicityPt.cxx index 3991b923a25..1a71c04db8b 100644 --- a/PWGLF/Tasks/Nuspex/multiplicityPt.cxx +++ b/PWGLF/Tasks/Nuspex/multiplicityPt.cxx @@ -138,7 +138,7 @@ struct MultiplicityPt { // Custom track cuts matching spectraTOF TrackSelection customTrackCuts; - + // TF1 pointers for phi cuts TF1* fphiCutLow = nullptr; TF1* fphiCutHigh = nullptr; @@ -178,7 +178,6 @@ struct MultiplicityPt { static constexpr int PDGKaon = kKPlus; static constexpr int PDGProton = kProton; - // Get magnetic field from CCDB int getMagneticField(uint64_t timestamp) { @@ -335,7 +334,7 @@ struct MultiplicityPt { if (!passedNClTPCPIDCut(track)) return false; - + // Add phi cut with magnetic field if (!passedPhiCut(track, magField)) return false; @@ -411,7 +410,6 @@ struct MultiplicityPt { return true; } - void processData(CollisionTableData::iterator const& collision, TrackTableData const& tracks, BCsRun3 const& bcs); @@ -426,7 +424,6 @@ struct MultiplicityPt { BCsRun3 const& bcs); PROCESS_SWITCH(MultiplicityPt, processMC, "process MC", true); - void init(InitContext const&); void endOfStream(EndOfStreamContext& /*eos*/) @@ -441,13 +438,11 @@ struct MultiplicityPt { } }; - WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) { return WorkflowSpec{adaptAnalysisTask(cfgc)}; } - void MultiplicityPt::init(InitContext const&) { LOG(info) << "=================================================="; @@ -759,7 +754,6 @@ void MultiplicityPt::processMC(TrackTableMC const& tracks, LOG(info) << "Total collision labels: " << labels.size(); LOG(info) << "Total centrality entries: " << centTable.size(); - LOG(info) << "\n=== CENTRALITY DEBUG - RAW DATA ==="; LOG(info) << "First 20 centrality values from centTable:"; int debugCount = 0; @@ -790,7 +784,6 @@ void MultiplicityPt::processMC(TrackTableMC const& tracks, LOG(info) << "Checking if centrality might be inverted..."; LOG(info) << "Will check correlation with multiplicity in the next step."; - std::map mcCollisionToNch; std::map mcCollisionVz; std::set physicsSelectedMCCollisions; @@ -908,7 +901,6 @@ void MultiplicityPt::processMC(TrackTableMC const& tracks, LOG(info) << "recoToMcMap size: " << recoToMcMap.size(); LOG(info) << "recoToCentMap size: " << recoToCentMap.size(); - LOG(info) << "\n=== CENTRALITY VS MULTIPLICITY DEBUG ==="; // Create temporary vectors to check correlation