Skip to content

Commit

Permalink
removed timing and M02 cuts on cluster definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Archita-Dash committed Jan 21, 2025
1 parent f486659 commit 7979ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PWGJE/TableProducer/emcalClusterHadronicCorrectionTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ struct EmcalClusterHadronicCorrectionTask {
registry.add("h_matchedtracks", "Total matched tracks; track status;entries", {HistType::kTH1F, {{1, 0.5, 1.5}}});
}

Filter clusterDefinitionSelection = (o2::aod::emcalcluster::definition == mClusterDefinition) && (o2::aod::emcalcluster::time >= minTime) && (o2::aod::emcalcluster::time <= maxTime) && (o2::aod::emcalcluster::m02 > minM02) && (o2::aod::emcalcluster::m02 < maxM02);
Filter clusterDefinitionSelection = (o2::aod::emcalcluster::definition == mClusterDefinition);
Filter trackSelection = (o2::aod::track::pt >= minTrackPt);
// The matching of clusters and tracks is already centralised in the EMCAL framework.
// One only needs to apply a filter on matched clusters
Expand Down

0 comments on commit 7979ef9

Please sign in to comment.