Skip to content

Commit 38d4df9

Browse files
committed
reset reciprocal lattice reading multiframe coordinate files
1 parent 7e27c0a commit 38d4df9

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

source/0README

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
SOURCE Directory for the Tinker Package
44
#######################################
55

6-
This directory contains Fortran source code for the current
7-
version of the Tinker program package.
6+
This directory contains Fortran source code for the current version
7+
of the Tinker program package.
88

9-
The code is in a standard Fortran dialect that should compile
10-
unchanged on most machines. Script files to build the package
11-
on a variety of systems are in subdirectories named for the
12-
machine/operating system. A Makefile is also provided.
9+
The code is in standard Fortran and should compile unchanged on most
10+
systems. Script files to build the package on a variety of machines
11+
are in subdirectories named for machine/operating systems. Makefiles
12+
and scripts for use of cmake are also provided.
1313

14-
Only a few source files may require editing prior to building:
15-
"sizes.f" which contains some master array dimensions used
16-
throughout the package, and "openend.f" which is a system
17-
dependent routine to open a file at the end.
14+
Only a few source files may require editing prior to building. These
15+
are "sizes.f" which contains master array dimensions used throughout
16+
the package, and "openend.f" which is a system dependent routine to
17+
open a file at the end.
1818

19-
If you are building an OpenMP-capable version of Tinker with
20-
the Intel Fortran compiler, then it is necessary to uncomment
21-
the calls to Intel-specific extensions "kmp_set_stacksize_s"
22-
and "kmp_set_blocksize" near the top of the file "initial.f".
19+
If you are building an OpenMP-capable Tinker version with the Intel
20+
Fortran compiler, then it is necessary to uncomment the calls to
21+
Intel-specific routines "kmp_set_stacksize_s" and "kmp_set_blocksize"
22+
near the top of the file "initial.f".
2323

24-
In addition, if your system does not support the iargc/getarg
25-
mechanism for command line arguments, then comment out the
26-
call to the subroutine "command" at the bottom of "initial.f".
24+
Also, if your system does not support the iargc/getarg mechanism
25+
for command line arguments, then comment the call to the subroutine
26+
"command" at the bottom of "initial.f".
2727

source/readxyz.f

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ subroutine readxyz (ixyz)
190190
if (atmp .eq. 0.0d0) alpha = 90.0d0
191191
if (btmp .eq. 0.0d0) beta = 90.0d0
192192
if (gtmp .eq. 0.0d0) gamma = 90.0d0
193+
call lattice
193194
end if
194195
end if
195196
end if

0 commit comments

Comments
 (0)