Changeset 739
- Timestamp:
- Sep 14, 2010 2:09:23 PM (12 years ago)
- Location:
- sans/Dev/trunk/NCNR_User_Procedures
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Common/NIST_XML_v40.ipf
r734 r739 131 131 endif 132 132 elseif(exists(xmlDataSetFolder+"dQl")) 133 //USA S Data133 //USANS Data 134 134 Wave dQl = $(xmlDataSetFolder+"dQl") 135 dQv = dQl[0]135 dQv = abs(dQl[0]) 136 136 137 137 USANS_CalcWeights(baseStr,dQv) … … 262 262 endif 263 263 elseif(exists(xmlDataFolder+"dQl")) 264 //USA S Data264 //USANS Data 265 265 Wave dQl = $(xmlDataFolder+"dQl") 266 dQv = - dQl[0]//make it positive again266 dQv = abs(dQl[0]) //make it positive again 267 267 268 268 USANS_CalcWeights(baseStr,dQv) … … 1048 1048 //Use the evil extra column for the resolution "information". Should probably switch to using slit_length in collimation. 1049 1049 Duplicate/O qw,dumWave 1050 dumWave = - dQv1050 dumWave = dQv //written out as a positive value, since the column is identified by its label, dQl 1051 1051 1052 1052 //Data -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS/USANS_Includes_v230.ipf
r693 r739 31 31 #include "NCNR_Utils" 32 32 #include "MultipleReduce" 33 #include "WriteQIS" 33 34 34 35 //AJJ for data set output? -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/USANS/WriteUSANSData.ipf
r690 r739 240 240 //Use the evil extra column for the resolution "information". Should probably switch to using slit_length in collimation. 241 241 Duplicate/O qvals,dumWave 242 dumWave = - dQv242 dumWave = dQv //written out as a positive value, since the column is identified by its label, dQl 243 243 /// 244 244
Note: See TracChangeset
for help on using the changeset viewer.