Ignore:
Timestamp:
Jun 25, 2012 9:07:41 AM (12 years ago)
Author:
Kieran Campbell <kieranrcampbell@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
33c671e
Parents:
f8be87d
Message:

Updated python wrapping to automatically generate c_models.cpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/python_wrapper/WrapperGenerator.py

    r0ea247e r0a9686d  
    9393        self.output_dir = output_dir 
    9494        self.c_wrapper_dir = c_wrapper_dir 
     95 
    9596         
    9697         
     
    201202                     
    202203                 
    203                  
     204      
    204205        for line in lines: 
    205206             
     
    209210                try: 
    210211                    index = line.index(key) 
    211                     #toks = string.split( line[index:], "=" ) 
    212212                    toks = line[index:].split("=" ) 
    213213                    self.pythonClass = toks[1].lstrip().rstrip() 
     214 
    214215                except: 
    215216                    raise ValueError, "Could not parse file %s" % self.file 
     
    287288                except: 
    288289                    raise ValueError, "Could not parse file %s" % self.file 
    289                 
    290          
    291                  
     290 
    292291    def write_c_wrapper(self): 
    293292        """ Writes the C file to create the python extension class  
     
    495494        return newline 
    496495         
    497          
     496    def getModelName(self): 
     497        return self.pythonClass 
     498         
     499 
     500 
    498501# main 
    499502if __name__ == '__main__': 
Note: See TracChangeset for help on using the changeset viewer.