Skip to content

Commit

Permalink
Update jval.cc to close issue #35; use atom j instead of atom i as it…
Browse files Browse the repository at this point in the history
… more likely corresponds to the 'correct' amino acid
  • Loading branch information
oostenbrink committed Dec 17, 2017
1 parent 63a7501 commit fa47a72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gromos++/programs/jval.cc
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ int main(int argc, char **argv){
int m = kps[i].m_mol;
cout << setw(5) << i + 1
<< setw(4) << m + 1
<< setw(4) << sys.mol(m).topology().resNum(kps[i].m_i) + 1
<< setw(5) << sys.mol(m).topology().resName(sys.mol(m).topology().resNum(kps[i].m_i))
<< setw(4) << sys.mol(m).topology().resNum(kps[i].m_j) + 1
<< setw(5) << sys.mol(m).topology().resName(sys.mol(m).topology().resNum(kps[i].m_j))
<< setw(5) << sys.mol(m).topology().atom(kps[i].m_i).name()
<< setw(5) << sys.mol(m).topology().atom(kps[i].m_j).name()
<< setw(5) << sys.mol(m).topology().atom(kps[i].m_k).name()
Expand Down

0 comments on commit fa47a72

Please sign in to comment.