1 | #pragma rtGlobals=1 // Use modern global access method. |
---|
2 | #pragma version=5.0 |
---|
3 | #pragma IgorVersion=6.1 |
---|
4 | |
---|
5 | //************* |
---|
6 | // the list of files to include in the SANS reduction experiment |
---|
7 | // - files must be located somewhere in the User Procedures folder |
---|
8 | // or sub-folders |
---|
9 | // |
---|
10 | // these procedure files are those used in version 5.0 of the |
---|
11 | // SANS Reduction macros, August 2006 |
---|
12 | |
---|
13 | #include "AvgGraphics" version>=5.0 |
---|
14 | #include "Buttons" version>=5.0 |
---|
15 | #include "CatVSTable" version>=5.0 |
---|
16 | #include "CircSectAve" version>=5.0 |
---|
17 | #include "Correct" version>=5.0 |
---|
18 | #include "DisplayUtils" version>=5.0 |
---|
19 | #include "FIT_Ops" version>=5.0 |
---|
20 | #include "Initialize" version>=5.0 |
---|
21 | #include "MainPanel" version>=5.0 |
---|
22 | #include "Marquee" version>=5.0 |
---|
23 | #include "MaskUtils" version>=5.0 |
---|
24 | #include "Menu" version>=5.0 |
---|
25 | #include "MultipleReduce" version>=5.0 |
---|
26 | #include "NSORT" version>=5.0 |
---|
27 | #include "PatchFiles" version>=5.0 |
---|
28 | //#include "PlotUtils" version>=5.0 |
---|
29 | //AJJ October 2008 - switch to shared file loader |
---|
30 | #include "PlotUtilsMacro_v40" |
---|
31 | #include "NIST_XML_v40" |
---|
32 | //#include "cansasXML_v11" |
---|
33 | #include "USANS_SlitSmearing_v40" |
---|
34 | #include "GaussUtils_v40" // for isSANSResolution - could put this function elsewhere |
---|
35 | // |
---|
36 | #include "ProDiv" version>=5.0 |
---|
37 | #include "ProtocolAsPanel" version>=5.0 |
---|
38 | //#include "RawDataReader" version>=5.0 //branched 29MAR07 |
---|
39 | #include "RawWindowHook" version>=5.0 |
---|
40 | #include "RectAnnulAvg" version>=5.0 |
---|
41 | #include "Schematic" version>=5.0 |
---|
42 | #include "Tile_2D" version>=5.0 |
---|
43 | #include "Transmission" version>=5.0 |
---|
44 | //#include "VAXFileUtils" version>=5.0 //branched 29MAR07 |
---|
45 | #include "WorkFileUtils" version>=5.0 |
---|
46 | #include "WriteQIS" version>=5.0 |
---|
47 | // removed RT button from main panel AUG2006 |
---|
48 | // removed RT ipf file in 29MAR07 branch (do not delete, but do not include or maintain) |
---|
49 | //Add back Real Time for ICE |
---|
50 | #include "RealTimeUpdate_RT" version>=5.0 |
---|
51 | #include "SANSPreferences" version>=5.0 //NEW 05MAY03 |
---|
52 | #include "Subtract_1D" version>=5.0 //NEW 14MAY03 |
---|
53 | |
---|
54 | #include "NCNR_Utils" //new in the 29MAR07 branch |
---|
55 | #include "NCNR_DataReadWrite" //new in the 29MAR07 branch |
---|
56 | #include "SANS_Utilities" //new in the 29MAR07 branch |
---|
57 | |
---|
58 | // new in Jan 2008 |
---|
59 | #include "SASCALC" |
---|
60 | #include "CheckVersionFTP" //added June 2008 |
---|
61 | #include "MultScatter_MonteCarlo_2D" //Oct 2008 SRK for SASCALC simulation |
---|
62 | |
---|
63 | |
---|
64 | #include "TISANE" |
---|
65 | |
---|
66 | |
---|
67 | //AJJ Oct 2008 |
---|
68 | #include "PlotManager_v40" |
---|
69 | |
---|
70 | // SRK JUN2009 |
---|
71 | #include "Smear_2D" //2D resolution calculation and smearing |
---|
72 | |
---|
73 | //AJJ Nov 2009 |
---|
74 | #include "DataSetHandling" |
---|
75 | #include "WriteModelData_v40" |
---|
76 | |
---|
77 | |
---|
78 | // a simple list of items to add to the Beta menu |
---|
79 | // to allow testing of these features |
---|
80 | // |
---|
81 | // To activate the SANSBeta menu, change "xMenu" to "Menu" |
---|
82 | // and click "compile" at the bottom of this window. The SANSBeta |
---|
83 | // menu will appear in the menubar. |
---|
84 | // |
---|
85 | Menu "SANSBeta" |
---|
86 | "Help for Beta Operations",DisplayHelpTopic/Z/K=1 "Beta SANS Tools" |
---|
87 | "-" |
---|
88 | "FillEMPUsingSelection" |
---|
89 | // "GuessEveryTransFile" |
---|
90 | // "GuessSelectedTransFiles" |
---|
91 | "ClearSelectedTransAssignments" |
---|
92 | "-" |
---|
93 | //// "CreateRunNumList" |
---|
94 | //// "TransList" |
---|
95 | "ScatteringAtSDDList" |
---|
96 | //// "RemoveRunFromList" |
---|
97 | "FillMREDList" |
---|
98 | "-" |
---|
99 | //// "Set3NSORTFiles" |
---|
100 | "CreateTableToCombine" |
---|
101 | "DoCombineFiles" |
---|
102 | "-" |
---|
103 | "Convert To Lens" |
---|
104 | "Convert To Pinhole" |
---|
105 | "Patch Detector Pixel Size" |
---|
106 | "Read Detector Pixel Size" |
---|
107 | "Patch User Account Name" |
---|
108 | "Read User Account Name" |
---|
109 | "Patch Monitor Count" |
---|
110 | "Read Monitor Count" |
---|
111 | "Read Detector Count" |
---|
112 | "-" |
---|
113 | "PatchFileNameInHeader" |
---|
114 | "ReadFileNameInHeader" |
---|
115 | "-" |
---|
116 | "AddALLToLayout" |
---|
117 | |
---|
118 | End |
---|