From 3e9bb9030ae5fd022aa0d328ebe94ca9ce64f2dc Mon Sep 17 00:00:00 2001 From: z5062695 Date: Thu, 31 Aug 2023 15:09:58 +0100 Subject: [PATCH] Corrected EFG matrix readline in io/orca.py --- pycce/io/orca.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycce/io/orca.py b/pycce/io/orca.py index 27c55d6..8a26917 100644 --- a/pycce/io/orca.py +++ b/pycce/io/orca.py @@ -71,7 +71,7 @@ def read_orca(fname, isotopes=None, types=None, center=None, pass try: - n = find_first_index('Raw EFG matrix', lines, start=ind) + 1 + n = find_first_index('Raw EFG matrix', lines, start=ind) + 2 tensor = [] for _ in range(3): line = lines[n]