Open, read in, and process the GROMACS-style index file, storing information in memory.
68 class(IndexFile),
intent(inout) :: this
69 character (len=*),
intent(in) :: filename
70 character (len=2048) :: line, NCOLS_string, fmt_string
71 integer(kind=int32) :: INDEX_FILE_UNIT, IO_STATUS, NGRPS, I, J, NCOLS
72 integer(kind=int32),
allocatable :: INDICES_TMP(:), TITLE_LOC(:), num_array(:)
74 integer(kind=int32),
intent(in),
optional :: N
76 write(error_unit,
'(a)') prompt//
"Reading in "//trim(filename)//
"." 79 inquire(file=trim(filename), exist=ex)
80 if (ex .eqv. .false.)
call error_stop_program(
"The specified index file '"//trim(filename)//
"' does not exist.")
83 open(newunit=index_file_unit, file=trim(filename), status=
"old")
84 read(index_file_unit,
'(a)', iostat=io_status) line
85 if (index(line,
"[") .eq. 0)
call error_stop_program(
"The specified index file '"&
86 //trim(filename)//
"' is not a valid index file.")
89 rewind index_file_unit
92 do while (io_status .eq. 0)
93 read(index_file_unit,
'(a)', iostat=io_status) line
94 if (io_status .ne. 0)
goto 100
95 if (index(line,
"[") .ne. 0) ngrps = ngrps + 1
100 if (
allocated(this%group))
deallocate(this%group)
101 allocate(this%group(ngrps), title_loc(ngrps+1))
104 rewind index_file_unit
108 do while (io_status .eq. 0)
110 read(index_file_unit,
'(a)', iostat=io_status) line
111 if (io_status .ne. 0)
goto 200
112 if (index(line,
"[") .ne. 0)
then 113 this%group(i)%title = trim(line(index(line,
"[")+2:index(line,
"]")-2))
123 if (this%group(1)%title .ne.
"System")
call error_stop_program(
"The specified index file '"&
124 //trim(filename)//
"' does not have 'System' group as first group.")
130 allocate(num_array(ncols))
132 do while (io_status .ne. 0)
134 write(ncols_string,
'(i0)') ncols
135 write(fmt_string,
'(a)')
'('//trim(ncols_string)//
'i0)' 136 rewind index_file_unit
137 read(index_file_unit,
'(a)', iostat=io_status) line
138 read(index_file_unit,
'(a)', iostat=io_status) line
139 read(line, *, iostat=io_status) num_array(1:ncols)
146 allocate(indices_tmp(n))
151 this%group(i)%NUMATOMS = (title_loc(i+1)-title_loc(i)-1)*ncols + 1
153 if (n < this%group(i)%NUMATOMS) this%group(i)%NUMATOMS = n + 1
156 do while (io_status .ne. 0)
159 rewind index_file_unit
160 this%group(i)%NUMATOMS = this%group(i)%NUMATOMS - 1
161 if (this%group(i)%NUMATOMS .le. 0)
then 162 this%group(i)%NUMATOMS = 0
167 do j = 1, title_loc(i);
read(index_file_unit,
'(a)', iostat=io_status) line;
end do 170 read(index_file_unit, *, iostat=io_status) indices_tmp(1:this%group(i)%NUMATOMS)
175 allocate(this%group(i)%LOC(1:this%group(i)%NUMATOMS), source=indices_tmp(1:this%group(i)%NUMATOMS))
180 deallocate(indices_tmp)
185 if (this%group(i)%title .eq. this%group(j)%title)
then 187 write(error_unit,
'(a, a, a)') prompt//
"WARNING: Index group ", this%group(i)%title, &
188 " was specified more than once in index file." 198 if (this%group(1)%numatoms .ne. n .or. this%group(1)%loc(this%group(1)%numatoms) .ne. n)
then 199 call error_stop_program(
"Index file does not match DCD file.")
206 if (this%group(i)%numatoms .gt. n)
call error_stop_program(
"Index file does not match DCD file.")
209 do j = 1, this%group(i)%numatoms
210 if (this%group(i)%loc(j) .gt. n)
call error_stop_program(
"Index file does not match dcd file.")
216 close(index_file_unit)
218 write(error_unit,
'(a,i0,a)') prompt//
"Read in ", ngrps,
" index groups."