source: sasview/theoryview/perspectives/theory/models.py @ 000b025

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 000b025 was f53444be, checked in by Gervaise Alina <gervyh@…>, 14 years ago

remove reference of guicomm

  • Property mode set to 100644
File size: 16.1 KB
Line 
1
2"""
3This module collects models from sans.models packages and orders theses models
4by categories that GUI application understands and uses.
5
6"""
7
8import imp
9import os
10import sys
11import math
12# Time is needed by the log method
13import time
14import os.path
15import wx
16import wx.lib.newevent
17from sans.guiframe.events import StatusEvent 
18# Explicitly import from the pluginmodel module so that py2exe
19# places it in the distribution. The Model1DPlugin class is used
20# as the base class of plug-in models.
21from sans.models.pluginmodel import Model1DPlugin
22
23(ModelEvent, EVT_MODEL) = wx.lib.newevent.NewEvent()
24
25
26def log(message):
27    """
28    """
29    out = open("plugins.log", 'a')
30    out.write("%10g%s\n" % (time.clock(), message))
31    out.close()
32
33def findModels():
34    """
35    """
36    log("looking for models in: %s/plugins" % os.getcwd())
37    if os.path.isdir('plugins'):
38        return _findModels('plugins')
39    return []
40   
41def _check_plugin(model, name):
42    """
43    Do some checking before model adding plugins in the list
44   
45    :param model: class model to add into the plugin list
46    :param name: name of the module plugin
47   
48    :return model: model if valid model or None if not valid
49   
50    """
51    #Check is the plugin is of type Model1DPlugin
52    if not issubclass(model, Model1DPlugin):
53        msg= "Plugin %s must be of type Model1DPlugin \n"%str(name)
54        log(msg)
55        return None
56    if model.__name__!="Model":
57        msg= "Plugin %s class name must be Model \n"%str(name)
58        log(msg)
59        return None
60    try:
61        new_instance= model()
62    except:
63        msg="Plugin %s error in __init__ \n\t: %s %s\n"%(str(name),
64                                    str(sys.exc_type),sys.exc_value)
65        log(msg)
66        return None
67   
68    new_instance= model() 
69    if hasattr(new_instance,"function"):
70        try:
71           value=new_instance.function()
72        except:
73           msg="Plugin %s: error writing function \n\t :%s %s\n "%(str(name),
74                                    str(sys.exc_type),sys.exc_value)
75           log(msg)
76           return None
77    else:
78       msg="Plugin  %s needs a method called function \n"%str(name)
79       log(msg)
80       return None
81    return model
82 
83 
84def _findModels(dir):
85    """
86    """
87    # List of plugin objects
88    plugins = []
89    # Go through files in plug-in directory
90    try:
91        list = os.listdir(dir)
92        for item in list:
93            toks = os.path.splitext(os.path.basename(item))
94            if toks[1]=='.py' and not toks[0]=='__init__':
95                name = toks[0]
96           
97                path = [os.path.abspath(dir)]
98                file = None
99                try:
100                    (file, path, info) = imp.find_module(name, path)
101                    module = imp.load_module( name, file, item, info )
102                    if hasattr(module, "Model"):
103                        try:
104                            if _check_plugin(module.Model, name)!=None:
105                                plugins.append(module.Model)
106                        except:
107                            msg="Error accessing Model"
108                            msg+="in %s\n  %s %s\n" % (name,
109                                    str(sys.exc_type), sys.exc_value)
110                            log(msg)
111                except:
112                    msg="Error accessing Model"
113                    msg +=" in %s\n  %s %s \n" %(name,
114                                    str(sys.exc_type), sys.exc_value)
115                    log(msg)
116                finally:
117             
118                    if not file==None:
119                        file.close()
120    except:
121        # Don't deal with bad plug-in imports. Just skip.
122        pass
123    return plugins
124
125class ModelList(object):
126    """
127    Contains dictionary of model and their type
128   
129    """
130    def __init__(self):
131        self.mydict={}
132       
133    def set_list(self, name, mylist):
134        """
135       
136        :param name: the type of the list
137        :param mylist: the list to add
138       
139        """
140        if name not in self.mydict.keys():
141            self.mydict[name] = mylist
142           
143           
144    def get_list(self):
145        """
146        return all the list stored in a dictionary object
147        """
148        return self.mydict
149       
150class ModelManager:
151    """
152    ModelManager collected model classes object of available into a
153    dictionary of models' names and models' classes.
154   
155    """
156    ## external dict for models
157    model_combobox = ModelList()
158    ## Dictionary of form models
159    form_factor_dict = {}
160    ## dictionary of other
161    struct_factor_dict = {}
162    ##list of form factors
163    shape_list =[]
164    ## independent shape model list
165    shape_indep_list = []
166    ##list of structure factors
167    struct_list= []
168    ##list of model allowing multiplication
169    multiplication_factor=[]
170    ##list of multifunctional shapes
171    multi_func_list =[]
172    ## list of added models
173    plugins=[]
174    ## Event owner (guiframe)
175    event_owner = None
176   
177    def _getModelList(self):
178        """
179        Fill up lists of models available by default
180        for the current application
181   
182        :return: the next free event ID following the new menu events
183       
184        """
185        ## form factor
186        from sans.models.SphereModel import SphereModel
187        self.shape_list.append(SphereModel)
188        self.multiplication_factor.append(SphereModel)
189             
190        from sans.models.BinaryHSModel import BinaryHSModel
191        self.shape_list.append(BinaryHSModel)
192       
193        from sans.models.FuzzySphereModel import FuzzySphereModel
194        self.shape_list.append(FuzzySphereModel)
195        self.multiplication_factor.append(FuzzySphereModel)
196           
197        from sans.models.CoreShellModel import CoreShellModel
198        self.shape_list.append(CoreShellModel)
199        self.multiplication_factor.append(CoreShellModel)
200       
201        from sans.models.CoreMultiShellModel import CoreMultiShellModel
202        self.shape_list.append(CoreMultiShellModel)
203        self.multiplication_factor.append(CoreMultiShellModel)
204        self.multi_func_list.append(CoreMultiShellModel)
205
206        from sans.models.VesicleModel import VesicleModel
207        self.shape_list.append(VesicleModel)
208        self.multiplication_factor.append(VesicleModel)
209       
210        from sans.models.MultiShellModel import MultiShellModel
211        self.shape_list.append(MultiShellModel)
212        self.multiplication_factor.append(MultiShellModel)
213       
214        from sans.models.OnionExpShellModel import OnionExpShellModel
215        self.shape_list.append(OnionExpShellModel)
216        self.multiplication_factor.append(OnionExpShellModel)
217        self.multi_func_list.append(OnionExpShellModel) 
218       
219        from sans.models.SphericalSLDModel import SphericalSLDModel
220        self.shape_list.append(SphericalSLDModel)
221        self.multiplication_factor.append(SphericalSLDModel)
222        self.multi_func_list.append(SphericalSLDModel)
223       
224       
225        from sans.models.CylinderModel import CylinderModel
226        self.shape_list.append(CylinderModel)
227        self.multiplication_factor.append(CylinderModel)
228       
229        from sans.models.CoreShellCylinderModel import CoreShellCylinderModel
230        self.shape_list.append(CoreShellCylinderModel)
231        self.multiplication_factor.append(CoreShellCylinderModel)
232       
233        from sans.models.HollowCylinderModel import HollowCylinderModel
234        self.shape_list.append(HollowCylinderModel)
235        self.multiplication_factor.append(HollowCylinderModel)
236             
237        from sans.models.FlexibleCylinderModel import FlexibleCylinderModel
238        self.shape_list.append(FlexibleCylinderModel)
239
240        from sans.models.FlexCylEllipXModel import FlexCylEllipXModel
241        self.shape_list.append(FlexCylEllipXModel)
242       
243        from sans.models.StackedDisksModel import StackedDisksModel
244        self.shape_list.append(StackedDisksModel)
245        self.multiplication_factor.append(StackedDisksModel)
246       
247        from sans.models.ParallelepipedModel import ParallelepipedModel
248        self.shape_list.append(ParallelepipedModel)
249        self.multiplication_factor.append(ParallelepipedModel)
250       
251        from sans.models.CSParallelepipedModel import CSParallelepipedModel
252        self.shape_list.append(CSParallelepipedModel)
253        self.multiplication_factor.append(CSParallelepipedModel)
254       
255        from sans.models.EllipticalCylinderModel import EllipticalCylinderModel
256        self.shape_list.append(EllipticalCylinderModel)
257        self.multiplication_factor.append(EllipticalCylinderModel)
258       
259        from sans.models.BarBellModel import BarBellModel
260        self.shape_list.append(BarBellModel)
261        # not implemeted yet!
262        #self.multiplication_factor.append(BarBellModel)
263       
264        from sans.models.CappedCylinderModel import CappedCylinderModel
265        self.shape_list.append(CappedCylinderModel)
266        # not implemeted yet!
267        #self.multiplication_factor.append(CappedCylinderModel)
268       
269        from sans.models.EllipsoidModel import EllipsoidModel
270        self.shape_list.append(EllipsoidModel)
271        self.multiplication_factor.append(EllipsoidModel)
272     
273        from sans.models.CoreShellEllipsoidModel import CoreShellEllipsoidModel
274        self.shape_list.append(CoreShellEllipsoidModel)
275        self.multiplication_factor.append(CoreShellEllipsoidModel)
276         
277        from sans.models.TriaxialEllipsoidModel import TriaxialEllipsoidModel
278        self.shape_list.append(TriaxialEllipsoidModel)
279        self.multiplication_factor.append(TriaxialEllipsoidModel)
280       
281        from sans.models.LamellarModel import LamellarModel
282        self.shape_list.append(LamellarModel)
283       
284        from sans.models.LamellarFFHGModel import LamellarFFHGModel
285        self.shape_list.append(LamellarFFHGModel)
286       
287        from sans.models.LamellarPSModel import LamellarPSModel
288        self.shape_list.append(LamellarPSModel)
289     
290        from sans.models.LamellarPSHGModel import LamellarPSHGModel
291        self.shape_list.append(LamellarPSHGModel)
292       
293        from sans.models.LamellarPCrystalModel import LamellarPCrystalModel
294        self.shape_list.append(LamellarPCrystalModel)
295       
296        from sans.models.SCCrystalModel import SCCrystalModel
297        self.shape_list.append(SCCrystalModel)
298       
299        from sans.models.FCCrystalModel import FCCrystalModel
300        self.shape_list.append(FCCrystalModel)
301       
302        from sans.models.BCCrystalModel import BCCrystalModel
303        self.shape_list.append(BCCrystalModel)
304     
305        ## Structure factor
306        from sans.models.SquareWellStructure import SquareWellStructure
307        self.struct_list.append(SquareWellStructure)
308       
309        from sans.models.HardsphereStructure import HardsphereStructure
310        self.struct_list.append(HardsphereStructure)
311         
312        from sans.models.StickyHSStructure import StickyHSStructure
313        self.struct_list.append(StickyHSStructure)
314       
315        from sans.models.HayterMSAStructure import HayterMSAStructure
316        self.struct_list.append(HayterMSAStructure)
317       
318       
319        ##shape-independent models
320           
321        from sans.models.PowerLawAbsModel import PowerLawAbsModel
322        self.shape_indep_list.append( PowerLawAbsModel )
323       
324        from sans.models.BEPolyelectrolyte import BEPolyelectrolyte
325        self.shape_indep_list.append(BEPolyelectrolyte )
326        self.form_factor_dict[str(wx.NewId())] =  [SphereModel]
327       
328        from sans.models.BroadPeakModel import BroadPeakModel
329        self.shape_indep_list.append(BroadPeakModel)
330       
331        from sans.models.CorrLengthModel import CorrLengthModel
332        self.shape_indep_list.append(CorrLengthModel)
333       
334        from sans.models.DABModel import DABModel
335        self.shape_indep_list.append(DABModel )
336       
337        from sans.models.DebyeModel import DebyeModel
338        self.shape_indep_list.append(DebyeModel )
339       
340        #FractalModel (a c-model)is now being used instead of FractalAbsModel.
341        from sans.models.FractalModel import FractalModel
342        self.shape_indep_list.append(FractalModel )
343       
344        from sans.models.FractalCoreShellModel import FractalCoreShellModel
345        self.shape_indep_list.append(FractalCoreShellModel )
346       
347        from sans.models.GaussLorentzGelModel import GaussLorentzGelModel
348        self.shape_indep_list.append(GaussLorentzGelModel) 
349               
350        from sans.models.GuinierModel import GuinierModel
351        self.shape_indep_list.append(GuinierModel )
352       
353        from sans.models.GuinierPorodModel import GuinierPorodModel
354        self.shape_indep_list.append(GuinierPorodModel )
355
356        from sans.models.LorentzModel import LorentzModel
357        self.shape_indep_list.append( LorentzModel) 
358       
359        from sans.models.PeakGaussModel import PeakGaussModel
360        self.shape_indep_list.append(PeakGaussModel)
361       
362        from sans.models.PeakLorentzModel import PeakLorentzModel
363        self.shape_indep_list.append(PeakLorentzModel)
364       
365        from sans.models.Poly_GaussCoil import Poly_GaussCoil
366        self.shape_indep_list.append(Poly_GaussCoil)
367       
368        from sans.models.PolymerExclVolume import PolymerExclVolume
369        self.shape_indep_list.append(PolymerExclVolume)
370       
371        from sans.models.PorodModel import PorodModel
372        self.shape_indep_list.append(PorodModel )     
373       
374        from sans.models.RPA10Model import RPA10Model
375        self.shape_indep_list.append(RPA10Model)
376        self.multi_func_list.append(RPA10Model)
377       
378        from sans.models.TeubnerStreyModel import TeubnerStreyModel
379        self.shape_indep_list.append(TeubnerStreyModel )
380       
381        from sans.models.TwoLorentzianModel import TwoLorentzianModel
382        self.shape_indep_list.append(TwoLorentzianModel )
383       
384        from sans.models.TwoPowerLawModel import TwoPowerLawModel
385        self.shape_indep_list.append(TwoPowerLawModel )
386       
387        from sans.models.UnifiedPowerRgModel import UnifiedPowerRgModel
388        self.shape_indep_list.append(UnifiedPowerRgModel )
389        self.multi_func_list.append(UnifiedPowerRgModel)
390       
391        from sans.models.LineModel import LineModel
392        self.shape_indep_list.append(LineModel)
393       
394        from sans.models.ReflectivityModel import ReflectivityModel
395        self.multi_func_list.append(ReflectivityModel)
396       
397        from sans.models.ReflectivityIIModel import ReflectivityIIModel
398        self.multi_func_list.append(ReflectivityIIModel)
399       
400        #Looking for plugins
401        self.plugins = findModels()
402        self._get_multifunc_models()
403        self.plugins.append(ReflectivityModel)
404        self.plugins.append(ReflectivityIIModel)
405        return 0
406
407    def get_model_list(self):   
408        """
409        :return: dictionary of models for fitpanel use
410       
411        """
412        self._getModelList()
413        self.model_combobox.set_list("Shapes", self.shape_list)
414        self.model_combobox.set_list("Shape-Independent", self.shape_indep_list)
415        self.model_combobox.set_list("Structure Factors", self.struct_list)
416        self.model_combobox.set_list("Customized Models", self.plugins)
417        self.model_combobox.set_list("P(Q)*S(Q)", self.multiplication_factor)
418        self.model_combobox.set_list("multiplication", self.multiplication_factor)
419        self.model_combobox.set_list("Multi-Functions", self.multi_func_list)
420        return self.model_combobox
421       
422    def _get_multifunc_models(self):
423        """
424        Get the multifunctional models
425        """
426        for item in self.plugins:
427            try:
428                # check the multiplicity if any
429                if item.multiplicity_info[0] > 1:
430                    self.multi_func_list.append(item)
431            except:
432                # pass to other items
433                pass
Note: See TracBrowser for help on using the repository browser.