- Timestamp:
- Nov 25, 2014 3:10:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_Igor_Procedures/NCNR_Package_Loader.ipf
r912 r950 49 49 "Event Mode Processing",EventModeLoader() 50 50 "Load Batch Fitting - Beta",BatchFitLoader() 51 "Load Simulation Run Builder",SimSANSRunListLoader() 52 "Automated SANS Reduction - Beta",AutomateSANSLoader() 51 53 52 54 // "-" … … 710 712 return(0) 711 713 End 714 715 // loads the Reduction package, then the Auto_Reduction panel 716 Function AutomateSANSLoader() 717 718 // be sure that the SANS reduction is loaded and compiles 719 NCNR_SANSReductionLoader("Load NCNR SANS Reduction Macros") 720 721 // then bring up the Auto_reduction panel 722 Execute/P "Auto_Reduce_Panel()" 723 724 return(0) 725 End 726 727 728 729 // for SANS simulation scripting, need to load the reduction, analysis, 730 // then the two scripting procedures 731 // 732 // -- this is to avoid the entanglement betwen analysis models and SASCALC (in reduction) 733 // 734 Function SimSANSRunListLoader() 735 736 // be sure that the SANS reduction is loaded and compiles 737 NCNR_SANSReductionLoader("Load NCNR SANS Reduction Macros") 738 739 // be sure that the SANS Analysis is loaded and compiles 740 NCNR_AnalysisLoader("Load NCNR Analysis Macros") 741 742 // then the Scripting files 743 Execute/P "INSERTINCLUDE \"MC_SimulationScripting\"" 744 Execute/P "INSERTINCLUDE \"MC_Script_Panels\"" 745 Execute/P "COMPILEPROCEDURES " 746 // Execute/P "InitializeAutoFitPanel()" 747 748 BuildMenu "Macros" 749 return(0) 750 End
Note: See TracChangeset
for help on using the changeset viewer.