Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed bad order of rotation variables
  • Loading branch information
daminton committed Jun 23, 2021
1 parent c3d255b commit d64bf51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/swiftestio/swiftestio.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit d64bf51

Please sign in to comment.