Ignore:
Timestamp:
Oct 8, 2016 2:34:03 PM (8 years ago)
Author:
jhbakker
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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
51a4d78
Parents:
6df015de
Message:

Data1D class changed to include SESANS Data format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/basepage.py

    r6df015de r7988501  
    282282                           num=self.npts_x, endpoint=True) 
    283283        self.data = Data1D(x=x) 
    284         self.data.xaxis('\\rm{Q}', "A^{-1}") 
    285         self.data.yaxis('\\rm{Intensity}', "cm^{-1}") 
     284        #self.data.xaxis('\\rm{Q}', "A^{-1}") 
     285        self.data.xaxis('\\rm{X}', "") 
     286        #self.data.yaxis('\\rm{Intensity}', "cm^{-1}") 
     287        self.data.yaxis('\\rm{Y}', "") 
    286288        self.data.is_data = False 
    287289        self.data.id = str(self.uid) + " data" 
     
    308310                           num=self.npts_x, endpoint=True, base=10.0) 
    309311        self.data = Data1D(x=x) 
    310         self.data.xaxis('\\rm{Q}', "A^{-1}") 
    311         self.data.yaxis('\\rm{Intensity}', "cm^{-1}") 
     312        #self.data.xaxis('\\rm{Q}', "A^{-1}") 
     313        #self.data.yaxis('\\rm{Intensity}', "cm^{-1}") 
     314        self.data.xaxis('\\rm{X}', "") 
     315        self.data.yaxis('\\rm{Y}', "") 
    312316        self.data.is_data = False 
    313317        self.data.id = str(self.uid) + " data" 
Note: See TracChangeset for help on using the changeset viewer.