- Timestamp:
- Feb 12, 2016 2:41:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/Nexus_VSANS_Write.ipf
r979 r980 209 209 // file header. nothing more is needed (possibly) 210 210 // 211 // TODO -- I want to re-visit the prop ogation of errors in the DIV file. No errors are ever calculated/saved211 // TODO -- I want to re-visit the propagation of errors in the DIV file. No errors are ever calculated/saved 212 212 // during the generation of the file, but there's no reason it couldn't. the idea is that the plex 213 213 // is counted so long that the errors are insignificant compared to the data errors, but that may not … … 216 216 // 217 217 // TODO -- make the number of pixels GLOBAL 218 // TODO -- there will be lots of work to do to develop the procedures necessary to actually generate the 219 // 9 data sets to become the DIV file contents. More complexity here than for the simple SANS case. 218 220 // 219 221 Proc H_Setup_VSANS_DIV_Structure() … … 226 228 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument 227 229 Make/O/T/N=1 name = "NG3_VSANS" 228 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_B230 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_B 229 231 Make/O/D/N=(320,320) data = abs(gnoise(p+q)) 230 Make/O/D/N=(320,320) error = 0.01*abs(gnoise(p+q))231 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_MR232 Make/O/D/N=(48, 256) data = abs(gnoise(p+q))233 Make/O/D/N=(48, 256)error = 0.01*abs(gnoise(p+q))234 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_ML235 Make/O/D/N=(48, 256) data = abs(gnoise(p+q))236 Make/O/D/N=(48, 256)error = 0.01*abs(gnoise(p+q))237 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_MT238 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 239 Make/O/D/N=(128,48) error = 0.01*abs(gnoise(p+q))240 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_MB241 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 242 Make/O/D/N=(128,48) error = 0.01*abs(gnoise(p+q))243 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_FR244 Make/O/D/N=(48, 256) data = abs(gnoise(p+q))245 Make/O/D/N=(48, 256)error = 0.01*abs(gnoise(p+q))246 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_FL247 Make/O/D/N=(48, 256) data = abs(gnoise(p+q))248 Make/O/D/N=(48, 256)error = 0.01*abs(gnoise(p+q))249 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_FT250 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 251 Make/O/D/N=(128,48) error = 0.01*abs(gnoise(p+q))252 NewDataFolder/O/S root:VSANS_DIV_file:entry: data_FB253 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 254 Make/O/D/N=(128,48) error = 0.01*abs(gnoise(p+q))232 Make/O/D/N=(320,320) linear_data_error = 0.01*abs(gnoise(p+q)) 233 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_MR 234 Make/O/D/N=(48,128) data = abs(gnoise(p+q)) 235 Make/O/D/N=(48,128) linear_data_error = 0.01*abs(gnoise(p+q)) 236 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_ML 237 Make/O/D/N=(48,128) data = abs(gnoise(p+q)) 238 Make/O/D/N=(48,128) linear_data_error = 0.01*abs(gnoise(p+q)) 239 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_MT 240 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 241 Make/O/D/N=(128,48) linear_data_error = 0.01*abs(gnoise(p+q)) 242 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_MB 243 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 244 Make/O/D/N=(128,48) linear_data_error = 0.01*abs(gnoise(p+q)) 245 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_FR 246 Make/O/D/N=(48,128) data = abs(gnoise(p+q)) 247 Make/O/D/N=(48,128) linear_data_error = 0.01*abs(gnoise(p+q)) 248 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_FL 249 Make/O/D/N=(48,128) data = abs(gnoise(p+q)) 250 Make/O/D/N=(48,128) linear_data_error = 0.01*abs(gnoise(p+q)) 251 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_FT 252 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 253 Make/O/D/N=(128,48) linear_data_error = 0.01*abs(gnoise(p+q)) 254 NewDataFolder/O/S root:VSANS_DIV_file:entry:instrument:detector_FB 255 Make/O/D/N=(128,48) data = abs(gnoise(p+q)) 256 Make/O/D/N=(128,48) linear_data_error = 0.01*abs(gnoise(p+q)) 255 257 256 258 SetDataFolder root:
Note: See TracChangeset
for help on using the changeset viewer.