From c07eeda978d1768701f838b05fdde0d7a8100958 Mon Sep 17 00:00:00 2001 From: Patrick Sauvan Date: Sun, 28 Apr 2024 00:15:43 +0200 Subject: [PATCH] solve issue #75 in getTransMatrix function --- src/geouned/GEOReverse/Modules/MCNPinput.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/geouned/GEOReverse/Modules/MCNPinput.py b/src/geouned/GEOReverse/Modules/MCNPinput.py index c68dad40..5dab7621 100644 --- a/src/geouned/GEOReverse/Modules/MCNPinput.py +++ b/src/geouned/GEOReverse/Modules/MCNPinput.py @@ -198,6 +198,7 @@ def getTransMatrix(trsf, unit="", scale=10.0): coeff[2], coeff[5], coeff[8], trsf[2] * scale, 0, 0, 0, 1, ) + return trsfMat # fmt: on