Skip to content

Commit 97e7568

Browse files
authored
Merge pull request #48920 from cericeci/10_6_X_suepfix
[10_6_X] Fixed pz transform for SUEP constituent
2 parents 4d02599 + 991a72f commit 97e7568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GeneratorInterface/Pythia8Interface/src/SuepShower.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const Pythia8::Vec4 SuepShower::generateFourVector() {
155155
// compose the 4 std::vector
156156
en = sqrt(momentum * momentum + darkmeson_mass_ * darkmeson_mass_);
157157
Pythia8::Vec4 daughterFourMomentum =
158-
Pythia8::Vec4(momentum * cos(phi) * sin(theta), momentum * sin(phi) * sin(theta), momentum * sin(theta), en);
158+
Pythia8::Vec4(momentum * cos(phi) * sin(theta), momentum * sin(phi) * sin(theta), momentum * cos(theta), en);
159159
return daughterFourMomentum;
160160
}
161161

0 commit comments

Comments
 (0)