Changeset 4a52223 in sasview for fittingview/src/sans/perspectives


Ignore:
Timestamp:
Oct 12, 2011 5:11:12 PM (13 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:
ea8283d
Parents:
1363416
Message:

work on the firt result display

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/fitting.py

    r2de278d9 r4a52223  
    10941094                for res in list_res: 
    10951095                    model, data = res.inputs[0] 
     1096                    correct_result = False 
    10961097                    if model is not None and hasattr(model, "model"): 
    10971098                        model = model.model 
    10981099                    if data is not None and hasattr(data, "sans_data"): 
    10991100                        data = data.sans_data 
    1100                     if res.fitness is None or \ 
     1101                    is_data2d = issubclass(data.__class__, Data2D) 
     1102                    #check consistency of arrays 
     1103                    if not is_data2d: 
     1104                        if len(res.theory) == len(res.index) and \ 
     1105                            len(res.index) == len(data.y): 
     1106                            correct_result = True 
     1107                    else: 
     1108                        if len(res.theory)== len(res.index) and \ 
     1109                            len(res.index) == len(data.data): 
     1110                            correct_result = True 
     1111                    #get all fittable parameters of the current model 
     1112                    param_list = model.getParamList() 
     1113                    for param in model.getDispParamList(): 
     1114                        if not model.is_fittable(param) and \ 
     1115                            param in param_list: 
     1116                            param_list.remove(param)        
     1117                    if not correct_result or res.fitness is None or \ 
    11011118                        not numpy.isfinite(res.fitness) or \ 
    11021119                        numpy.any(res.pvec == None) or not \ 
     
    11101127                        msg += "Data %s and Model %s did not fit.\n" % (data_name,  
    11111128                                                                        model_name) 
     1129                        ERROR = numpy.NAN 
     1130                        cell = BatchCell() 
     1131                        cell.label = res.fitness 
     1132                        cell.value = res.fitness 
     1133                        batch_outputs["Chi2"].append(ERROR) 
     1134                        for param in param_list: 
     1135                            # save value of  fixed parameters 
     1136                            if param not in batch_outputs.keys(): 
     1137                                batch_outputs[param] = [] 
     1138                            if param not in res.param_list: 
     1139                                batch_outputs[str(param)].append(ERROR) 
     1140                        for index  in range(len(res.param_list)): 
     1141                            #save only fitted values 
     1142                            batch_outputs[res.param_list[index]].append(ERROR) 
     1143                            batch_inputs["error on %s" % res.param_list[index]].append(ERROR) 
    11121144                    else: 
    11131145                        cell = BatchCell() 
     
    11161148                        batch_outputs["Chi2"].append(cell) 
    11171149                        # add parameters to batch_results 
    1118                         param_list = model.getParamList() 
    1119                         for param in model.getDispParamList(): 
    1120                             if not model.is_fittable(param) and \ 
    1121                                 param in param_list: 
    1122                                 param_list.remove(param) 
    11231150                        for param in param_list: 
    11241151                            # save value of  fixed parameters 
     
    11421169                    fitproblem = self.page_finder[pid][data.id] 
    11431170                    qmin, qmax = fitproblem.get_range() 
    1144                     flag = issubclass(data.__class__, Data2D) 
    1145                     if not flag: 
    1146                         if len(res.theory) == len(res.index) and \ 
    1147                             len(res.index) == len(data.y): 
    1148                             correct_result = True 
     1171                    
     1172                    if correct_result: 
     1173                        if not is_data2d: 
    11491174                            self._complete1D(x=data.x, y=res.theory, page_id=pid,  
    11501175                                         elapsed=None,  
     
    11541179                                         data=data, update_chisqr=False,  
    11551180                                         source='fit') 
    1156                             self.on_set_batch_result(page_id=pid,  
    1157                                              fid=data.id,  
    1158                                              batch_outputs=batch_outputs,  
    1159                                              batch_inputs=batch_inputs) 
    11601181                        else: 
    1161                             data_name = str(None) 
    1162                             if data is not None: 
    1163                                 data_name = str(data.name) 
    1164                             model_name = str(None) 
    1165                             if model is not None: 
    1166                                 model_name = str(model.name) 
    1167                             msg += "Data %s and Model %s did not fit.\n" % (data_name,  
    1168                                                                             model_name) 
    1169                              
    1170                     else: 
    1171                         if len(res.theory)== len(res.index) and \ 
    1172                             len(res.index) == len(data.data): 
    1173                             correct_result = True 
    11741182                            self._complete2D(image=res.theory, data=data, 
    11751183                                          model=model, 
     
    11811189                                         update_chisqr=False,  
    11821190                                         source='fit') 
    1183                             self.on_set_batch_result(page_id=pid,  
     1191                    self.on_set_batch_result(page_id=pid,  
    11841192                                             fid=data.id,  
    11851193                                             batch_outputs=batch_outputs,  
    11861194                                             batch_inputs=batch_inputs) 
    1187                         else: 
    1188                             data_name = str(None) 
    1189                             if data is not None: 
    1190                                 data_name = str(data.name) 
    1191                             model_name = str(None) 
    1192                             if model is not None: 
    1193                                 model_name = str(model.name) 
    1194                             msg += "Data %s and Model %s did not fit.\n" % (data_name,  
    1195                                                                             model_name) 
    1196                      
     1195         
    11971196        wx.PostEvent(self.parent, StatusEvent(status=msg, error="error", 
    11981197                                                              type="stop")) 
Note: See TracChangeset for help on using the changeset viewer.