********>Bugfix 55:
Author: Bob Duke
Date: 11/17/2005
Programs: pmemd
Description: With new-style prmtop files, the title echoed to the output
and restrt files is not correct.
Fix: Apply the following patch to amber8/src/pmemd/src/prmtop_dat.f90
------------------------------------------------------------------------------
*** prmtop_dat.f90 2004/02/16 21:32:57 1.3
--- prmtop_dat.f90 2005/11/17 19:13:39
***************
*** 182,188 ****
type = 'TITLE'
call nxtsec(8, 6, 0, fmtin, type, fmt, errcode)
! read(8, fmt) prmtop_ititl
fmtin = ifmt
type = 'POINTERS'
--- 182,192 ----
type = 'TITLE'
call nxtsec(8, 6, 0, fmtin, type, fmt, errcode)
! ! NOTE the hack below (copied from sander) that prevents the hollerith format
! ! returned from the prmtop from screwing things up (the read format is
! ! fmtin, not the returned fmt).
!
! read(8, fmtin) prmtop_ititl
fmtin = ifmt
type = 'POINTERS'
-------------------------------------------------------------------------------
Temporary workarounds: none