Skip to content

Commit 3a296b4

Browse files
committed
Fix bug
1 parent 815c130 commit 3a296b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/TableProducer/Nuspex/decay3bodybuilder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ struct decay3bodyBuilder {
754754
auto trackPos = decay3body.template track0_as<TTracksTo>();
755755
auto trackNeg = decay3body.template track1_as<TTracksTo>();
756756
auto trackDeuteron = decay3body.template track2_as<TTracksTo>();
757-
int protonSign = doLikeSign ? trackDeuteron.sign() : -trackDeuteron.sign();
757+
int protonSign = doLikeSign ? -trackDeuteron.sign() : trackDeuteron.sign();
758758
auto trackProton = protonSign > 0 ? trackPos : trackNeg;
759759
auto trackPion = protonSign > 0 ? trackNeg : trackPos;
760760

0 commit comments

Comments
 (0)