Skip to content

Commit

Permalink
Fix coordinates order
Browse files Browse the repository at this point in the history
  • Loading branch information
andreicuceu committed Nov 18, 2023
1 parent ee88f3e commit b661bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vega/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, corr_item):

self._read_data(data_path, corr_item.config['cuts'], dmat_path)
self.corr_item.init_coordinates(
self.data_coordinates, self.dist_model_coordinates, self.model_coordinates)
self.model_coordinates, self.dist_model_coordinates, self.data_coordinates)

# Read the metal file and init metals in the corr item
if 'metals' in corr_item.config:
Expand Down

0 comments on commit b661bde

Please sign in to comment.