[Swift-commit] r5865 - SwiftApps/rmsd

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Thu Jul 19 15:16:29 CDT 2012


Author: davidk
Date: 2012-07-19 15:16:29 -0500 (Thu, 19 Jul 2012)
New Revision: 5865

Modified:
   SwiftApps/rmsd/rmsd.swift
Log:
Fix for variable scope messages


Modified: SwiftApps/rmsd/rmsd.swift
===================================================================
--- SwiftApps/rmsd/rmsd.swift	2012-07-19 18:02:19 UTC (rev 5864)
+++ SwiftApps/rmsd/rmsd.swift	2012-07-19 20:16:29 UTC (rev 5865)
@@ -1,8 +1,8 @@
 type file;
 
-app (file output, file error) rmsd (float b1, float b2, string b1name, string b2name, file namd_input, file namd_params, file vmd_script)
+app (file o, file e) rmsd (float b1_val, float b2_val, string b1_name, string b2_name, file namd_input_file, file namd_params_file, file vmd_script_file)
 {
-  rmsd b1 b2 b1name b2name @namd_input @namd_params @vmd_script stdout=@output stderr=@error;
+  rmsd b1_val b2_val b1_name b2_name @namd_input_file @namd_params_file @vmd_script_file stdout=@o stderr=@e;
 }
 
 # Bead names




More information about the Swift-commit mailing list