1 ******************************************************************
3 * Array dimensions for level-based conformation comparison program:
5 * Max. number of conformations in the data set.
8 PARAMETER (MAXCONF=maxstr_proc)
10 * Max. number levels of comparison
13 PARAMETER (MAXLEVEL=3)
15 * Max. number of fragments at a given level of comparison
17 integer maxfrag,mmaxfrag
18 PARAMETER (MAXFRAG=30,MMAXFRAG=MAXFRAG*(MAXFRAG+1)/2)
20 * Max. number of pieces forming a substructure to be compared
23 PARAMETER (MAXPIECE=20)
25 *******************************************************************