Skip to content

Commit

Permalink
Reflect changes in the development build
Browse files Browse the repository at this point in the history
  • Loading branch information
Niri Govind committed Mar 12, 2009
1 parent 6edd262 commit 9f9bd77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/driver/oniom.F
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
logical function oniom_energy(rtdb)
*
* $Id: oniom.F,v 1.12 2003-10-17 22:54:49 carlfahl Exp $
* $Id: oniom.F,v 1.13 2009-03-12 20:42:05 niri Exp $
*
implicit none
integer rtdb
Expand Down Expand Up @@ -384,7 +384,7 @@ logical function oniom(rtdb, task)
$ ('oniom: getting ncent',0, GEOM_ERR)
if (nat .ne. nattest) call errquit
$ ('oniom: model does not have correct symmetry', 0, GEOM_ERR)
ignore = geom_zmtmak(geom,.false.)
ignore = geom_zmtmak(rtdb, geom, .false.)
if (.not. geom_rtdb_store(rtdb, geom, 'oniom model'))
$ call errquit('oniom: failed storing geometry',0, RTDB_ERR)
if (ga_nodeid().eq.0 .and.
Expand Down Expand Up @@ -433,7 +433,7 @@ logical function oniom(rtdb, task)
if (nat .ne. nattest) call errquit
$ ('oniom: inter does not have correct symmetry', 0,
& GEOM_ERR)
ignore = geom_zmtmak(geom,.false.)
ignore = geom_zmtmak(rtdb, geom, .false.)
if (.not. geom_rtdb_store(rtdb, geom, 'oniom inter'))
$ call errquit('oniom: failed storing geometry',0, RTDB_ERR)
if (ga_nodeid().eq.0 .and.
Expand Down
4 changes: 2 additions & 2 deletions src/driver/opt_drv.F
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
logical function driver(rtdb)
*
* $Id: opt_drv.F,v 1.117 2005-09-01 00:47:51 marat Exp $
* $Id: opt_drv.F,v 1.118 2009-03-12 20:42:05 niri Exp $
*
implicit none
#include "errquit.fh"
Expand Down Expand Up @@ -968,7 +968,7 @@ subroutine driver_initialize(rtdb, geom)
if (source .eq. 'autoz') then
if (oprint) write(6,777)
777 format(/' Regenerating redundant internal coordinates'/)
if (.not. geom_zmtmak(geom,oprint))
if (.not. geom_zmtmak(rtdb, geom, oprint))
$ call errquit('driver: regeneration of autoz failed',
$ 0, GEOM_ERR)
if (oprint) write(6,*)
Expand Down

0 comments on commit 9f9bd77

Please sign in to comment.