Skip to content

Commit

Permalink
O2 linter fix try 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
omassen committed Dec 5, 2024
1 parent 695e0b6 commit b22cd3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PWGCF/TwoParticleCorrelations/Tasks/neutronProtonCorrZdc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ using namespace o2;
using namespace o2::framework;
using namespace o2::framework::expressions;

struct neutronProtonCorrZdc {
struct NeutronProtonCorrZdc {
// Histogram registry: an object to hold your histograms
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};

Expand Down Expand Up @@ -182,7 +182,7 @@ struct neutronProtonCorrZdc {
histos.fill(HIST("CentvsZPSignal"), cent, sumZPA + sumZPC);
}
}
PROCESS_SWITCH(neutronProtonCorrZdc, processRun3, "Process analysis for Run 3 data", true);
PROCESS_SWITCH(NeutronProtonCorrZdc, processRun3, "Process analysis for Run 3 data", true);

void processRun2(soa::Filtered<soa::Join<aod::Collisions, aod::EvSels, aod::Run2MatchedSparse, CentralitiesRun2>>::iterator const& collision ,aod::BCsWithTimestamps const&, aod::Zdcs const&)
{
Expand Down Expand Up @@ -241,7 +241,7 @@ struct neutronProtonCorrZdc {
histos.fill(HIST("CentvsZPSignal"), cent, sumZPA + sumZPC);
}
}
PROCESS_SWITCH(neutronProtonCorrZdc, processRun2, "Process analysis for Run 2 converted data", false);
PROCESS_SWITCH(NeutronProtonCorrZdc, processRun2, "Process analysis for Run 2 converted data", false);
};

WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
Expand Down

0 comments on commit b22cd3f

Please sign in to comment.