Ejemplo n.º 1
0
        private void initIOSettings()
        {
            selectedEntry = new IntegerIOSetting("SelectedEntry", IOSetting.LOW, "Which entry should I read?", "1");

            readSecondaryFiles = new BooleanIOSetting("ReadSecondaryFiles", IOSetting.LOW, "Should I read the secondary files (if available)?", "true");

            //UPGRADE_TODO: Method 'java.lang.System.getProperty' was converted to 'System.Environment.GetEnvironmentVariable' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javalangSystemgetProperty_javalangString'"
            //UPGRADE_TODO: Method 'java.lang.System.getProperty' was converted to 'System.IO.Path.DirectorySeparatorChar.ToString' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javalangSystemgetProperty_javalangString'"
            readSecondaryDir = new StringIOSetting("ReadSecondaryDir", IOSetting.LOW, "Where can the secondary files be found?", System.Environment.GetEnvironmentVariable("userprofile") + System.IO.Path.DirectorySeparatorChar.ToString());
        }
Ejemplo n.º 2
0
 private void initIOSettings()
 {
     deduceBonding = new BooleanIOSetting("DeduceBonding", IOSetting.LOW, "Should the PDBReader deduce bonding patterns?", "true");
     useRebondTool = new BooleanIOSetting("UseRebondTool", IOSetting.LOW, "Should the RebondTool be used (or a heuristic approach otherwise)?", "true");
     readConnect = new BooleanIOSetting("ReadConnectSection", IOSetting.LOW, "Should the CONECT be read?", "true");
 }
Ejemplo n.º 3
0
 /// <summary> Description of the Method</summary>
 private void initIOSettings()
 {
     readOptimizedStructureOnly = new BooleanIOSetting("ReadOptimizedStructureOnly", IOSetting.LOW, "Should I only read the optimized structure from a geometry optimization?", "false");
 }