From 543186835d8777d8ec9939efb94fd40457105c1f Mon Sep 17 00:00:00 2001 From: "paul.minodier" Date: Tue, 2 Jul 2024 19:15:46 +0900 Subject: [PATCH] fixed parenthesis mistake --- sim2root/CoREASRawRoot/CorsikaInfoFuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim2root/CoREASRawRoot/CorsikaInfoFuncs.py b/sim2root/CoREASRawRoot/CorsikaInfoFuncs.py index 6f15eec0..21429982 100644 --- a/sim2root/CoREASRawRoot/CorsikaInfoFuncs.py +++ b/sim2root/CoREASRawRoot/CorsikaInfoFuncs.py @@ -273,7 +273,7 @@ def read_long(pathLongFile): TODO: fix hillas_parameter - something's not working yet """ with open(pathLongFile, mode="r") as file: - lines=file.readlines + lines=file.readlines() n_steps = int(lines[0].rstrip().split()[3])