- Timestamp:
- Apr 11, 2019 3:05:25 PM (4 years ago)
- Location:
- sans/Dev
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/V_DetectorCorrections.ipf
r1133 r1144 1519 1519 Proc pV_SubtractReadNoiseBack(folder,ReadNoise) 1520 1520 String folder="RAW" 1521 Variable readNoise= 2001521 Variable readNoise=3160 1522 1522 1523 1523 V_SubtractReadNoiseBack(folder,readNoise) … … 1540 1540 Proc pV_MedianAndReadNoiseBack(folder,ReadNoise) 1541 1541 String folder="RAW" 1542 Variable readNoise= 2001542 Variable readNoise=3160 1543 1543 1544 1544 V_MedianAndReadNoiseBack(folder,readNoise) -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/V_FileCatalog.ipf
r1133 r1144 311 311 String infoStr 312 312 String event= StringByKey("EVENT",infoStr) 313 314 Variable ii 315 313 316 // Print "EVENT= ",event 314 317 strswitch(event) … … 317 320 // Variable ypix= NumberByKey("MOUSEY",infoStr) 318 321 // PopupContextualMenu/C=(xpix, ypix) "yes;no;maybe;" 319 PopupContextualMenu "Load RAW;Load MSK;Load DIV; "322 PopupContextualMenu "Load RAW;Load MSK;Load DIV;-;Send to MRED;" 320 323 321 324 WAVE/T Filenames = $"root:Packages:NIST:VSANS:CatVSHeaderInfo:Filenames" … … 340 343 341 344 endif 342 break ;345 break 343 346 344 347 case "Load MSK": … … 348 351 err = V_LoadHDF5Data(FileNames[V_StartRow],"MSK") 349 352 350 break ;353 break 351 354 352 355 case "Load DIV": … … 356 359 err = V_LoadHDF5Data(FileNames[V_StartRow],"DIV") 357 360 358 break; 361 break 362 case "Send to MRED": 363 // 364 SVAR/Z numList=root:Packages:NIST:VSANS:Globals:MRED:gFileNumList 365 if(SVAR_Exists(numList)) 366 GetSelection table,CatVSANSTable,1 367 for(ii=V_StartRow;ii<=V_endRow;ii+=1) 368 // Print "selected " + FileNames[ii] 369 numList += fileNames[ii] + "," 370 endfor 371 // pop the menu on the mred panel 372 V_MREDPopMenuProc("",1,"") 373 endif 374 break 359 375 360 376 endswitch //popup selection -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/V_Initialize.ipf
r1143 r1144 22 22 //************************ 23 23 24 Constant kVSANSVersion = 7.9 124 Constant kVSANSVersion = 7.92 25 25 26 26 // TODO -- need to set up a separate file of "constants" or "globals" where the actual numbers are … … 463 463 Printf "Hook cleaned out RawVSANS, experiment saved\r" 464 464 465 NVAR gHighResBinning = root:Packages:NIST:VSANS:Globals:gHighResBinning465 NVAR/Z gHighResBinning = root:Packages:NIST:VSANS:Globals:gHighResBinning 466 466 if(gHighResBinning == 1) 467 467 // these KillDF are a bad idea - it wipes out all of the current work -
sans/Dev/trunk/NCNR_User_Procedures/Reduction/VSANS/V_Menu.ipf
r1141 r1144 25 25 "-" 26 26 "Show Mask for Averaging",V_Display_Four_Panels() 27 "Annular Binning",Annular_Binning()28 "Write Annular Data",V_Write1DAnnular()29 "Trim I(q) points",V_CombineDataGraph()27 // "Annular Binning",Annular_Binning() 28 // "Write Annular Data",V_Write1DAnnular() 29 // "Trim I(q) points",V_CombineDataGraph() 30 30 "-" 31 31 "Derive Beam Centers From Reference",V_DeriveBeamCenters() … … 41 41 "Patch Intent using CatTable",V_Patch_Intent_catTable() 42 42 "-" 43 "Flip Lateral Offset",V_PatchDet_Offset()44 "Mark Lateral Flip Done",V_MarkLeftRightFlip_Done()45 "Mark Lateral Flip NOT Done",V_MarkLeftRightFlip_Not_Done()46 "Patch Detector Panel Gap",V_PatchDet_Gap()47 "Read Detetcor Panel Gap",V_ReadDet_Gap()43 // "Flip Lateral Offset",V_PatchDet_Offset() 44 // "Mark Lateral Flip Done",V_MarkLeftRightFlip_Done() 45 // "Mark Lateral Flip NOT Done",V_MarkLeftRightFlip_Not_Done() 46 // "Patch Detector Panel Gap",V_PatchDet_Gap() 47 // "Read Detetcor Panel Gap",V_ReadDet_Gap() 48 48 "Patch Detector Distance",V_PatchDet_Distance() 49 49 "Patch XY Pixel Size",V_Patch_XYPixelSize()
Note: See TracChangeset
for help on using the changeset viewer.