File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
PWGCF/MultiparticleCorrelations/Tasks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ struct ThreeParticleCorrelations {
337337 auto bc = collision.bc_as <aod::BCsWithTimestamps>();
338338 auto bField = getMagneticField (bc.timestamp ());
339339 if (confBfieldSwitch != 0 ) {
340- if (std::signbit (double (confBfieldSwitch)) != std::signbit (bField)) {
340+ if (std::signbit (static_cast < double > (confBfieldSwitch)) != std::signbit (bField)) {
341341 return ;
342342 }
343343 }
@@ -465,7 +465,7 @@ struct ThreeParticleCorrelations {
465465 auto bc = coll_1.bc_as <aod::BCsWithTimestamps>();
466466 auto bField = getMagneticField (bc.timestamp ());
467467 if (confBfieldSwitch != 0 ) {
468- if (std::signbit (double (confBfieldSwitch)) != std::signbit (bField)) {
468+ if (std::signbit (static_cast < double > (confBfieldSwitch)) != std::signbit (bField)) {
469469 return ;
470470 }
471471 }
You can’t perform that action at this time.
0 commit comments