Skip to content

Commit a732b32

Browse files
authored
Update he3HadronFemto.cxx
1 parent b043d4f commit a732b32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGLF/TableProducer/Nuspex/he3HadronFemto.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,9 +907,9 @@ struct he3HadronFemto {
907907
{
908908
double PrTPCnsigma = computePrTPCnsig(he3Hadcand.momHadTPC, he3Hadcand.tpcSignalHad);
909909
double PrTOFnsigma = tofNSigmaCalculation(he3Hadcand.massTOFHad, he3Hadcand.recoPtHad());
910-
if (abs(PrTPCnsigma) < 3)
910+
if (std::abs(PrTPCnsigma) < 3)
911911
return;
912-
if (abs(PrTOFnsigma) < 3)
912+
if (std::abs(PrTOFnsigma) < 3)
913913
return;
914914

915915
float kstar = computeKstar(he3Hadcand);

0 commit comments

Comments
 (0)