def injectFile(self,coordinates_file):
   """
   Reads in a coordinates file as a list of dictionary with 
   the following keys (stuff in parenthesis are comments and not part of the key):
    x
    y
    z
    p_x 
    p_y 
    p_z 
   """
   MyDataTable.injectFile(self,coordinates_file,delimiter="\s+")
Beispiel #2
0
 def injectFile(self,filepath,adjust_step_number=0):
   step_number_field = self.getFieldByName("step number")
   step_number_field.adjust = adjust_step_number
   MyDataTable.injectFile(self,filepath,delimiter="\s+")