[41] | 1 | #pragma rtGlobals=1 // Use modern global access method. |
---|
| 2 | #pragma version=5.0 |
---|
[570] | 3 | #pragma IgorVersion=6.1 |
---|
[41] | 4 | |
---|
| 5 | |
---|
| 6 | //************************** |
---|
| 7 | // Vers 1.2 091901 |
---|
| 8 | // |
---|
| 9 | //**************************** |
---|
| 10 | // |
---|
| 11 | |
---|
| 12 | // |
---|
| 13 | Menu "SANS" |
---|
| 14 | "Initialize" |
---|
| 15 | "SANS Help" |
---|
| 16 | "-" |
---|
| 17 | "Main Control Panel",DoWindow/F Main_Panel |
---|
[237] | 18 | "SASCALC" |
---|
[41] | 19 | "-" |
---|
| 20 | Submenu "Data Display" |
---|
| 21 | "Show 2D SANS Data",DoWindow/F SANS_Data |
---|
| 22 | "Show File Table",ShowCatWindow() |
---|
| 23 | End |
---|
| 24 | Submenu "Input Panels" |
---|
| 25 | "Calculate Transmissions",CalcTrans() |
---|
| 26 | "Build Reduction Protocols",ReductionProtocolPanel() |
---|
| 27 | "Reduce Multiple Files",ReduceMultipleFiles() |
---|
| 28 | "Patch Files",PatchFiles() |
---|
| 29 | "1D Average",ShowAveragePanel() |
---|
| 30 | End |
---|
| 31 | Submenu "1-D Processing" |
---|
| 32 | "Load and Plot 1D Data",Show_Plot_Manager() |
---|
| 33 | "Open FIT Panel",OpenFITPanel() |
---|
| 34 | "Sort and Combine data",ShowNSORTPanel() |
---|
[612] | 35 | // "Subtract 1D Data Sets",OpenSubtract1DPanel() |
---|
| 36 | "Subtract 1D Data Sets",MakeDAPanel() //new version |
---|
[41] | 37 | End |
---|
| 38 | Submenu "2-D Processing" |
---|
| 39 | "2D Work file Math",Show_WorkMath_Panel() |
---|
| 40 | "Tile Raw 2D files",Show_Tile_2D_Panel() |
---|
| 41 | "Export 2D ASCII data",Export_RAW_Ascii_Panel() |
---|
| 42 | End |
---|
[377] | 43 | "-" |
---|
[665] | 44 | "NCNR Preferences",Show_Preferences_Panel() |
---|
[661] | 45 | "Feedback or Bug Report",OpenTracTicketPage() |
---|
| 46 | "Open Help Movie Page",OpenHelpMoviePage() |
---|
[377] | 47 | "Check for Updates",CheckForLatestVersion() |
---|
[41] | 48 | // Submenu "Utility Routines" |
---|
| 49 | // "Clear Work Folders" |
---|
| 50 | // "Clear Root Folder" |
---|
| 51 | // End |
---|
| 52 | End |
---|
| 53 | |
---|
| 54 | Function SANSHelp() |
---|
[316] | 55 | DisplayHelpTopic/Z/K=1 "SANS Data Reduction Tutorial" |
---|
| 56 | if(V_flag !=0) |
---|
| 57 | DoAlert 0,"The SANS Data Reduction Tutorial Help file could not be found" |
---|
| 58 | endif |
---|
[41] | 59 | End |
---|