Skip to content

Commit

Permalink
Fix o2-linter
Browse files Browse the repository at this point in the history
  • Loading branch information
scattaru committed Dec 14, 2024
1 parent 89f095d commit 53184b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ struct HfCorrelatorDsHadrons {

Preslice<CandDsData> candsDsPerColPreslicelision = aod::hf_cand::collisionId;
Preslice<MyTracksData> trackIndicesPerCollision = aod::track::collisionId;
Preslice<CandDsMcGen> perCollisionCandMc = o2::aod::mcparticle::mcCollisionId;
PresliceUnsorted<soa::Join<aod::Collisions, aod::FT0Mults, aod::EvSels, aod::McCollisionLabels>> collPerCollMc = o2::aod::mccollisionlabel::mcCollisionId;

ConfigurableAxis zPoolBins{"zPoolBins", {VARIABLE_WIDTH, -10.0, -2.5, 2.5, 10.0}, "z vertex position pools"};
ConfigurableAxis multPoolBins{"multPoolBins", {VARIABLE_WIDTH, 0., 900., 1800., 6000.}, "event multiplicity pools (FT0M)"};
Expand Down Expand Up @@ -585,9 +587,6 @@ struct HfCorrelatorDsHadrons {
}
PROCESS_SWITCH(HfCorrelatorDsHadrons, processMcRec, "Process MC Reco mode", false);

Preslice<CandDsMcGen> perCollisionCandMc = o2::aod::mcparticle::mcCollisionId;
PresliceUnsorted<soa::Join<aod::Collisions, aod::FT0Mults, aod::EvSels, aod::McCollisionLabels>> collPerCollMc = o2::aod::mccollisionlabel::mcCollisionId;

/// Ds-Hadron correlation pair builder - for MC gen-level analysis (no filter/selection, only true signal)
void processMcGen(SelCollisionsMc const& mcCollisions,
soa::Join<aod::Collisions, aod::FT0Mults, aod::EvSels, aod::McCollisionLabels> const& collisions,
Expand Down

0 comments on commit 53184b5

Please sign in to comment.