Skip to content

Commit e872742

Browse files
committed
code-check fix1
1 parent ee50e37 commit e872742

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

IOMC/EventVertexGenerators/src/BaseEvtVtxGenerator.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ void BaseEvtVtxGenerator::produce(Event& evt, const EventSetup&) {
8181
p4(0, 0) = 1.;
8282
p4(1, 0) = 1.;
8383
p4(2, 0) = 1.;
84-
p4(3, 0) = 1.; // Check if the boost matrix is not trivial
84+
p4(3, 0) = 1.; // Check if the boost matrix is not trivial
8585
TMatrixD p4lab(4, 1);
8686
p4lab = tmplorentz * p4;
87-
if (p4lab(0, 0) - p4(0, 0) != 0. || p4lab(1, 0) - p4(1, 0) != 0. ||
88-
p4lab(2, 0) - p4(2, 0) != 0. || p4lab(3, 0) - p4(3, 0) != 0.) { // not trivial
87+
if (p4lab(0, 0) - p4(0, 0) != 0. || p4lab(1, 0) - p4(1, 0) != 0. || p4lab(2, 0) - p4(2, 0) != 0. ||
88+
p4lab(3, 0) - p4(3, 0) != 0.) { // not trivial:
8989
productcopy3->boostToLab(GetInvLorentzBoost(), "vertex");
9090
productcopy3->boostToLab(GetInvLorentzBoost(), "momentum");
9191
}

0 commit comments

Comments
 (0)