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
RevLine 
[157]1#pragma rtGlobals=1             // Use modern global access method.
[256]2#pragma version=4.0
[157]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
[256]12#include "SANSModelPicker_v40"                  version>=4.00
[157]13//utility procedures
[256]14#include "GaussUtils_v40"                               version>=4.00
[403]15#include "NIST_XML_V40"                                 //added September 2008
[256]16#include "PlotUtilsMacro_v40"                   version>=4.00
17#include "PlotManager_v40"                              version>=4.00
[157]18
[354]19#include "USANS_SlitSmearing_v40"
20#include "WriteModelData_v40"
[256]21#include "Wrapper_v40"
22#include "PlotUtils2D_v40"
23#include "GizmoCylinder_v40"
[157]24
[377]25#include "CheckVersionFTP"                              //added June 2008
26
27
[172]28Menu "SANS Models"
29        "Fit Manager", Init_WrapperPanel()
[256]30        "Load Model Functions",Execute/P "INSERTINCLUDE \"SANSModelPicker_v40\"";Execute/P "COMPILEPROCEDURES ";Execute/P "ModelPicker_Panel()"
[315]31        "Load and Plot Manager", Show_Plot_Manager()
[200]32        "Freeze Model"
[176]33        "Write Model Data"
[172]34        "-"
[157]35        Submenu "Packages"
[256]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()"
[157]40        End
[196]41        "-"
[310]42        Submenu "2D Utilities"
43                "Generate Fake QxQy Data",FakeQxQy()
44                "Show Cylinder Orientation"
45                "Change Angle"
46        end
47        "-"
[196]48        "Feedback or Bug Report",OpenTracTicketPage()
[250]49        "Open Help Movie Page",OpenHelpMoviePage()
[377]50        "Check for Updates",CheckForLatestVersion()
[196]51End
52
53Function OpenTracTicketPage()
[246]54        DoAlert 1,"Your web browser will open to a page where you can submit your bug report or feature request. OK?"
[196]55        if(V_flag==1)
56                BrowseURL "http://danse.chem.utk.edu/trac/newticket"
57        endif
[250]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/"
[400]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"
[250]66        endif
[472]67End
Note: See TracBrowser for help on using the repository browser.