Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ struct FemtoUniverseDebugV0 {

Configurable<bool> confIsMC{"confIsMC", false, "Enable additional histograms in the case of a Monte Carlo run"};


/// Partitioning
using FemtoFullParticles = soa::Join<aod::FDParticles, aod::FDExtParticles>;
Partition<FemtoFullParticles> partsOne = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kV0)) && ((aod::femtouniverseparticle::cut & V0configs.confCutV0) == V0configs.confCutV0);
Expand All @@ -82,7 +81,6 @@ struct FemtoUniverseDebugV0 {

Preslice<FemtoFullParticles> perCol = aod::femtouniverseparticle::fdCollisionId;


/// Histogramming
FemtoUniverseEventHisto eventHisto;
FemtoUniverseParticleHisto<aod::femtouniverseparticle::ParticleType::kV0Child, 3> positiveChildHistos;
Expand All @@ -94,7 +92,6 @@ struct FemtoUniverseDebugV0 {
HistogramRegistry V0Registry{"FullV0QA", {}, OutputObjHandlingPolicy::AnalysisObject}; // o2-linter: disable=name/function-variable
HistogramRegistry thetaRegistry{"ThetaQA", {}, OutputObjHandlingPolicy::AnalysisObject};


void init(InitContext&)
{
eventHisto.init(&eventRegistry);
Expand All @@ -111,7 +108,6 @@ struct FemtoUniverseDebugV0 {
thetaRegistry.add("Theta/NegativeChild/hThetaPhi", " ; #phi; cos(#theta)", kTH2F, {{100, -1, 7}, {110, -1.1, 1.1}});
}


/// Produce QA plots for V0 and its children on real data
void processData(o2::aod::FdCollision const& col, FemtoFullParticles const& parts)
{
Expand Down Expand Up @@ -154,7 +150,6 @@ struct FemtoUniverseDebugV0 {
}
PROCESS_SWITCH(FemtoUniverseDebugV0, processData, "Enable processing on real data", true);


/// Produce QA plots for V0 and its children on MonteCarlo data
void processMC(o2::aod::FdCollision const& col, soa::Join<FemtoFullParticles, aod::FDMCLabels> const& parts, o2::aod::FdMCParticles const&)
{
Expand Down Expand Up @@ -198,7 +193,6 @@ struct FemtoUniverseDebugV0 {
PROCESS_SWITCH(FemtoUniverseDebugV0, processMC, "Enable processing on Monte Carlo", false);
};


WorkflowSpec
defineDataProcessing(ConfigContext const& cfgc)
{
Expand Down
Loading