We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b043d4f commit a732b32Copy full SHA for a732b32
PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx
@@ -907,9 +907,9 @@ struct he3HadronFemto {
907
{
908
double PrTPCnsigma = computePrTPCnsig(he3Hadcand.momHadTPC, he3Hadcand.tpcSignalHad);
909
double PrTOFnsigma = tofNSigmaCalculation(he3Hadcand.massTOFHad, he3Hadcand.recoPtHad());
910
- if (abs(PrTPCnsigma) < 3)
+ if (std::abs(PrTPCnsigma) < 3)
911
return;
912
- if (abs(PrTOFnsigma) < 3)
+ if (std::abs(PrTOFnsigma) < 3)
913
914
915
float kstar = computeKstar(he3Hadcand);
0 commit comments