Changeset db7a82e in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Aug 11, 2011 1:15:30 PM (13 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:
- fe857e2
- Parents:
- 9e2e7e9
- Location:
- sansguiframe/src/sans/guiframe
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/local_perspectives/plotting/AnnulusSlicer.py
r8c347a6 rdb7a82e 125 125 return 126 126 127 from DataLoader.manipulations import Ring127 from sans.dataloader.manipulations import Ring 128 128 rmin = min(math.fabs(self.inner_circle.get_radius()), 129 129 math.fabs(self.outer_circle.get_radius())) … … 535 535 return 536 536 mask = data.mask 537 from DataLoader.manipulations import Ringcut537 from sans.dataloader.manipulations import Ringcut 538 538 539 539 rmin = 0 -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/AzimutSlicer.py
r8c347a6 rdb7a82e 173 173 #print "phimin, phimax, rmin ,rmax",math.degrees(phimin), 174 174 # math.degrees(phimax), rmin ,rmax 175 #from DataLoader.manipulations import SectorQ175 #from sans.dataloader.manipulations import SectorQ 176 176 177 177 sect = new_sector(r_min=rmin, r_max=rmax, … … 290 290 """ 291 291 """ 292 from DataLoader.manipulations import SectorQ292 from sans.dataloader.manipulations import SectorQ 293 293 self.post_data(SectorQ) 294 294 … … 307 307 """ 308 308 """ 309 from DataLoader.manipulations import SectorPhi309 from sans.dataloader.manipulations import SectorPhi 310 310 self.post_data(SectorPhi ) 311 311 -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/SectorSlicer.py
r8c347a6 rdb7a82e 146 146 return 147 147 ## Averaging 148 from DataLoader.manipulations import SectorQ148 from sans.dataloader.manipulations import SectorQ 149 149 radius = self.qmax 150 150 phimin = -self.left_line.phi + self.main_line.theta -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/boxMask.py
r8c347a6 rdb7a82e 148 148 contained in that region and the error on that sum 149 149 """ 150 from DataLoader.manipulations import Boxcut150 from sans.dataloader.manipulations import Boxcut 151 151 ## Data 2D for which the pixel will be summed 152 152 data = self.base.data -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/boxSlicer.py
r8c347a6 rdb7a82e 538 538 Post data creating by averaging in Qx direction 539 539 """ 540 from DataLoader.manipulations import SlabX540 from sans.dataloader.manipulations import SlabX 541 541 self.post_data(SlabX, direction="X") 542 542 … … 555 555 Post data creating by averaging in Qy direction 556 556 """ 557 from DataLoader.manipulations import SlabY557 from sans.dataloader.manipulations import SlabY 558 558 self.post_data(SlabY, direction="Y") 559 559 -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/boxSum.py
r8c347a6 rdb7a82e 179 179 y_max = self.vertical_lines.y1 180 180 ##computation of the sum and its error 181 from DataLoader.manipulations import Boxavg181 from sans.dataloader.manipulations import Boxavg 182 182 box = Boxavg(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max) 183 183 self.count, self.error = box(self.base.data2D) -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/sectorMask.py
r8c347a6 rdb7a82e 121 121 mask = data.mask 122 122 ## Averaging 123 from DataLoader.manipulations import Sectorcut123 from sans.dataloader.manipulations import Sectorcut 124 124 radius = self.qmax 125 125 phimin = -self.left_line.phi + self.main_line.theta -
sansguiframe/src/sans/guiframe/state_reader.py
r8c347a6 rdb7a82e 33 33 from sans.guiframe.dataFitting import Data1D 34 34 from sans.guiframe.dataFitting import Data2D 35 from DataLoader.data_info import Collimation36 from DataLoader.data_info import Detector37 from DataLoader.data_info import Process38 from DataLoader.data_info import Aperture35 from sans.dataloader.data_info import Collimation 36 from sans.dataloader.data_info import Detector 37 from sans.dataloader.data_info import Process 38 from sans.dataloader.data_info import Aperture 39 39 from lxml import etree 40 40 import xml.dom.minidom
Note: See TracChangeset
for help on using the changeset viewer.