Skip to content

Commit

Permalink
change - to +
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Reep committed May 21, 2024
1 parent 78bb498 commit 9f1da60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pydrad/parse/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,11 @@ def _read_trm(self):
for j in range(n_mass):
self._trm_data[i,j] = mass_terms[mass_columns[j]][i]
for j in range(n_momentum):
self._trm_data[i,j-offsets[0]] = momentum_terms[momentum_columns[j]][i]
self._trm_data[i,j+offsets[0]] = momentum_terms[momentum_columns[j]][i]
for j in range(n_electron):
self._trm_data[i,j-offsets[1]] = electron_terms[electron_columns[j]][i]
self._trm_data[i,j+offsets[1]] = electron_terms[electron_columns[j]][i]
for j in range(n_hydrogen):
self._trm_data[i,j-offsets[2]] = hydrogen_terms[hydrogen_columns[j]][i]
self._trm_data[i,j+offsets[2]] = hydrogen_terms[hydrogen_columns[j]][i]

properties = []
for i in range(n_mass):
Expand Down

0 comments on commit 9f1da60

Please sign in to comment.