bug fix in SCcorr gradient
[unres4.git] / source / unres / io_units.f90
1       module io_units
2 !-----------------------------------------------------------------------
3 ! common.iounits
4 ! I/O units used by the program
5 !-----------------------------------------------------------------------
6 ! 9/18/99 - unit ifourier and filename fouriername included to identify
7 ! the file from which the coefficients of second-order Fourier expansion
8 ! of the local-interaction energy are read.
9 ! 8/9/01 - file for SCP interaction constants named scpname (unit iscpp)
10 ! included.
11 !-----------------------------------------------------------------------
12 ! General I/O units & files
13 !      common /iounits/
14       integer :: inp,iout,igeom,intin,ipdb,imol2,ipdbin,ithep,irotam,&
15        itorp,itordp,ifourier,ielep,isidep,iscpp,icbase,istat,ientin,&
16        ientout,izs1,isecpred,ibond,irest2,iifrag,icart,irest1,isccor,&
17        ithep_pdb,irotam_pdb
18 #ifdef WHAM_RUN
19 ! el wham iounits
20       integer :: isidep1,ihist,iweight,izsc,idistr
21 #endif
22 !      common /fnames/
23       character(len=256) :: outname,intname,pdbname,mol2name,statname,&
24        intinname,entname,prefix,secpred,rest2name,qname,cartname,&
25        tmpdir,mremd_rst_name,curdir,pref_orig
26
27 !#ifdef WHAM_RUN
28 ! el wham iounits
29       character(len=256) :: restartnam,scratchdir,sidepname,pdbfile,&
30                             histname,zscname
31       character(len=4) :: liczba
32       character(len=3) :: pot
33 !#endif
34 ! Parameter files
35 !      common /parfiles/
36       character(len=256) :: bondname,thetname,rotname,torname,tordname,&
37        fouriername,elename,sidename,scpname,sccorname,patname,&
38        thetname_pdb,rotname_pdb
39 !-----------------------------------------------------------------------
40 ! INP    - main input file
41 ! IOUT   - list file
42 ! IGEOM  - geometry output in the form of virtual-chain internal coordinates
43 ! INTIN  - geometry input (for multiple conformation processing) in int. coords.
44 ! IPDB   - Cartesian-coordinate output in PDB format
45 ! IMOL2  - Cartesian-coordinate output in Tripos mol2 format
46 ! IPDBIN - PDB input file
47 ! ITHEP  - virtual-bond torsional angle parametrs
48 ! IROTAM - side-chain geometry and local-interaction parameters
49 ! ITORP  - torsional parameters
50 ! ITORDP  - double torsional parameters
51 ! IFOURIER - coefficients of the expansion of local-interaction energy 
52 ! IELEP  - electrostatic-interaction parameters
53 ! ISIDEP - side-chain interaction parameters.
54 ! ISCPP  - SCp interaction parameters.
55 ! IBOND  - virtual-bond constant parameters and moments of inertia.
56 ! ISCCOR - parameters of the potential of SCCOR term
57 ! ICBASE - data base with Cartesian coords of known structures.
58 ! ISTAT  - energies and other conf. characteristics from an MCM run.
59 ! IENTIN - entropy from preceeding simulation(s) to be read in.
60 ! SECPRED - SECONDARY STRUCTURE PREDICTION for dihedral constraint generation.
61 !-----------------------------------------------------------------------------
62 !-----------------------------------------------------------------------------
63       end module io_units