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 c85c180 was
6bbeacd4,
checked in by Gervaise Alina <gervyh@…>, 14 years ago
|
remove other type of data
|
-
Property mode set to
100644
|
File size:
1.7 KB
|
Rev | Line | |
---|
[e9b4cc4] | 1 | |
---|
| 2 | |
---|
[e54d2c32] | 3 | from data_util.calcthread import CalcThread |
---|
[e9b4cc4] | 4 | |
---|
| 5 | class FitThread(CalcThread): |
---|
[ed2ea6a] | 6 | """Thread performing the fit """ |
---|
[e9b4cc4] | 7 | |
---|
[e54d2c32] | 8 | def __init__(self, parent, |
---|
| 9 | fn, |
---|
| 10 | handler, |
---|
| 11 | pars=None, |
---|
[e9b4cc4] | 12 | completefn = None, |
---|
| 13 | updatefn = None, |
---|
| 14 | yieldtime = 0.01, |
---|
| 15 | worktime = 0.01 |
---|
| 16 | ): |
---|
| 17 | CalcThread.__init__(self,completefn, |
---|
| 18 | updatefn, |
---|
| 19 | yieldtime, |
---|
| 20 | worktime) |
---|
| 21 | self.parent = parent |
---|
[e54d2c32] | 22 | self.handler = handler |
---|
| 23 | self.fitter = fn |
---|
[e9b4cc4] | 24 | self.pars = pars |
---|
| 25 | self.starttime = 0 |
---|
[e54d2c32] | 26 | self.updatefn = updatefn |
---|
| 27 | |
---|
[e9b4cc4] | 28 | def isquit(self): |
---|
[ed2ea6a] | 29 | """ |
---|
[5062bbf] | 30 | :raise KeyboardInterrupt: when the thread is interrupted |
---|
| 31 | |
---|
[ed2ea6a] | 32 | """ |
---|
[e9b4cc4] | 33 | try: |
---|
| 34 | CalcThread.isquit(self) |
---|
| 35 | except KeyboardInterrupt: |
---|
| 36 | raise KeyboardInterrupt |
---|
| 37 | |
---|
| 38 | def compute(self): |
---|
[ed2ea6a] | 39 | """ |
---|
[5062bbf] | 40 | Perform a fit |
---|
[ed2ea6a] | 41 | """ |
---|
[e9b4cc4] | 42 | try: |
---|
[e54d2c32] | 43 | self.handler.starting_fit() |
---|
| 44 | self.updatefn() |
---|
[ed2ea6a] | 45 | #Result from the fit |
---|
[e54d2c32] | 46 | result = self.fitter.fit(handler=self.handler, curr_thread=self) |
---|
| 47 | self.updatefn() |
---|
[e9b4cc4] | 48 | self.complete(result= result, |
---|
[6bbeacd4] | 49 | pars = self.pars) |
---|
[785c8233] | 50 | |
---|
[e54d2c32] | 51 | except KeyboardInterrupt, msg: |
---|
[e9b4cc4] | 52 | # Thread was interrupted, just proceed and re-raise. |
---|
| 53 | # Real code should not print, but this is an example... |
---|
[ad6dd4c] | 54 | #print "keyboard exception" |
---|
[a6a7e8a] | 55 | #Stop on exception during fitting. Todo: need to put some mssg and reset progress bar. |
---|
[e54d2c32] | 56 | self.handler.error(msg=msg) |
---|
[5062bbf] | 57 | |
---|
Note: See
TracBrowser
for help on using the repository browser.