added source code
[unres.git] / source / cluster / wham / src-M / sizesclu.dat
1 ******************************************************************
2 *
3 * Array dimensions for the clustering programs:
4 *
5 * Max. number of conformations in the data set.
6 *
7       integer maxconf,maxstr_proc
8       PARAMETER (MAXCONF=13000)
9       parameter (maxstr_proc=maxconf/2)
10 *
11 * Max. number of "distances" between conformations.
12 *
13       integer MAXDIST
14       PARAMETER (MAXDIST=(maxstr_proc*(maxstr_proc-1))/2)
15 *
16 * Max. number of clusters. Should be set to MAXCONF; change only if there are
17 * problems with memory. In such a case be suspicious about the results, however!
18 *
19       integer maxgr
20       PARAMETER (MAXGR=maxstr_proc)
21 *
22 * Max. number of conformations in a cluster. Remark above applies also here.
23 *
24       integer maxingr
25       PARAMETER (MAXINGR=maxstr_proc)
26 *
27 * Max. number of cut-off values
28 *
29       integer max_cut
30       PARAMETER (MAX_CUT=5)
31 *
32 * Max. number of properties
33 *
34       integer maxprop
35       PARAMETER (MAXPROP=5)
36 *
37 *******************************************************************