source: sans/Dev/trunk/NCNR_User_Procedures/Analysis/SA_includes_v400.ipf @ 473

Last change on this file since 473 was 473, checked in by srkline, 14 years ago

Changes to DoSaveFileDialog? are now package specific (U_ and A_) since including WriteQIS made a big mess, starting a long chain of dependencies... So now the function is in three places. There's got to be a common place.

File size: 2.4 KB
Line 
1#pragma rtGlobals=1             // Use modern global access method.
2#pragma version=4.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
11//always include the picker
12#include "SANSModelPicker_v40"                  version>=4.00
13//utility procedures
14#include "GaussUtils_v40"                               version>=4.00
15#include "NIST_XML_V40"                                 //added September 2008
16#include "PlotUtilsMacro_v40"                   version>=4.00
17#include "PlotManager_v40"                              version>=4.00
18
19#include "USANS_SlitSmearing_v40"
20#include "WriteModelData_v40"
21#include "Wrapper_v40"
22#include "PlotUtils2D_v40"
23#include "GizmoCylinder_v40"
24
25#include "CheckVersionFTP"                              //added June 2008
26
27
28Menu "SANS Models"
29        "Fit Manager", Init_WrapperPanel()
30        "Load Model Functions",Execute/P "INSERTINCLUDE \"SANSModelPicker_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "ModelPicker_Panel()"
31        "Load and Plot Manager", Show_Plot_Manager()
32        "Freeze Model"
33        "Write Model Data"
34        "-"
35        Submenu "Packages"
36                "Sum Two Models",Execute/P "INSERTINCLUDE \"SumSANSModels_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "Init_SumModelPanel()"
37                "Global Fitting",Execute/P "INSERTINCLUDE \"GlobalFit2_NCNR_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "WM_NewGlobalFit1#InitNewGlobalFitPanel()"
38                "Determine Invariant",Execute/P "INSERTINCLUDE \"Invariant_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "Make_Invariant_Panel()"
39                "Do Linear Fits",Execute/P "INSERTINCLUDE \"LinearizedFits_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "A_OpenFitPanel()"
40        End
41        "-"
42        Submenu "2D Utilities"
43                "Generate Fake QxQy Data",FakeQxQy()
44                "Show Cylinder Orientation"
45                "Change Angle"
46        end
47        "-"
48        "Feedback or Bug Report",OpenTracTicketPage()
49        "Open Help Movie Page",OpenHelpMoviePage()
50        "Check for Updates",CheckForLatestVersion()
51End
52
53Function OpenTracTicketPage()
54        DoAlert 1,"Your web browser will open to a page where you can submit your bug report or feature request. OK?"
55        if(V_flag==1)
56                BrowseURL "http://danse.chem.utk.edu/trac/newticket"
57        endif
58End
59
60Function OpenHelpMoviePage()
61        DoAlert 1,"Your web browser will open to a page where you can view help movies. OK? (You must have QuickTime installed)"
62        if(V_flag==1)
63                BrowseURL "ftp://webster.ncnr.nist.gov/pub/sans/kline/movies/"
64                // Andrew has set up a http page too. Try to use this in the future
65                //BrowseURL "http://www.ncnr.nist.gov/programs/sans/data/movies/reduction_analysis_movies.html"
66        endif
67End
Note: See TracBrowser for help on using the repository browser.