Changeset 2d8018f in sasview
- Timestamp:
- Mar 14, 2013 10:20:13 AM (12 years ago)
- 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:
- 98b12205
- Parents:
- b4fdf0d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/src/sans/perspectives/calculator/gen_scatter_panel.py
r4b30118 r2d8018f 130 130 self.reader = None 131 131 self.ext = None 132 self.id = 'Gen eric Scattering'132 self.id = 'GenSANS' 133 133 self.file_name = '' 134 134 self.time_text = None … … 369 369 Do the layout for the button widgets 370 370 """ 371 self.est_time = '*Estimated Computation time : %s'371 self.est_time = '*Estimated Computation time :\n %s' 372 372 self.time_text = wx.StaticText(self, -1, self.est_time% str('2 sec') ) 373 373 self.orient_combo = self._fill_orient_combo() … … 384 384 Calculation time estimation 385 385 """ 386 # magic equation: not very accurate 387 factor = 1 386 388 n_qbins = float(self.npt_ctl.GetValue()) 387 389 n_qbins *= n_qbins 388 390 n_pixs = float(self.parent.get_npix()) 389 391 if self.is_avg: 392 factor = 6 390 393 n_pixs *= (n_pixs / 200) 391 394 x_in = n_qbins * n_pixs / 100000 392 # magic equation: not very accurate 393 etime = 1.0 + 0.085973 * x_in 395 etime = factor + 0.085973 * x_in 394 396 return int(etime) 395 397 … … 939 941 """ 940 942 out = numpy.empty(0) 941 s = time.time()943 #s = time.time() 942 944 for ind in range(len(input[0])): 943 945 if self.is_avg: … … 956 958 outi = self.model.runXY(inputi) 957 959 out = numpy.append(out, outi) 958 print time.time() - s960 #print time.time() - s 959 961 if self.is_avg or self.is_avg == None: 960 962 self._draw1D(out) -
sanscalculator/src/sans/calculator/sans_gen.py
r9624cda r2d8018f 172 172 raise ValueError, msg 173 173 i_out = numpy.zeros_like(x[0]) 174 #import time175 #s = time.time()176 174 # 1D I is found at y =0 in the 2D pattern 177 175 out = self._gen(x[0], [], i_out ) 178 #print "i_out_time", time.time() - s179 176 return out 180 177 else: … … 191 188 if x.__class__.__name__ == 'list': 192 189 i_out = numpy.zeros_like(x[0]) 193 #import time194 #s = time.time()195 190 out = self._gen(x[0], x[1], i_out) 196 #print "i_out_time", time.time() - s197 191 return out 198 192 else:
Note: See TracChangeset
for help on using the changeset viewer.