Changeset 828
- Timestamp:
- Aug 16, 2011 1:20:14 PM (11 years ago)
- Location:
- sans/Dev/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_Igor_Procedures/NCNR_Package_Loader.ipf
r693 r828 1 1 #pragma rtGlobals=1 // Use modern global access method. 2 2 #pragma IgorVersion=6.1 3 //#pragma IndependentModule=NCNRLoader //can't seem to get this to work properly...4 3 5 4 // load/unload courtesy of Jan Ilavsky … … 29 28 StrVarOrDefault("root:Packages:NCNRItemStr4a","Load NCNR SANS Live Data"), NCNR_SANSLiveLoader(StrVarOrDefault("root:Packages:NCNRItemStr4a","Load NCNR SANS Live Data")) 30 29 StrVarOrDefault("root:Packages:NCNRItemStr4b","-"), NCNR_SANSLiveLoader(StrVarOrDefault("root:Packages:NCNRItemStr4b","-")) 30 31 // for testing ONLY 32 "-" 33 "Load Polarization Reduction",Execute/P "INSERTINCLUDE \"Include_Polarization\"";Execute/P "COMPILEPROCEDURES " 34 35 "Load Batch Fitting",Execute/P "INSERTINCLUDE \"Auto_Fit\"";Execute/P "COMPILEPROCEDURES ";Execute/P "InitializeAutoFitPanel()" 36 37 "Load Real Space Modeling",Execute/P "INSERTINCLUDE \"FFT_Cubes_Includes\"";Execute/P "INSERTINCLUDE \"FFT_Fit_Includes\"";Execute/P "COMPILEPROCEDURES ";Execute/P "Init_FFT()" 38 "-" 39 31 40 end 32 41 -
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Auto_Fit.ipf
r827 r828 1397 1397 // List utilities 1398 1398 //********************* 1399 Function List2TextWave(list,sep,waveStr) 1399 // 1400 // List2TextWave is also in SANS_Utilities.ipf, but to keep from having big lists of dependencies, 1401 // have definitions here that are local and Static 1402 1403 // 1404 Static Function List2TextWave(list,sep,waveStr) 1400 1405 String list,sep,waveStr 1401 1406 -
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker/FFT_Cubes_Includes.ipf
r798 r828 33 33 "ParseMatrix 3D to XYZ" 34 34 "Plot XYZ" 35 "Animated SSlices"35 "Animated Slices" 36 36 "Show Full Matrix" 37 37 end -
sans/Dev/trunk/NCNR_User_Procedures/Common/GaussUtils_v40.ipf
r800 r828 774 774 // to an integral of 1. This "truncated" gaussian was a somewhat better approximation 775 775 // to the triangular resolution function. Here, I integrate to +/- 3 sigma and 776 // do not renormalize the integral to 1. Hence the smeared calculation is 0.27% low.777 // Thisis easily seen by smearing a constant value.776 // now correctly renormalize the integral to 1. Hence the smeared calculation in the past was 0.27% low. 777 // Confimation of the integral is easily seen by smearing a constant value. 778 778 // 779 779 // Using 5 quadrature points is not recommended, as it doesn't normalize properly using .9973
Note: See TracChangeset
for help on using the changeset viewer.