- Timestamp:
- Aug 30, 2007 4:27:58 PM (15 years ago)
- Location:
- sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/Cylinder.c
r102 r154 105 105 */ 106 106 int 107 Ellip Cyl20X(FitParamsPtr p)107 EllipticalCylinderX(FitParamsPtr p) 108 108 { 109 109 double *dp; // Pointer to double precision wave data. -
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/Cylinder.h
r97 r154 8 8 int CylinderFormX(FitParamsPtr p); 9 9 int EllipCyl76X(FitParamsPtr p); 10 int Ellip Cyl20X(FitParamsPtr p);10 int EllipticalCylinderX(FitParamsPtr p); 11 11 int TriaxialEllipsoidX(FitParamsPtr p); 12 12 int ParallelepipedX(FitParamsPtr p); -
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/SANSAnalysis.c
r112 r154 30 30 // 31 31 case 0: // y = MultiShellX(w,x) (curve fitting function). 32 return((long)MultiShell X); // This function is called using the direct method.32 return((long)MultiShellSphereX); // This function is called using the direct method. 33 33 break; 34 34 case 1: // y = PolyMultiShellX(w,x) (curve fitting function). … … 39 39 break; 40 40 case 3: // y = CoreShellX(w,x) (curve fitting function). 41 return((long)CoreShell FormX); // This function is called using the direct method.41 return((long)CoreShellSphereX); // This function is called using the direct method. 42 42 break; 43 43 case 4: // y = PolyCoreX(w,x) (curve fitting function). … … 57 57 break; 58 58 case 9: // y = PolyHardSphereIntensityX(w,x) (curve fitting function). 59 return((long)PolyHardSphere IntensityX); // This function is called using the direct method.59 return((long)PolyHardSpheresX); // This function is called using the direct method. 60 60 break; 61 61 case 10: // y = BimodalSchulzSpheresX(w,x) (curve fitting function). … … 63 63 break; 64 64 case 11: // y = GaussPolySphereX(w,x) (curve fitting function). 65 return((long)Gauss PolySphereX); // This function is called using the direct method.65 return((long)GaussSpheresX); // This function is called using the direct method. 66 66 break; 67 67 case 12: // y = LogNormalPolySphereX(w,x) (curve fitting function). 68 return((long)LogNormal PolySphereX); // This function is called using the direct method.68 return((long)LogNormalSphereX); // This function is called using the direct method. 69 69 break; 70 70 case 13: // y = BinaryHSX(w,x) (curve fitting function). … … 90 90 break; 91 91 case 19: // y = EllipCylFit20X(w,x) (curve fitting function). 92 return((long)Ellip Cyl20X); // This function is called using the direct method.92 return((long)EllipticalCylinderX); // This function is called using the direct method. 93 93 break; 94 94 case 20: // y = TriaxialEllipsoidX(w,x) (curve fitting function). -
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/SANSAnalysis.r
r112 r154 47 47 { 48 48 /// Sphere functions 49 "MultiShell X", /* function name */49 "MultiShellSphereX", /* function name */ 50 50 F_UTIL | F_EXTERNAL, /* function category == Utility */ 51 51 NT_FP64, /* return value type */ … … 71 71 }, 72 72 73 "CoreShell FormX", /* function name */73 "CoreShellSphereX", /* function name */ 74 74 F_UTIL | F_EXTERNAL, /* function category == Utility */ 75 75 NT_FP64, /* return value type */ … … 119 119 }, 120 120 121 "PolyHardSphere IntensityX", /* function name */121 "PolyHardSpheresX", /* function name */ 122 122 F_UTIL | F_EXTERNAL, /* function category == Utility */ 123 123 NT_FP64, /* return value type */ … … 135 135 }, 136 136 137 "Gauss PolySphereX", /* function name */138 F_UTIL | F_EXTERNAL, /* function category == Utility */ 139 NT_FP64, /* return value type */ 140 { 141 NT_FP64 + WAVE_TYPE, /* double precision wave (coefficient wave) */ 142 NT_FP64, /* double precision x */ 143 }, 144 145 "LogNormal PolySphereX", /* function name */137 "GaussSpheresX", /* function name */ 138 F_UTIL | F_EXTERNAL, /* function category == Utility */ 139 NT_FP64, /* return value type */ 140 { 141 NT_FP64 + WAVE_TYPE, /* double precision wave (coefficient wave) */ 142 NT_FP64, /* double precision x */ 143 }, 144 145 "LogNormalSphereX", /* function name */ 146 146 F_UTIL | F_EXTERNAL, /* function category == Utility */ 147 147 NT_FP64, /* return value type */ … … 199 199 }, 200 200 201 "Ellip Cyl20X", /* function name */201 "EllipticalCylinderX", /* function name */ 202 202 F_UTIL | F_EXTERNAL, /* function category == UTILITY */ 203 203 NT_FP64, /* return value type */ -
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/Sphere.c
r102 r154 48 48 // scattering from a monodisperse core-shell sphere - hardly needs to be an XOP... 49 49 int 50 CoreShell FormX(FitParamsPtr p)50 CoreShellSphereX(FitParamsPtr p) 51 51 { 52 52 double *dp; // Pointer to double precision wave data. … … 147 147 // 148 148 int 149 PolyHardSphere IntensityX(FitParamsPtr p)149 PolyHardSpheresX(FitParamsPtr p) 150 150 { 151 151 double *dp; // Pointer to double precision wave data. … … 280 280 // 281 281 int 282 Gauss PolySphereX(FitParamsPtr p)282 GaussSpheresX(FitParamsPtr p) 283 283 { 284 284 double *dp; // Pointer to double precision wave data. … … 313 313 // 314 314 int 315 LogNormal PolySphereX(FitParamsPtr p)315 LogNormalSphereX(FitParamsPtr p) 316 316 { 317 317 double *dp; // Pointer to double precision wave data. … … 527 527 */ 528 528 int 529 MultiShell X(FitParamsPtr p)529 MultiShellSphereX(FitParamsPtr p) 530 530 { 531 531 double *dp; // Pointer to double precision wave data. -
sans/Analysis/branches/ajj_23APR07/XOPs/SANSAnalysis/XOP/Sphere.h
r97 r154 2 2 3 3 /* IGOR Fit Functions */ 4 int MultiShell X(FitParamsPtr p);4 int MultiShellSphereX(FitParamsPtr p); 5 5 int PolyMultiShellX(FitParamsPtr p); 6 6 int SphereFormX(FitParamsPtr p); 7 int CoreShell FormX(FitParamsPtr p);7 int CoreShellSphereX(FitParamsPtr p); 8 8 int PolyCoreFormX(FitParamsPtr p); 9 9 int PolyCoreShellRatioX(FitParamsPtr p); … … 11 11 int SchulzSpheresX(FitParamsPtr p); 12 12 int PolyRectSpheresX(FitParamsPtr p); 13 int PolyHardSphere IntensityX(FitParamsPtr p);13 int PolyHardSpheresX(FitParamsPtr p); 14 14 int BimodalSchulzSpheresX(FitParamsPtr p); 15 int Gauss PolySphereX(FitParamsPtr p);16 int LogNormal PolySphereX(FitParamsPtr p);15 int GaussSpheresX(FitParamsPtr p); 16 int LogNormalSphereX(FitParamsPtr p); 17 17 int BinaryHSX(FitParamsPtr p); 18 18 int BinaryHS_PSF11X(FitParamsPtr p);
Note: See TracChangeset
for help on using the changeset viewer.