Initial revision

This commit is contained in:
cvs
2000-02-07 10:38:55 +00:00
commit fdc6b051c9
846 changed files with 230218 additions and 0 deletions

21
integrate.h Normal file
View File

@ -0,0 +1,21 @@
/*--------------------------------------------------------------------------
I N T E G R A T E
Peak integration follwing the method described by Grant & Gabe in
J. Appl. Cryst (1978), 11, 114-120.
Mark Koennecke, March 1998
----------------------------------------------------------------------------*/
#ifndef GABEINTEGRATE
#define GABEINTEGRATE
#define INTEGLEFT -1
#define INTEGRIGHT -2
#define INTEGNOPEAK -3
#define INTEGFUNNYBACK -4
int GabePeakIntegrate(int m, int iCounts, long lCounts[],
float *fIntens, float *fVariance);
#endif