bug fix in SCcorr gradient
[unres4.git] / source / unres / REMD_data.f90
1       module REMD_data
2 !-----------------------------------------------------------------------------
3 ! Maximum number of conformation stored in cache on each CPU before sending
4 ! to master; depends on nstex / ntwx ratio
5       integer,parameter :: max_cache_traj=10
6 !-----------------------------------------------------------------------------
7 ! commom.remd
8 !      common /remdcommon/
9       integer :: nrep,nstex,i_sync_step
10       real(kind=8) :: retmin,retmax
11       real(kind=8),dimension(:),allocatable :: remd_t !(maxprocs)
12       logical :: remd_tlist,remd_mlist,mremdsync,restart1file,traj1file
13       integer,dimension(:),allocatable :: remd_m !(maxprocs)
14 !      common /remdrestart/
15       integer(kind=2),dimension(:),allocatable :: i2rep !,i2set !(0:maxprocs)
16 !      common /traj1cache/
17       integer :: max_cache_traj_use
18 !-----------------------------------------------------------------------------
19 !      common /przechowalnia/ subroutines: friction_force,setup_fricmat
20 !      real(kind=8),dimension(:,:),allocatable :: ginvfric !(2*nres,2*nres) !maxres2=2*maxres
21 !-----------------------------------------------------------------------------
22 !      common /przechowalnia/ subroutine: setup_fricmat
23 !      real(kind=8),dimension(:,:),allocatable :: fcopy !(2*nres,2*nres)
24 !-----------------------------------------------------------------------------
25 !-----------------------------------------------------------------------------
26       end module REMD_data