Skip to content

Commit

Permalink
Update spectraTOF.cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
RD0407 authored Dec 10, 2024
1 parent 3450693 commit f8fdc5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions PWGLF/Tasks/Nuspex/spectraTOF.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1345,12 +1345,11 @@ struct tofSpectra {
continue;
}
const auto& nsigmaTPCPi = o2::aod::pidutils::tpcNSigma<2>(track);
const auto& nsigmaTPCKa = track.tpcNSigmaKa();//o2::aod::pidutils::tpcNSigma<3>(track);
const auto& nsigmaTPCKa = o2::aod::pidutils::tpcNSigma<3>(track);
const auto& nsigmaTPCPr = o2::aod::pidutils::tpcNSigma<4>(track);
const auto& nsigmaTOFPi = o2::aod::pidutils::tofNSigma<2>(track);
const auto& nsigmaTOFKa = o2::aod::pidutils::tofNSigma<3>(track);
const auto& nsigmaTOFPr = o2::aod::pidutils::tofNSigma<4>(track);

// Apply PID cuts
bool isTPCPion = fabs(nsigmaTPCPi) < 10;

Check warning on line 1354 in PWGLF/Tasks/Nuspex/spectraTOF.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[std-prefix]

Use std:: prefix for names from the std namespace.
bool isTPCKaon = fabs(nsigmaTPCKa) < 10;

Check warning on line 1355 in PWGLF/Tasks/Nuspex/spectraTOF.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[std-prefix]

Use std:: prefix for names from the std namespace.
Expand Down

0 comments on commit f8fdc5e

Please sign in to comment.