mailr5765 - /1.3/opendx/base_map.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 16, 2008 - 16:42:
Author: bugman
Date: Wed Apr 16 16:42:27 2008
New Revision: 5765

URL: http://svn.gna.org/viewcvs/relax?rev=5765&view=rev
Log:
Renamed all refs to 'file' to 'file_prefix'.


Modified:
    1.3/opendx/base_map.py

Modified: 1.3/opendx/base_map.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/opendx/base_map.py?rev=5765&r1=5764&r2=5765&view=diff
==============================================================================
--- 1.3/opendx/base_map.py (original)
+++ 1.3/opendx/base_map.py Wed Apr 16 16:42:27 2008
@@ -34,7 +34,7 @@
 class Base_Map:
     """The space mapping base class."""
 
-    def __init__(self, params, spin_id, index, inc, lower, upper, axis_incs, 
file, dir, point, point_file, remap):
+    def __init__(self, params, spin_id, index, inc, lower, upper, axis_incs, 
file_prefix, dir, point, point_file, remap):
         """Map the space upon class instantiation."""
 
         # Initialise.
@@ -47,7 +47,7 @@
         self.n = len(params)
         self.inc = inc
         self.axis_incs = axis_incs
-        self.file = file
+        self.file_prefix = file_prefix
         self.dir = dir
         self.point_file = point_file
         self.remap = remap
@@ -143,7 +143,7 @@
         print "\nCreating the OpenDX .cfg program configuration file."
 
         # Open the file.
-        config_file = 
self.relax.IO.open_write_file(file_name=self.file+".cfg", dir=self.dir, 
force=1)
+        config_file = 
self.relax.IO.open_write_file(file_name=self.file_prefix+".cfg", 
dir=self.dir, force=1)
 
         # Get the text of the configuration file.
         text = self.config_text()
@@ -162,7 +162,7 @@
         print "\nCreating the OpenDX .general file."
 
         # Open the file.
-        general_file = 
self.relax.IO.open_write_file(file_name=self.file+".general", dir=self.dir, 
force=1)
+        general_file = 
self.relax.IO.open_write_file(file_name=self.file_prefix+".general", 
dir=self.dir, force=1)
 
         # Get the text of the configuration file.
         text = self.general_text()
@@ -181,7 +181,7 @@
         print "\nCreating the map."
 
         # Open the file.
-        map_file = self.relax.IO.open_write_file(file_name=self.file, 
dir=self.dir, force=1)
+        map_file = self.relax.IO.open_write_file(file_name=self.file_prefix, 
dir=self.dir, force=1)
 
         # Generate and write the text of the map.
         self.map_text(map_file)
@@ -239,7 +239,7 @@
         print "\nCreating the OpenDX .net program file."
 
         # Open the file.
-        program_file = 
self.relax.IO.open_write_file(file_name=self.file+".net", dir=self.dir, 
force=1)
+        program_file = 
self.relax.IO.open_write_file(file_name=self.file_prefix+".net", 
dir=self.dir, force=1)
 
         # Create the strings associated with the map axes.
         self.map_axes()




Related Messages


Powered by MHonArc, Updated Wed Apr 16 17:00:20 2008