Skip to content

Commit

Permalink
DPG/AOTTrack: Add boolean type cast (AliceO2Group#7110)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrea <andrea.rossicern.ch>
  • Loading branch information
arossi81 authored Aug 1, 2024
1 parent 7d08eec commit 9990158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DPG/Tasks/AOTTrack/tagAndProbeDmesons.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ struct ProbeThirdTrack {
Configurable<LabeledArray<double>> mlCutsDzeroFromDstar{"mlCutsDzeroFromDstar", {aod::tagandprobe::mlCuts[0], aod::tagandprobe::nBinsPt, 3, aod::tagandprobe::labelsEmpty, aod::tagandprobe::labelsMlScores}, "ML Selections for Kpi pairs from D0 <- D*+ decays"};
} mlConfig;

Filter tagMcFilter = aod::tagandprobe::isSignal > 0;
Filter tagMcFilter = aod::tagandprobe::isSignal > static_cast<uint8_t>(0);

using TracksWithDca = soa::Join<aod::Tracks, aod::TracksDCA, aod::TracksExtra>;
using TracksWithDcaMc = soa::Join<TracksWithDca, aod::McTrackLabels>;
Expand Down

0 comments on commit 9990158

Please sign in to comment.