Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion source/analysis.f
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ subroutine analysis (energy)
use iounit
use limits
use potent
use reppot
use vdwpot
implicit none
integer i
Expand Down Expand Up @@ -227,7 +228,11 @@ subroutine analysis (energy)
if (vdwtyp .eq. 'BUFFERED-14-7') call ehal3
if (vdwtyp .eq. 'GAUSSIAN') call egauss3
end if
if (use_repel) call erepel3
if (use_repel) then
call erepel3
else if (use_xrepel) then
call exrepel3
end if
if (use_disp) call edisp3
c
c call any miscellaneous energy component routines
Expand Down
Loading