1 | #pragma rtGlobals=1 // Use modern global access method. |
---|
2 | #pragma version=5.0 |
---|
3 | #pragma IgorVersion=6.0 |
---|
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 | #include "ProDiv" version>=5.0 |
---|
30 | #include "ProtocolAsPanel" version>=5.0 |
---|
31 | //#include "RawDataReader" version>=5.0 //branched 29MAR07 |
---|
32 | #include "RawWindowHook" version>=5.0 |
---|
33 | #include "RectAnnulAvg" version>=5.0 |
---|
34 | #include "Schematic" version>=5.0 |
---|
35 | #include "Tile_2D" version>=5.0 |
---|
36 | #include "Transmission" version>=5.0 |
---|
37 | //#include "VAXFileUtils" version>=5.0 //branched 29MAR07 |
---|
38 | #include "WorkFileUtils" version>=5.0 |
---|
39 | #include "WriteQIS" version>=5.0 |
---|
40 | // removed RT button from main panel AUG2006 |
---|
41 | // removed RT ipf file in 29MAR07 branch (do not delete, but do not include or maintain) |
---|
42 | //#include "RealTimeUpdate_RT" version>=5.0 |
---|
43 | #include "SANSPreferences" version>=5.0 //NEW 05MAY03 |
---|
44 | #include "Subtract_1D" version>=5.0 //NEW 14MAY03 |
---|
45 | |
---|
46 | #include "FACILITY_Utils" //new in the 29MAR07 branch |
---|
47 | #include "FACILITY_DataReadWrite" //new in the 29MAR07 branch |
---|
48 | #include "SANS_Utilities" //new in the 29MAR07 branch |
---|
49 | |
---|
50 | // to include the analysis packages, uncomment the following |
---|
51 | // include statement and click "compile" at the bottom of this window. |
---|
52 | // ** the SANSModels menu will appear, and the packages will be |
---|
53 | // available under the Macros menu as usual. |
---|
54 | |
---|
55 | //#include "Analysis_SRK" |
---|
56 | |
---|
57 | |
---|
58 | // a simple list of items to add to the Beta menu |
---|
59 | // to allow testing of these features |
---|
60 | // |
---|
61 | // To activate the SANSBeta menu, change "xMenu" to "Menu" |
---|
62 | // and click "compile" at the bottom of this window. The SANSBeta |
---|
63 | // menu will appear in the menubar. |
---|
64 | // |
---|
65 | Menu "SANSBeta" |
---|
66 | "FillEMPUsingSelection" |
---|
67 | "GuessEveryTransFiles" |
---|
68 | "GuessSelectedTransFiles" |
---|
69 | "ClearSelectedTransAssignments" |
---|
70 | "-" |
---|
71 | //// "CreateRunNumList" |
---|
72 | //// "TransList" |
---|
73 | "ScatteringAtSDDList" |
---|
74 | //// "RemoveRunFromList" |
---|
75 | "FillMREDList" |
---|
76 | "-" |
---|
77 | //// "Set3NSORTFiles" |
---|
78 | "CreateTableToCombine" |
---|
79 | "DoCombineFiles" |
---|
80 | "-" |
---|
81 | "Convert To Lens" |
---|
82 | "Convert To Pinhole" |
---|
83 | "-" |
---|
84 | "AddALLToLayout" |
---|
85 | |
---|
86 | End |
---|