source: sasview/sansview/perspectives/fitting/gui_thread.py @ 077809c

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 077809c was 077809c, checked in by Gervaise Alina <gervyh@…>, 15 years ago

working on refactoring gui_thread

  • Property mode set to 100644
File size: 4.3 KB
Line 
1
2
3import time
4import numpy
5import copy
6import math
7import sys
8import wx
9
10from data_util.calcthread import CalcThread
11from sans.fit.AbstractFitEngine import FitData2D, FitData1D, SansAssembly
12
13
14class CalcChisqr1D(CalcThread):
15    """
16       Compute chisqr
17    """
18    def __init__(self, data1d, model,
19                 smearer=None,
20                 qmin=None,
21                 qmax=None,
22                 completefn = None,
23                 updatefn   = None,
24                 yieldtime  = 0.01,
25                 worktime   = 0.01
26                 ):
27        CalcThread.__init__(self,completefn,
28                 updatefn,
29                 yieldtime,
30                 worktime)
31       
32        if model ==None or data1d ==None:
33            raise ValueError, "Need data and model to compute chisqr"
34       
35        if data1d.__class__.__name__ !="Data1D":
36            msg= str(data1d.__class__.__name__)
37            raise ValueError, "need Data1D to compute chisqr. Current class %s"%msg
38       
39        self.fitdata= FitData1D(data1d, smearer=smearer)
40        self.fitdata.setFitRange(qmin=qmin,qmax=qmax)
41        self.model = model
42       
43        self.starttime = 0 
44       
45    def isquit(self):
46        """
47             @raise KeyboardInterrupt: when the thread is interrupted
48        """
49        try:
50            CalcThread.isquit(self)
51        except KeyboardInterrupt:
52            raise KeyboardInterrupt   
53       
54       
55    def compute(self):
56        """
57            Compute the data given a model function
58        """
59        self.starttime = time.time()
60       
61        output= None
62        res=[]
63        try:
64            res = self.fitdata.residuals(self.model.run)
65            sum=0
66            for item in res:
67                # Check whether we need to bail out
68                self.isquit() 
69                if numpy.isfinite(item):
70                    sum +=item*item
71            if len(res)>0:
72                output = sum/ len(res)
73           
74            elapsed = time.time()-self.starttime
75            self.complete(output= output,  elapsed=elapsed)
76           
77        except KeyboardInterrupt:
78            # Thread was interrupted, just proceed and re-raise.
79            # Real code should not print, but this is an example...
80            raise
81        except: 
82            raise
83       
84class CalcChisqr2D(CalcThread):
85    """
86       Compute chisqr
87    """
88   
89    def __init__(self,data2d, model,
90                 qmin,
91                 qmax,
92                 completefn = None,
93                 updatefn   = None,
94                 yieldtime  = 0.01,
95                 worktime   = 0.01
96                 ):
97        CalcThread.__init__(self,completefn,
98                 updatefn,
99                 yieldtime,
100                 worktime)
101       
102        if model ==None or data2d ==None:
103            raise ValueError, "Need data and model to compute chisqr"
104       
105        if data2d.__class__.__name__ !="Data2D":
106            msg= str(data2d.__class__.__name__)
107            raise ValueError, "need Data2D to compute chisqr. Current class %s"%msg
108       
109        self.fitdata = FitData2D(data2d)
110        self.fitdata.setFitRange(qmin=qmin,qmax=qmax)
111     
112        self.model = model
113     
114        self.starttime = 0 
115       
116    def isquit(self):
117        """
118             @raise KeyboardInterrupt: when the thread is interrupted
119        """
120        try:
121            CalcThread.isquit(self)
122        except KeyboardInterrupt:
123            raise KeyboardInterrupt   
124       
125       
126    def compute(self):
127        """
128            Compute the data given a model function
129        """
130        self.starttime = time.time()
131       
132        output= None
133        res=[]
134        try:
135            res = self.fitdata.residuals(self.model.run)
136            sum=0
137            for item in res:
138                # Check whether we need to bail out
139                self.isquit() 
140                if numpy.isfinite(item):
141                    sum +=item*item
142            if len(res)>0:
143                output = sum/ len(res)
144           
145            elapsed = time.time()-self.starttime
146            self.complete(output= output,  elapsed=elapsed)
147           
148        except KeyboardInterrupt:
149            # Thread was interrupted, just proceed and re-raise.
150            # Real code should not print, but this is an example...
151            raise
152        except: 
153            raise
Note: See TracBrowser for help on using the repository browser.