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