-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings.java
More file actions
20 lines (16 loc) · 761 Bytes
/
Settings.java
File metadata and controls
20 lines (16 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.*;
import java.io.*;
/**
* Holds variables that control the behavior of the program.
*/
public class Settings
{
/** the directory containing the Dunbrack backbone-dependent rotamer data */
public static final String ROTAMER_LIBRARY_DIRECTORY = "rotamer_library/";
/** the probability below which rotamers will be ignored */
public static final double ROTAMER_LIBRARY_THRESHOLD = 0.01;
/** the file containing the omega data */
public static final String OMEGA_DATA_FILENAME = "omega/omegaCDL_OmegaBetweenAsPhi1Psi0_KernRegr_v1.3.1_Aug12-2011.txt";
/** the file containing the backbone-dependent Ramachandran data */
public static final String RAMACHANDRAN_DATA_FILENAME = "ramachandran/NDRD_TCB.txt.gz";
}