From d64bf51d0595414289e6622c85189d5f37e62c0b Mon Sep 17 00:00:00 2001 From: David Minton Date: Wed, 23 Jun 2021 10:47:55 -0400 Subject: [PATCH] Fixed bad order of rotation variables --- python/swiftestio/swiftestio.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/swiftestio/swiftestio.py b/python/swiftestio/swiftestio.py index 69c88b711..97f47841c 100644 --- a/python/swiftestio/swiftestio.py +++ b/python/swiftestio/swiftestio.py @@ -315,12 +315,12 @@ def make_swiftest_labels(config): plab.append('mass') plab.append('radius') if config['ROTATION'] == 'YES': - plab.append('Ip_x') - plab.append('Ip_y') - plab.append('Ip_z') plab.append('rot_x') plab.append('rot_y') plab.append('rot_z') + plab.append('Ip_x') + plab.append('Ip_y') + plab.append('Ip_z') if config['TIDES'] == 'YES': plab.append('k2') plab.append('Q')