Changeset 74755ff in sasview for theoryview/perspectives/theory


Ignore:
Timestamp:
Jun 2, 2010 10:17:18 AM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
6c79243
Parents:
a45622a
Message:

working on documentation theory view

Location:
theoryview/perspectives/theory
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • theoryview/perspectives/theory/basepage.py

    re071b1c r74755ff  
    3030class BasicPage(wx.ScrolledWindow): 
    3131    """ 
    32         This class provide general structure of  fitpanel page 
     32    This class provide general structure of  fitpanel page 
     33     
    3334    """ 
    3435     ## Internal name for the AUI manager 
     
    154155    class ModelTextCtrl(wx.TextCtrl): 
    155156        """ 
    156             Text control for model and fit parameters. 
    157             Binds the appropriate events for user interactions. 
    158             Default callback methods can be overwritten on initialization 
    159              
    160             @param kill_focus_callback: callback method for EVT_KILL_FOCUS event 
    161             @param set_focus_callback:  callback method for EVT_SET_FOCUS event 
    162             @param mouse_up_callback:   callback method for EVT_LEFT_UP event 
    163             @param text_enter_callback: callback method for EVT_TEXT_ENTER event 
     157        Text control for model and fit parameters. 
     158        Binds the appropriate events for user interactions. 
     159        Default callback methods can be overwritten on initialization 
     160         
     161        :param kill_focus_callback: callback method for EVT_KILL_FOCUS event 
     162        :param set_focus_callback:  callback method for EVT_SET_FOCUS event 
     163        :param mouse_up_callback:   callback method for EVT_LEFT_UP event 
     164        :param text_enter_callback: callback method for EVT_TEXT_ENTER event 
     165         
    164166        """ 
    165167        ## Set to True when the mouse is clicked while the whole string is selected 
     
    189191        def _on_set_focus(self, event): 
    190192            """ 
    191                 Catch when the text control is set in focus to highlight the whole 
    192                 text if necessary 
    193                 @param event: mouse event 
     193            Catch when the text control is set in focus to highlight the whole 
     194            text if necessary 
     195             
     196            :param event: mouse event 
    194197            """ 
    195198             
     
    202205        def _highlight_text(self, event): 
    203206            """ 
    204                 Highlight text of a TextCtrl only of no text has be selected 
    205                 @param event: mouse event 
     207            Highlight text of a TextCtrl only of no text has be selected 
     208             
     209            :param event: mouse event 
     210             
    206211            """ 
    207212            # Make sure the mouse event is available to other listeners 
     
    218223                        control.SetSelection(-1,-1) 
    219224                  
    220         
    221225    def onContextMenu(self, event):  
    222226        """ 
    223             Retrieve the state selected state 
    224         """ 
    225         # Skipping the save state functionality for release 0.9.0 
    226         #return 
    227      
     227        Retrieve the state selected state 
     228         
     229        """ 
    228230        pos = event.GetPosition() 
    229231        pos = self.ScreenToClient(pos) 
    230         
    231232        self.PopupMenu(self.popUpMenu, pos)  
    232233       
    233          
    234234    def onUndo(self, event): 
    235235        """ 
    236             Cancel the previous action 
    237         """ 
    238         #print "enable undo" 
     236        Cancel the previous action 
     237         
     238        """ 
    239239        event = PreviousStateEvent(page = self) 
    240240        wx.PostEvent(self.parent, event) 
    241          
    242          
     241     
    243242    def onRedo(self, event): 
    244243        """ 
    245             Restore the previous action cancelled  
    246         """ 
    247         #print "enable redo" 
     244        Restore the previous action canceled  
     245         
     246        """ 
    248247        event = NextStateEvent(page= self) 
    249248        wx.PostEvent(self.parent, event) 
    250          
    251          
     249     
    252250    def define_page_structure(self): 
    253251        """ 
    254             Create empty sizer for a panel 
     252        Create empty sizer for a panel 
     253         
    255254        """ 
    256255        self.vbox  = wx.BoxSizer(wx.VERTICAL) 
     
    282281    def set_layout(self): 
    283282        """ 
    284              layout 
     283         layout 
     284          
    285285        """ 
    286286        self.vbox.Layout() 
    287287        self.vbox.Fit(self)  
    288288        self.SetSizer(self.vbox) 
    289         
    290289        self.set_scroll() 
    291290        self.Centre() 
    292291         
    293          
    294292    def set_scroll(self): 
     293        """ 
     294        """ 
    295295        self.SetScrollbars(20,20,25,65) 
    296296        self.Layout()    
    297297        self.SetAutoLayout(True) 
    298298          
    299           
    300     def set_owner(self,owner): 
     299    def set_owner(self, owner): 
    301300        """  
    302             set owner of fitpage 
    303             @param owner: the class responsible of plotting 
     301        set owner of fitpage 
     302        @param owner: the class responsible of plotting 
    304303        """ 
    305304        self.event_owner = owner     
     
    308307    def set_manager(self, manager): 
    309308        """ 
    310              set panel manager 
    311              @param manager: instance of plugin fitting 
     309        set panel manager 
     310         
     311        :param manager: instance of plugin fitting 
    312312        """ 
    313313        self.manager = manager   
     
    316316    def populate_box(self, dict): 
    317317        """ 
    318              Store list of model 
    319              @param dict: dictionary containing list of models 
     318        Store list of model 
     319         
     320        :param dict: dictionary containing list of models 
     321         
    320322        """ 
    321323        self.model_list_box = dict 
    322324        self.state.model_list_box = self.model_list_box 
    323325             
    324      
    325          
    326326    def set_dispers_sizer(self): 
    327327        """ 
    328             fill sizer containing dispersity info 
     328        fill sizer containing dispersity info 
     329         
    329330        """ 
    330331        self.sizer4.Clear(True) 
    331         name="Polydispersity and Orientational Distribution" 
     332        name = "Polydispersity and Orientational Distribution" 
    332333        box_description= wx.StaticBox(self, -1,name) 
    333334        boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL) 
     
    336337        self.enable_disp = wx.RadioButton(self, -1, 'On', (10, 30)) 
    337338        
    338          
    339339        self.Bind(wx.EVT_RADIOBUTTON, self._set_dipers_Param, id=self.disable_disp.GetId()) 
    340340        self.Bind(wx.EVT_RADIOBUTTON, self._set_dipers_Param, id=self.enable_disp.GetId()) 
     
    392392    def select_disp_angle(self, event):  
    393393        """ 
    394             Event for when a user select a parameter to average over. 
    395             @param event: radiobutton event 
     394        Event for when a user select a parameter to average over. 
     395         
     396        :param event: radiobutton event 
    396397        """ 
    397398        self.values=[] 
     
    479480        wx.PostEvent(self.parent, event) 
    480481        
    481      
    482482    def onResetModel(self, event): 
    483483        """ 
    484             Reset model state 
     484        Reset model state 
     485         
    485486        """ 
    486487        ## post help message for the selected model  
     
    499500    def onSave(self, event): 
    500501        """ 
    501             save history of the data and model 
     502        save history of the data and model 
     503         
    502504        """ 
    503505        if self.model==None: 
     
    536538    def onSetFocus(self, evt): 
    537539        """ 
    538             highlight the current textcrtl and hide the error text control shown  
    539             after fitting 
    540             :Not implemented. 
     540        highlight the current textcrtl and hide the error text control shown  
     541        after fitting 
     542        :Not implemented. 
    541543        """ 
    542544        return 
     
    544546    def read_file(self, path): 
    545547        """ 
    546             Read two columns file 
    547             @param path: the path to the file to read 
     548        Read two columns file 
     549         
     550        :param path: the path to the file to read 
    548551        """ 
    549552        try: 
     
    575578    def createMemento(self): 
    576579        """ 
    577             return the current state of the page 
     580        return the current state of the page 
    578581        """ 
    579582        return self.state.clone() 
     
    582585    def save_current_state(self): 
    583586        """ 
    584             Store current state 
     587        Store current state 
     588         
    585589        """ 
    586590        ## save model option 
     
    656660        self._copy_parameters_state(self.fittable_param, self.state.fittable_param) 
    657661        self._copy_parameters_state(self.fixed_param, self.state.fixed_param) 
    658      
    659  
    660     def save_current_state_fit(self): 
    661         """ 
    662             Store current state for fit_page 
    663         """ 
    664         ## save model option 
    665         if self.model!= None: 
    666             self.disp_list= self.model.getDispParamList() 
    667             self.state.disp_list= copy.deepcopy(self.disp_list) 
    668             self.state.model = self.model.clone() 
    669         #if hasattr(self,self.engine_type)> 0: 
    670             #self.state.engine_type = self.engine_type.clone()  
    671         self.state.enable2D = copy.deepcopy(self.enable2D) 
    672         self.state.values= copy.deepcopy(self.values) 
    673         self.state.weights = copy.deepcopy( self.weights) 
    674         ## save data     
    675         self.state.data= copy.deepcopy(self.data) 
    676         try: 
    677             n = self.disp_box.GetCurrentSelection() 
    678             dispersity= self.disp_box.GetClientData(n) 
    679             name= dispersity.__name__ 
    680             self.disp_name = name 
    681             if name == "GaussianDispersion" : 
    682                if hasattr(self,"cb1"): 
    683                    self.state.cb1= self.cb1.GetValue() 
    684  
    685         except: 
    686             pass 
    687          
    688         if hasattr(self,"enable_disp"): 
    689             self.state.enable_disp= self.enable_disp.GetValue() 
    690             self.state.disable_disp = self.disable_disp.GetValue() 
    691              
    692         self.state.smearer = copy.deepcopy(self.smearer) 
    693         if hasattr(self,"enable_smearer"): 
    694             self.state.enable_smearer = copy.deepcopy(self.enable_smearer.GetValue()) 
    695             self.state.disable_smearer = copy.deepcopy(self.disable_smearer.GetValue()) 
    696              
    697         if hasattr(self,"disp_box"): 
    698             self.state.disp_box = self.disp_box.GetCurrentSelection() 
    699  
    700             if len(self.disp_cb_dict)>0: 
    701                 for k , v in self.disp_cb_dict.iteritems(): 
    702           
    703                     if v ==None : 
    704                         self.state.disp_cb_dict[k]= v 
    705                     else: 
    706                         try: 
    707                             self.state.disp_cb_dict[k]=v.GetValue() 
    708                         except: 
    709                             self.state.disp_cb_dict[k]= None 
    710             
    711             if len(self._disp_obj_dict)>0: 
    712                 for k , v in self._disp_obj_dict.iteritems(): 
    713        
    714                     self.state._disp_obj_dict[k]= v 
    715                          
    716              
    717             self.state.values = copy.deepcopy(self.values) 
    718             self.state.weights = copy.deepcopy(self.weights) 
    719             
    720         ## save plotting range 
    721         self._save_plotting_range() 
    722          
    723         ## save checkbutton state and txtcrtl values 
    724         self._copy_parameters_state(self.orientation_params, 
    725                                      self.state.orientation_params) 
    726         self._copy_parameters_state(self.orientation_params_disp, 
    727                                      self.state.orientation_params_disp) 
    728         self._copy_parameters_state(self.parameters, self.state.parameters) 
    729         self._copy_parameters_state(self.fittable_param, self.state.fittable_param) 
    730         self._copy_parameters_state(self.fixed_param, self.state.fixed_param) 
    731      
    732                 
     662   
    733663    def reset_page_helper(self, state): 
    734664        """ 
    735             Use page_state and change the state of existing page 
    736             @precondition: the page is already drawn or created 
    737             @postcondition: the state of the underlying data change as well as the 
     665        Use page_state and change the state of existing page 
     666         
     667        :precondition: the page is already drawn or created 
     668         
     669        :postcondition: the state of the underlying data change as well as the 
    738670            state of the graphic interface 
    739671        """ 
     
    765697        self.structurebox.SetSelection(state.structurecombobox ) 
    766698        self.formfactorbox.SetSelection(state.formfactorcombobox) 
    767          
    768699         
    769700        ## enable the view 2d button if this is a modelpage type 
     
    848779        ## reset context menu items 
    849780        self._reset_context_menu() 
    850      
    851781        ## set the value of the current state to the state given as parameter 
    852782        self.state = state.clone()  
     
    855785    def _selectDlg(self): 
    856786        """ 
    857             open a dialog file to selected the customized dispersity  
     787        open a dialog file to selected the customized dispersity  
     788         
    858789        """ 
    859790        import os 
     
    866797        return path 
    867798     
    868      
    869799    def _reset_context_menu(self): 
    870800        """ 
    871             reset the context menu 
     801        reset the context menu 
     802         
    872803        """ 
    873804        for name, state in self.state.saved_states.iteritems(): 
     
    881812    def _reset_plotting_range(self, state): 
    882813        """ 
    883             Reset the plotting range to a given state 
     814        Reset the plotting range to a given state 
     815         
    884816        """ 
    885817        self.qmin.SetValue(str(state.qmin)) 
     
    891823    def _save_typeOfmodel(self): 
    892824        """ 
    893             save radiobutton containing the type model that can be selected 
     825        save radiobutton containing the type model that can be selected 
     826         
    894827        """ 
    895828        self.state.shape_rbutton = self.shape_rbutton.GetValue() 
     
    908841    def _save_plotting_range(self ): 
    909842        """ 
    910             save the state of plotting range  
     843        save the state of plotting range  
     844         
    911845        """ 
    912846        self.state.qmin = self.qmin_x 
     
    918852    def _onparamEnter_helper(self): 
    919853        """ 
    920              check if values entered by the user are changed and valid to replot  
    921              model 
    922              use : _check_value_enter  
     854        check if values entered by the user are changed and valid to replot  
     855        model 
     856        use : _check_value_enter  
     857         
    923858        """ 
    924859        # Flag to register when a parameter has changed.       
     
    969904    def _is_modified(self, is_modified): 
    970905        """ 
    971             return to self._is_modified 
     906        return to self._is_modified 
     907         
    972908        """ 
    973909        return is_modified 
     
    975911    def _reset_parameters_state(self, listtorestore,statelist): 
    976912        """ 
    977             Reset the parameters at the given state 
     913        Reset the parameters at the given state 
     914         
    978915        """ 
    979916        if len(statelist)==0 or  len(listtorestore)==0 : 
     
    1020957                else: 
    1021958                    item_page[6].Hide() 
    1022                              
    1023                              
     959                                   
    1024960    def _copy_parameters_state(self, listtocopy, statelist): 
    1025961        """ 
    1026             copy the state of button  
    1027             @param listtocopy: the list of check button to copy 
    1028             @param statelist: list of state object to store the current state 
     962        copy the state of button  
     963         
     964        :param listtocopy: the list of widgets 's state to copy 
     965        :param statelist: container for the state of widgets that must be copied 
     966         
    1029967        """ 
    1030968        if len(listtocopy)==0: 
     
    10681006                                [min_state,min_value],[max_state , max_value],unit]) 
    10691007            
    1070          
    1071     
    10721008    def _set_model_sizer_selection(self, model): 
    10731009        """ 
    1074             Display the sizer according to the type of the current model 
     1010        Display the sizer according to the type of the current model 
     1011         
    10751012        """ 
    10761013        if model ==None: 
     
    11811118                    break 
    11821119     
    1183      
    11841120    def _draw_model(self): 
    11851121        """ 
    1186             Method to draw or refresh a plotted model. 
    1187             The method will use the data member from the model page 
    1188             to build a call to the fitting perspective manager. 
    1189              
    1190             [Note to coder: This way future changes will be done in only one place.]  
     1122        Method to draw or refresh a plotted model. 
     1123        The method will use the data member from the model page 
     1124        to build a call to the fitting perspective manager. 
     1125         
     1126        :Note to coder: This way future changes will be done in only one place. 
     1127          
    11911128        """ 
    11921129        if self.model !=None: 
     
    12031140                                    enable2D=self.enable2D)  
    12041141         
    1205          
    12061142    def _set_model_sizer(self,sizer, box_sizer, title="", object=None): 
    12071143        """ 
    1208             Use lists to fill a sizer for model info 
     1144        Use lists to fill a sizer for model info 
     1145         
    12091146        """ 
    12101147        
     
    13041241    def _show_combox(self, event): 
    13051242        """ 
    1306             Show combox box associate with type of model selected 
     1243        Show combox box associate with type of model selected 
     1244         
    13071245        """ 
    13081246        ## Don't want to populate combo box again if the event comes from check box 
     
    13521290    def _populate_box(self, combobox, list): 
    13531291        """ 
    1354             fill combox box with dict item 
    1355             @param list: contains item to fill the combox 
     1292        fill combox box with dict item 
     1293         
     1294        :param list: contains item to fill the combox 
    13561295            item must model class 
    13571296        """ 
     
    13681307    def _onparamEnter(self,event): 
    13691308        """  
    1370             when enter value on panel redraw model according to changed 
     1309        when enter value on panel redraw model according to changed 
     1310         
    13711311        """ 
    13721312        tcrtl= event.GetEventObject() 
     
    13951335    def _onQrangeEnter(self, event): 
    13961336        """ 
    1397             Check validity of value enter in the Q range field 
     1337        Check validity of value enter in the Q range field 
     1338         
    13981339        """ 
    13991340         
     
    14541395    def _on_select_model_helper(self):  
    14551396        """ 
    1456              call back for model selection 
     1397        call back for model selection 
     1398         
    14571399        """ 
    14581400        ## reset dictionary containing reference to dispersion 
     
    15011443    def _validate_qrange(self, qmin_ctrl, qmax_ctrl): 
    15021444        """ 
    1503             Verify that the Q range controls have valid values 
    1504             and that Qmin < Qmax. 
    1505              
    1506             @param qmin_ctrl: text control for Qmin 
    1507             @param qmax_ctrl: text control for Qmax 
    1508             @return: True is the Q range is value, False otherwise  
     1445        Verify that the Q range controls have valid values 
     1446        and that Qmin < Qmax. 
     1447         
     1448        :param qmin_ctrl: text control for Qmin 
     1449        :param qmax_ctrl: text control for Qmax 
     1450         
     1451        :return: True is the Q range is value, False otherwise  
     1452         
    15091453        """ 
    15101454        qmin_validity = check_float(qmin_ctrl) 
     
    15331477    def _check_value_enter(self, list, modified): 
    15341478        """ 
    1535             @param list: model parameter and panel info 
    1536             each item of the list should be as follow: 
    1537             item=[cb state, name, value, "+/-", error of fit, min, max , units] 
     1479        :param list: model parameter and panel info 
     1480        each item of the list should be as follow: :: 
     1481         
     1482         item = [cb state, name, value, "+/-", error of fit, min, max , units] 
     1483          
    15381484        """   
    15391485        is_modified =  modified 
     
    15601506                 
    15611507        return is_modified  
    1562          
    1563   
     1508     
    15641509    def _set_dipers_Param(self, event): 
    15651510        """ 
    1566             respond to self.enable_disp and self.disable_disp radio box. 
    1567             The dispersity object is reset inside the model into Gaussian.  
    1568             When the user select yes , this method display a combo box for more selection 
    1569             when the user selects No,the combo box disappears. 
    1570             Redraw the model with the default dispersity (Gaussian) 
     1511        respond to self.enable_disp and self.disable_disp radio box. 
     1512        The dispersity object is reset inside the model into Gaussian.  
     1513        When the user select yes , this method display a combo box for more selection 
     1514        when the user selects No,the combo box disappears. 
     1515        Redraw the model with the default dispersity (Gaussian) 
     1516         
    15711517        """ 
    15721518         
     
    16131559    def _layout_sizer_noDipers(self): 
    16141560        """ 
    1615             Draw a sizer with no dispersity info 
     1561        Draw a sizer with no dispersity info 
     1562         
    16161563        """ 
    16171564        ix=0 
     
    16331580    def _reset_dispersity(self): 
    16341581        """ 
    1635              put gaussian dispersity into current model 
     1582         put gaussian dispersity into current model 
     1583          
    16361584        """ 
    16371585        if len(self.param_toFit)>0: 
     
    16781626    def _on_select_Disp(self,event): 
    16791627        """ 
    1680              allow selecting different dispersion 
    1681              self.disp_list should change type later .now only gaussian 
     1628        allow selecting different dispersion 
     1629        self.disp_list should change type later .now only gaussian 
     1630         
    16821631        """ 
    16831632        n = self.disp_box.GetCurrentSelection() 
     
    17041653    def _set_sizer_arraydispersion(self): 
    17051654        """ 
    1706             draw sizer with array dispersity  parameters 
     1655        draw sizer with array dispersity  parameters 
     1656         
    17071657        """ 
    17081658         
     
    17721722         
    17731723        ## save checkbutton state and txtcrtl values 
    1774          
    17751724        self._copy_parameters_state(self.orientation_params, 
    17761725                                     self.state.orientation_params) 
     
    17821731        self._copy_parameters_state(self.fittable_param, self.state.fittable_param) 
    17831732        self._copy_parameters_state(self.fixed_param, self.state.fixed_param) 
    1784          
    1785          
     1733     
    17861734        ## post state to fit panel 
    17871735        event = PageInfoEvent(page = self) 
    17881736        wx.PostEvent(self.parent, event) 
    17891737         
    1790                  
    1791          
    1792         
    1793  
    17941738    def _set_range_sizer(self, title, box_sizer=None, object1=None,object=None): 
    17951739        """ 
    1796             Fill the Q range sizer 
     1740        Fill the Q range sizer 
     1741         
    17971742        """ 
    17981743        self.sizer5.Clear(True) 
     
    18471792        self.sizer5.Layout() 
    18481793 
    1849      
    18501794    def _fill_save_sizer(self): 
    18511795        """ 
    1852             Draw the layout for saving option 
     1796        Draw the layout for saving option 
     1797         
    18531798        """ 
    18541799        # Skipping save state functionality for release 0.9.0 
     
    18771822    def _lay_out(self): 
    18781823        """ 
    1879             returns self.Layout 
    1880             Note: Mac seems to like this better when self.Layout is called after fitting. 
     1824        returns self.Layout 
     1825         
     1826        :Note: Mac seems to like this better when self.Layout  
     1827            is called after fitting. 
     1828             
    18811829        """ 
    18821830        self._sleep4sec() 
     
    18871835    def _sleep4sec(self): 
    18881836        """ 
    1889             sleep for 1 sec only applied on Mac 
    1890             Note: This 1sec helps for Mac not to crash on self.:ayout after self._draw_model 
     1837        sleep for 1 sec only applied on Mac 
     1838         
     1839        :Note: This 1sec helps for Mac not to crash on  
     1840            self.layout after self._draw_model 
     1841             
    18911842        """ 
    18921843        if ON_MAC == True: 
     
    18951846    def on_reset_clicked(self,event): 
    18961847        """ 
    1897         #On 'Reset' button  for Q range clicked 
     1848        On 'Reset' button  for Q range clicked 
     1849         
    18981850        """ 
    18991851        ##For 3 different cases: Data2D, Data1D, and theory 
     
    19131865            self.state.npts = self.num_points 
    19141866             
    1915  
    19161867        self.state.qmin = self.qmin_x 
    19171868        self.state.qmax = self.qmax_x 
     
    19211872        #Re draw plot 
    19221873        self._draw_model() 
    1923  
    1924    
  • theoryview/perspectives/theory/help_panel.py

    r82789f1 r74755ff  
    44from wx.lib.splitter import MultiSplitterWindow 
    55import os 
    6 def help(): 
    7     """ 
    8         Provide general online help text 
    9         Future work: extend this function to allow topic selection 
    10     """ 
    11     info_txt  = "The inversion approach is based on Moore, J. Appl. Cryst. (1980) 13, 168-175.\n\n" 
    12     info_txt += "P(r) is set to be equal to an expansion of base functions of the type " 
    13     info_txt += "phi_n(r) = 2*r*sin(pi*n*r/D_max). The coefficient of each base functions " 
    14     info_txt += "in the expansion is found by performing a least square fit with the " 
    15     info_txt += "following fit function:\n\n" 
    16     info_txt += "chi**2 = sum_i[ I_meas(q_i) - I_th(q_i) ]**2/error**2 + Reg_term\n\n" 
    17     info_txt += "where I_meas(q) is the measured scattering intensity and I_th(q) is " 
    18     info_txt += "the prediction from the Fourier transform of the P(r) expansion. " 
    19     info_txt += "The Reg_term term is a regularization term set to the second derivative " 
    20     info_txt += "d**2P(r)/dr**2 integrated over r. It is used to produce a smooth P(r) output.\n\n" 
    21     info_txt += "The following are user inputs:\n\n" 
    22     info_txt += "   - Number of terms: the number of base functions in the P(r) expansion.\n\n" 
    23     info_txt += "   - Regularization constant: a multiplicative constant to set the size of " 
    24     info_txt += "the regularization term.\n\n" 
    25     info_txt += "   - Maximum distance: the maximum distance between any two points in the system.\n" 
    26       
    27     return info_txt 
    28      
    29 class HelpDialog(wx.Dialog): 
    30     def __init__(self, parent, id): 
    31        
    32         wx.Dialog.__init__(self, parent, id, size=(400, 420)) 
    33         self.SetTitle("P(r) help")  
    34          
    356 
    36         vbox = wx.BoxSizer(wx.VERTICAL) 
    37  
    38         explanation = help() 
    39             
    40         label_explain = wx.StaticText(self, -1, explanation, size=(350,320)) 
    41              
    42         vbox.Add(label_explain, 0, wx.ALL|wx.EXPAND, 15) 
    43  
    44  
    45         static_line = wx.StaticLine(self, -1) 
    46         vbox.Add(static_line, 0, wx.EXPAND, 0) 
    47          
    48         button_OK = wx.Button(self, wx.ID_OK, "OK") 
    49  
    50         sizer_button = wx.BoxSizer(wx.HORIZONTAL) 
    51         sizer_button.Add((20, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    52         sizer_button.Add(button_OK, 0, wx.LEFT|wx.RIGHT|wx.ADJUST_MINSIZE, 10)        
    53         vbox.Add(sizer_button, 0, wx.EXPAND|wx.BOTTOM|wx.TOP, 10) 
    54  
    55         self.SetSizer(vbox) 
    56         self.SetAutoLayout(True) 
    57          
    58         self.Layout() 
    59         self.Centre() 
    607 
    618class HelpWindow(wx.Frame): 
     
    6310        wx.Frame.__init__(self, parent, id, title, size=(850, 500)) 
    6411        """ 
    65              contains help info 
     12        Windows containing html documentation for theory application 
     13         
    6614        """ 
    6715       
     
    13583    def OnButtonClicked(self, event): 
    13684        """ 
    137             Function to diplay html page related to the hyperlinktext selected 
     85        Function to diplay html page related to the hyperlinktext selected 
     86         
    13887        """ 
    13988        self.rhelp.LoadPage("media/modelfunction.html") 
     
    14190    def OnLinkClicked(self, event): 
    14291        """ 
    143             Function to diplay html page related to the hyperlinktext selected 
     92        Function to diplay html page related to the hyperlinktext selected 
     93         
    14494        """ 
    14595        link= event.GetLinkInfo().GetHref() 
    14696        self.rhelp.LoadPage(link) 
     97 
    14798 
    14899class ViewApp(wx.App): 
  • theoryview/perspectives/theory/model_panel.py

    r1a94c36 r74755ff  
    1818class ModelPanel(BasicPage): 
    1919    """ 
    20         FitPanel class contains fields allowing to display results when 
    21         fitting  a model and one data 
    22         @note: For Fit to be performed the user should check at least  
     20    FitPanel class contains fields allowing to display results when 
     21    fitting  a model and one data 
     22     
     23    :note: For Fit to be performed the user should check at least  
    2324        one parameter on fit Panel window. 
    2425    """ 
     
    3233        BasicPage.__init__(self, parent, page_info , model_list_box) 
    3334        """  
    34             Initialization of the Panel 
     35        Initialization of the Panel 
    3536        """ 
    3637        self._fill_model_sizer( self.sizer1)   
     
    4849    def _on_display_description(self, event): 
    4950        """ 
    50             Show or Hide description 
    51             @param event: wx.EVT_RADIOBUTTON 
     51        Show or Hide description 
     52         
     53        :param event: wx.EVT_RADIOBUTTON 
     54         
    5255        """ 
    5356        self._on_display_description_helper() 
     
    5861    def _on_display_description_helper(self): 
    5962        """ 
    60             Show or Hide description 
    61             @param event: wx.EVT_RADIOBUTTON 
     63        Show or Hide description 
     64         
     65        :param event: wx.EVT_RADIOBUTTON 
     66         
    6267        """ 
    6368        ## Show description 
     
    7984    def _fill_range_sizer(self): 
    8085        """ 
    81             Fill the sizer containing the plotting range 
    82             add  access to npts 
     86        Fill the sizer containing the plotting range 
     87        add  access to npts 
     88         
    8389        """ 
    8490        ##The following 3 lines are for Mac. Let JHC know before modifying.. 
     
    100106    def _on_select_model(self, event):  
    101107        """ 
    102              call back for model selection 
     108        call back for model selection 
     109         
    103110        """     
    104111        self._on_select_model_helper()  
     
    110117    def _fill_model_sizer(self, sizer): 
    111118        """ 
    112             fill sizer containing model info 
     119        fill sizer containing model info 
     120         
    113121        """ 
    114122        ##The following 3 lines are for Mac. Let JHC know before modifying.. 
     
    129137    def _set_sizer_dispersion(self, dispersity): 
    130138        """ 
    131             draw sizer with gaussian, log or schulz dispersity parameters 
     139        draw sizer with gaussian, log or schulz dispersity parameters 
     140         
    132141        """ 
    133142        self.fittable_param=[] 
     
    308317    def _onModel2D(self, event): 
    309318        """ 
    310          call manager to plot model in 2D 
     319        call manager to plot model in 2D 
     320         
    311321        """ 
    312322        # If the 2D display is not currently enabled, plot the model in 2D  
     
    356366    def reset_page(self, state): 
    357367        """ 
    358             reset the state 
     368        reset the state 
     369         
    359370        """ 
    360371        self.reset_page_helper(state) 
     
    363374    def select_model(self, model): 
    364375        """ 
    365             Select a new model 
    366             @param model: model object  
     376        Select a new model 
     377         
     378        :param model: model object  
     379         
    367380        """ 
    368381        self.model = model 
     
    390403    def set_model_description(self,description,sizer): 
    391404        """ 
    392             fill a sizer with description 
    393             @param description: of type string 
    394             @param sizer: wx.BoxSizer() 
     405        fill a sizer with description 
     406         
     407        :param description: of type string 
     408        :param sizer: wx.BoxSizer() 
     409         
    395410        """ 
    396411     
     
    442457    def on_button_clicked(self,event): 
    443458        """ 
    444         #On 'More details' button 
     459        On 'More details' button 
    445460        """ 
    446461        from help_panel import  HelpWindow 
     
    459474           wx.PostEvent(self.parent, StatusEvent(status = msg )) 
    460475                      
    461              
    462              
    463476    def set_range(self, qmin_x, qmax_x, npts): 
    464477        """ 
    465             Set the range for the plotted models 
    466             @param qmin: minimum Q 
    467             @param qmax: maximum Q 
    468             @param npts: number of Q bins 
     478        Set the range for the plotted models 
     479         
     480        :param qmin: minimum Q 
     481        :param qmax: maximum Q 
     482        :param npts: number of Q bins 
     483         
    469484        """ 
    470485        # Set the data members 
     
    472487        self.qmax_x = qmax_x 
    473488        self.num_points = npts 
    474          
    475489        # Set the controls 
    476490        #For qmin and qmax, do not use format_number.(If do, qmin and max could be different from what is in the data.) 
    477         
    478491        self.qmin.SetValue(str(self.qmin_x)) 
    479492        self.qmax.SetValue(str(self.qmax_x)) 
    480493        self.npts.SetValue(format_number(self.num_points)) 
    481494         
    482          
    483495    def set_model_param_sizer(self, model): 
    484496        """ 
    485             Build the panel from the model content 
    486             @param model: the model selected in combo box for fitting purpose 
     497        Build the panel from the model content 
     498         
     499        :param model: the model selected in combo box for fitting purpose 
     500         
    487501        """ 
    488502        self.sizer3.Clear(True) 
  • theoryview/perspectives/theory/model_thread.py

    r64017a8 r74755ff  
    66class Calc2D(CalcThread): 
    77    """ 
    8         Compute 2D model 
    9         This calculation assumes a 2-fold symmetry of the model 
    10         where points are computed for one half of the detector 
    11         and I(qx, qy) = I(-qx, -qy) is assumed. 
     8    Compute 2D model 
     9    This calculation assumes a 2-fold symmetry of the model 
     10    where points are computed for one half of the detector 
     11    and I(qx, qy) = I(-qx, -qy) is assumed. 
     12     
    1213    """ 
    1314     
     
    3435    def compute(self): 
    3536        """ 
    36             Compute the data given a model function 
     37        Compute the data given a model function 
     38         
    3739        """ 
    3840        self.starttime = time.time() 
     
    105107                       qstep = self.qstep ) 
    106108         
    107     
    108      
    109  
    110109class Calc1D(CalcThread): 
    111     """Compute 1D data""" 
     110    """ 
     111    Compute 1D data 
     112     
     113    """ 
    112114     
    113115    def __init__(self, x, model, 
     
    135137    def compute(self): 
    136138        """ 
    137             Compute model 1d value given qmin , qmax , x value  
     139        Compute model 1d value given qmin , qmax , x value  
     140         
    138141        """ 
    139142         
     
    154157        self.complete(x= self.x[index], y= output[index],  
    155158                      elapsed=elapsed, model= self.model, data=self.data) 
    156          
    157   
    158                  
     159""" 
     160Example of use of Calc2D :: 
     161 
    159162class CalcCommandline: 
     163     
    160164    def __init__(self, n=20000): 
    161165        #print thread.get_ident() 
     
    163167         
    164168        model = CylinderModel() 
    165          
    166           
    167169        print model.runXY([0.01, 0.02]) 
    168170         
     
    173175        x = numpy.arange(-qmax, qmax+qstep*0.01, qstep) 
    174176        y = numpy.arange(-qmax, qmax+qstep*0.01, qstep) 
    175      
    176177     
    177178        calc_thread_2D = Calc2D(x, y, None, model.clone(),-qmax, qmax,qstep, 
     
    196197    CalcCommandline() 
    197198    
     199"""   
     200 
  • theoryview/perspectives/theory/models.py

    rce07fa8 r74755ff  
    1 #TODO: add comments to document this module 
    2 #TODO: clean-up the exception handling. 
    3  
    4 #TODO: clean-up the FractalAbsModel and PowerLawAbsModel menu items. Those 
    5 #      model definitions do not belong here. They belong with the rest of the 
    6 #      models. 
    7  
     1 
     2""" 
     3This module collects models from sans.models packages and orders theses models  
     4by categories that GUI application understands and uses. 
     5 
     6""" 
    87import wx 
    98import wx.lib.newevent 
     
    2322     
    2423def log(message): 
     24    """ 
     25    """ 
    2526    out = open("plugins.log", 'a') 
    2627    out.write("%10g:  %s\n" % (time.clock(), message)) 
     
    2829 
    2930def findModels(): 
     31    """ 
     32    """ 
    3033    log("looking for models in: %s/plugins" % os.getcwd()) 
    3134    if os.path.isdir('plugins'): 
     
    3538def _check_plugin(model, name): 
    3639    """ 
    37         Do some checking before model adding plugins in the list 
    38         @param model: class model to add into the plugin list 
    39         @param name:name of the module plugin 
    40         @return model: model if valid model or None if not valid 
     40    Do some checking before model adding plugins in the list 
     41     
     42    :param model: class model to add into the plugin list 
     43    :param name: name of the module plugin 
     44     
     45    :return model: model if valid model or None if not valid 
     46     
    4147    """ 
    4248    #Check is the plugin is of type Model1DPlugin 
     
    7480   
    7581def _findModels(dir): 
     82    """ 
     83    """ 
    7684    # List of plugin objects 
    7785    plugins = [] 
     
    114122class ModelList(object): 
    115123    """ 
    116         Contains dictionary of model and their type 
     124    Contains dictionary of model and their type 
     125     
    117126    """ 
    118127    def __init__(self): 
     
    121130    def set_list(self, name, mylist): 
    122131        """ 
    123             @param name: the type of the list 
    124             @param mylist: the list to add 
     132         
     133        :param name: the type of the list 
     134        :param mylist: the list to add 
     135         
    125136        """ 
    126137        if name not in self.mydict.keys(): 
     
    130141    def get_list(self): 
    131142        """ 
    132          return all the list stored in a dictionary object 
     143        return all the list stored in a dictionary object 
    133144        """ 
    134145        return self.mydict 
    135146         
    136147class ModelManager: 
     148    """ 
     149    ModelManager collected model classes object of available into a  
     150    dictionary of models' names and models' classes. 
     151     
     152    """ 
    137153    ## external dict for models 
    138154    model_combobox = ModelList() 
     
    156172    def _getModelList(self): 
    157173        """ 
    158             List of models we want to make available by default 
    159             for this application 
    160          
    161             @return: the next free event ID following the new menu events 
     174        Fill up lists of models available by default 
     175        for the current application 
     176     
     177        :return: the next free event ID following the new menu events 
     178         
    162179        """ 
    163180        ## form factor 
     
    293310        self.shape_indep_list.append(PorodModel ) 
    294311         
    295          
    296312        #FractalModel (a c-model)will be used. 
    297313        #from sans.models.FractalAbsModel import FractalAbsModel 
     
    309325        return 0 
    310326 
    311    
    312327    def get_model_list(self):     
    313         """ @ return dictionary of models for fitpanel use """ 
     328        """  
     329        :return: dictionary of models for fitpanel use  
     330         
     331        """ 
    314332        self._getModelList() 
    315333        self.model_combobox.set_list("Shapes", self.shape_list) 
     
    319337        self.model_combobox.set_list("P(Q)*S(Q)", self.multiplication_factor) 
    320338        self.model_combobox.set_list("multiplication", self.multiplication_factor) 
    321         
    322339        return self.model_combobox 
    323      
    324    
    325          
    326      
    327      
    328    
     340  
  • theoryview/perspectives/theory/pagestate.py

    r0277d084 r74755ff  
    55class PageState(object): 
    66    """ 
    7         Contains info to reconstruct a page 
     7    Contains info to reconstruct a page 
     8     
    89    """ 
    910    def __init__(self, parent,model=None, data=None): 
    1011         
    1112        """  
    12             Initialization of the Panel 
     13        Initialization of the Panel 
     14         
    1315        """ 
    1416        #TODO: remove this once the inheritence is cleaned up 
     
    9698     
    9799    def clone(self): 
     100        """ 
     101        """ 
    98102        model=None 
    99103        if self.model !=None: 
     
    154158       
    155159    def old__repr__(self): 
    156         """ output string for printing""" 
     160        """ 
     161        output string for printing 
     162         
     163        """ 
    157164        rep = "\n\nState name: %s\n"%self.name 
    158165        rep +="data : %s\n"% str(self.data) 
     
    198205            rep += "maximum value : %s \n"%str(item[6][1]) 
    199206            rep += "parameter unit: %s\n\n"%str(item[7]) 
    200          
    201207        return rep 
    202  
    203          
    204         
    205         
     208   
  • theoryview/perspectives/theory/theory.py

    r2882fb5 r74755ff  
    2020class PlotInfo: 
    2121    """ 
    22         store some plotting field 
     22    store some plotting field 
     23     
    2324    """ 
    2425    _xunit = 'A^{-1}' 
     
    3334class Plugin: 
    3435    """ 
    35         This class defines the interface for a Plugin class 
    36         for calculator perspective 
     36    This class defines the interface for a Plugin class 
     37    for calculator perspective 
     38     
    3739    """ 
    3840     
    3941    def __init__(self, standalone=True): 
    4042        """ 
    41             Abstract class for gui_manager Plugins. 
     43        Abstract class for gui_manager Plugins. 
     44         
    4245        """ 
    4346        ## Plug-in name. It will appear on the application menu. 
     
    6164    def populate_menu(self, id, owner): 
    6265        """ 
    63             Create and return the list of application menu 
    64             items for the plug-in.  
    65              
    66             @param id: deprecated. Un-used. 
    67             @param parent: parent window 
    68             @return: plug-in menu 
     66        Create and return the list of application menu 
     67        items for the plug-in.  
     68         
     69        :param id: deprecated. Un-used. 
     70        :param parent: parent window 
     71         
     72        :return: plug-in menu 
    6973        """ 
    7074        return [] 
     
    7276    def get_panels(self, parent): 
    7377        """ 
    74             Create and return the list of wx.Panels for your plug-in. 
    75             Define the plug-in perspective. 
    76              
    77             Panels should inherit from DefaultPanel defined below, 
    78             or should present the same interface. They must define 
    79             "window_caption" and "window_name". 
    80              
    81             @param parent: parent window 
    82             @return: list of panels 
     78        Create and return the list of wx.Panels for your plug-in. 
     79        Define the plug-in perspective. 
     80         
     81        Panels should inherit from DefaultPanel defined below, 
     82        or should present the same interface. They must define 
     83        "window_caption" and "window_name". 
     84         
     85        :param parent: parent window 
     86         
     87        :return: list of panels 
    8388        """ 
    8489        ## Save a reference to the parent 
     
    8893                model_list_box= self.menu_mng.get_model_list().get_list()) 
    8994        self.model_panel.set_manager(self) 
    90         
    9195        # If needed, add its name to the perspective list 
    9296        self.perspective.append(self.model_panel.window_name) 
     
    97101    def get_context_menu(self, graph=None): 
    98102        """ 
    99             This method is optional. 
    100          
    101             When the context menu of a plot is rendered, the  
    102             get_context_menu method will be called to give you a  
    103             chance to add a menu item to the context menu. 
    104              
    105             A ref to a Graph object is passed so that you can 
    106             investigate the plot content and decide whether you 
    107             need to add items to the context menu.   
    108              
    109             This method returns a list of menu items. 
    110             Each item is itself a list defining the text to  
    111             appear in the menu, a tool-tip help text, and a 
    112             call-back method. 
    113              
    114             @param graph: the Graph object to which we attach the context menu 
    115             @return: a list of menu items with call-back function 
     103        This method is optional. 
     104     
     105        When the context menu of a plot is rendered, the  
     106        get_context_menu method will be called to give you a  
     107        chance to add a menu item to the context menu. 
     108         
     109        A ref to a Graph object is passed so that you can 
     110        investigate the plot content and decide whether you 
     111        need to add items to the context menu.   
     112         
     113        This method returns a list of menu items. 
     114        Each item is itself a list defining the text to  
     115        appear in the menu, a tool-tip help text, and a 
     116        call-back method. 
     117         
     118        :param graph: the Graph object to which we attach the context menu 
     119         
     120        :return: a list of menu items with call-back function 
     121         
    116122        """ 
    117123        return []     
     
    119125    def get_perspective(self): 
    120126        """ 
    121             Get the list of panel names for this perspective 
     127        Get the list of panel names for this perspective 
     128         
    122129        """ 
    123130        return self.perspective 
     
    125132    def on_perspective(self, event): 
    126133        """ 
    127             Call back function for the perspective menu item. 
    128             We notify the parent window that the perspective 
    129             has changed. 
    130             @param event: menu event 
     134        Call back function for the perspective menu item. 
     135        We notify the parent window that the perspective 
     136        has changed. 
     137         
     138        :param event: menu event 
     139         
    131140        """ 
    132141        self.parent.set_perspective(self.perspective) 
     
    134143    def post_init(self): 
    135144        """ 
    136             Post initialization call back to close the loose ends 
     145        Post initialization call back to close the loose ends 
     146         
    137147        """ 
    138148        pass 
     
    142152                   qmin= DEFAULT_QMIN, qmax= DEFAULT_QMAX, qstep= DEFAULT_NPTS): 
    143153        """ 
    144              Draw model. 
    145              @param model: the model to draw 
    146              @param name: the name of the model to draw 
    147              @param data: the data on which the model is based to be drawn 
    148              @param description: model's description 
    149              @param enable1D: if true enable drawing model 1D 
    150              @param enable2D: if true enable drawing model 2D 
    151              @param qmin:  Range's minimum value to draw model 
    152              @param qmax:  Range's maximum value to draw model 
    153              @param qstep: number of step to divide the x and y-axis 
     154        Draw model. 
     155          
     156        :param model: the model to draw 
     157        :param name: the name of the model to draw 
     158        :param data: the data on which the model is based to be drawn 
     159        :param description: model's description 
     160        :param enable1D: if true enable drawing model 1D 
     161        :param enable2D: if true enable drawing model 2D 
     162        :param qmin:  Range's minimum value to draw model 
     163        :param qmax:  Range's maximum value to draw model 
     164        :param qstep: number of step to divide the x and y-axis 
    154165              
    155166        """ 
     
    167178    def _on_model_panel(self, evt): 
    168179        """ 
    169             react to model selection on any combo box or model menu.plot the model   
    170             @param evt: wx.combobox event 
     180        react to model selection on any combo box or model menu.plot the model  
     181          
     182        :param evt: wx.combobox event 
     183         
    171184        """ 
    172185        model = evt.model 
     
    182195                      qmin=DEFAULT_QMIN, qmax=DEFAULT_QMAX, qstep=DEFAULT_NPTS): 
    183196        """ 
    184             draw model in 2D 
    185             @param model: instance of the model to draw 
    186             @param enable2D: when True allows to draw model 2D 
    187             @param qmin: the minimum value to  draw model 2D 
    188             @param qmax: the maximum value to draw model 2D 
    189             @param qstep: the number of division of Qx and Qy of the model to draw 
    190              
     197        draw model in 2D 
     198         
     199        :param model: instance of the model to draw 
     200        :param enable2D: when True allows to draw model 2D 
     201        :param qmin: the minimum value to  draw model 2D 
     202        :param qmax: the maximum value to draw model 2D 
     203        :param qstep: the number of division of Qx and Qy of the model to draw 
     204         
    191205        """ 
    192206        x=  numpy.linspace(start= -1*qmax, 
     
    236250                enable1D= True): 
    237251        """ 
    238             Draw model 1D from loaded data1D 
    239             @param data: loaded data 
    240             @param model: the model to plot 
     252        Draw model 1D from loaded data1D 
     253         
     254        :param data: loaded data 
     255        :param model: the model to plot 
     256         
    241257        """ 
    242258        x=  numpy.linspace(start= qmin, 
     
    281297    def _update1D(self,x, output): 
    282298        """ 
    283             Update the output of plotting model 1D 
     299        Update the output of plotting model 1D 
     300         
    284301        """ 
    285302        wx.PostEvent(self.parent, StatusEvent(status="Plot \ 
     
    287304        self.ready_fit() 
    288305        #self.calc_thread.ready(0.01) 
    289      
    290      
     306 
    291307    def _fill_default_model2D(self, theory, qmax,qstep, qmin=None): 
    292308        """ 
    293             fill Data2D with default value  
    294             @param theory: Data2D to fill 
     309        fill Data2D with default value  
     310         
     311        :param theory: Data2D to fill 
     312         
    295313        """ 
    296314        from DataLoader.data_info import Detector, Source 
     
    369387        theory.ymin= ymin 
    370388        theory.ymax= ymax  
    371         theory.group_id ="Model" 
    372         theory.id ="Model" 
    373          
     389        theory.group_id = "Model" 
     390        theory.id = "Model" 
    374391         
    375392    def _get_plotting_info(self, data=None): 
    376393        """ 
    377             get plotting info from data if data !=None 
    378             else use some default 
     394        get plotting info from data if data !=None 
     395        else use some default 
     396         
    379397        """ 
    380398        my_info = PlotInfo() 
     
    397415        return my_info 
    398416                 
    399                  
    400417    def _complete1D(self, x,y, elapsed,model,data=None): 
    401418        """ 
    402             Complete plotting 1D data 
     419        Complete plotting 1D data 
     420         
    403421        """  
    404422        
     
    435453            return   
    436454                   
    437      
    438          
    439455    def _update2D(self, output,time=None): 
    440456        """ 
    441             Update the output of plotting model 
     457        Update the output of plotting model 
     458         
    442459        """ 
    443460        wx.PostEvent(self.parent, StatusEvent(status="Plot \ 
     
    446463        #self.calc_thread.ready(0.01) 
    447464         
    448          
    449465    def _complete2D(self, image,data, model,  elapsed,qmin, qmax,qstep=DEFAULT_NPTS): 
    450466        """ 
    451             Complete get the result of modelthread and create model 2D 
    452             that can be plot. 
     467        Complete get the result of modelthread and create model 2D 
     468        that can be plot. 
     469         
    453470        """ 
    454471        err_image = numpy.zeros(numpy.shape(image)) 
     
    484501        msg = "Plot 2D complete !" 
    485502        wx.PostEvent( self.parent, StatusEvent( status= msg , type="stop" )) 
    486           
    487              
     503      
Note: See TracChangeset for help on using the changeset viewer.