1 C-----------------------------------------------------------------------
2 C I/O units used by the program
3 C-----------------------------------------------------------------------
4 C 9/18/99 - unit ifourier and filename fouriername included to identify
5 C the file from which the coefficients of second-order Fourier expansion
6 C of the local-interaction energy are read.
7 C 8/9/01 - file for SCP interaction constants named scpname (unit iscpp)
9 C-----------------------------------------------------------------------
10 C General I/O units & files
11 integer inp,iout,igeom,intin,ipdb,imol2,ipdbin,ithep,irotam,
12 & itorp,itordp,ifourier,ielep,isidep,iscpp,isccor,icbase,
13 & istat,ientin,ientout,isidep1,ibond,ihist,izsc,idistr
14 common /iounits/ inp,iout,igeom,intin,ipdb,imol2,ipdbin,ithep,
15 & irotam,itorp,itordp,ifourier,ielep,isidep,iscpp,isccor,
16 & icbase,istat,ientin,ientout,isidep1,ibond,ihist,izsc,
18 character*256 outname,intname,pdbname,mol2name,statname,intinname,
19 & entname,restartname,prefix,scratchdir,sidepname,pdbfile,
21 common /fnames/ outname,intname,pdbname,mol2name,statname,
22 & intinname,entname,restartname,prefix,pot,scratchdir,
23 & sidepname,pdbfile,histname,zscname
25 character*256 bondname,thetname,rotname,torname,tordname,
26 & fouriername,elename,sidename,scpname,sccorname,patname
27 common /parfiles/ thetname,rotname,torname,tordname,bondname,
28 & fouriername,elename,sidename,scpname,sccorname,patname
30 C-----------------------------------------------------------------------
31 C INP - main input file
33 C IGEOM - geometry output in the form of virtual-chain internal coordinates
34 C INTIN - geometry input (for multiple conformation processing) in int. coords.
35 C IPDB - Cartesian-coordinate output in PDB format
36 C IMOL2 - Cartesian-coordinate output in Tripos mol2 format
37 C IPDBIN - PDB input file
38 C ITHEP - virtual-bond torsional angle parametrs
39 C IROTAM - side-chain geometry and local-interaction parameters
40 C ITORP - torsional parameters
41 C ITORDP - double torsional parameters
42 C IFOURIER - coefficients of the expansion of local-interaction energy
43 C IELEP - electrostatic-interaction parameters
44 C ISIDEP - side-chain interaction parameters.
45 C ISCPP - SCp interaction parameters.
46 C IBOND - virtual-bond constant parameters and moments of inertia.
47 C ISCCOR - parameters of the potential of SCCOR term
48 C ICBASE - data base with Cartesian coords of known structures.
49 C ISTAT - energies and other conf. characteristics from an MCM run.
50 C IENTIN - entropy from preceding simulation(s) to be read in.
51 C-----------------------------------------------------------------------