- Introduced a general Hipadaba table module and modified the four

circle codes to use it.
- Added to functions to histmem, getdelay and formattof,  to support new HM
- Removed obsolete mesure.*
This commit is contained in:
koennecke
2009-03-16 14:24:34 +00:00
parent 299ad44be3
commit 3e8b11675a
15 changed files with 948 additions and 2519 deletions

View File

@ -10,15 +10,15 @@
---------------------------------------------------------------------------*/
#ifndef FOURTABLE
#define FOURTABLE
#include <sicsobj.h>
int MakeFourCircleTable();
void DeleteFourCircleTable(int handle);
int HandleFourCircleCommands(int *handle, SConnection * pCon,
pSICSOBJ MakeFourCircleTable();
void DeleteFourCircleTable(pSICSOBJ self);
int HandleFourCircleCommands(pSICSOBJ self, SConnection * pCon,
int argc, char *argv[], int *err);
char *GetFourCircleScanVar(int handle, double two_theta);
double GetFourCircleStep(int handle, double two_theta);
int SaveFourCircleTable(int handle, char *objName, FILE * fd);
float GetFourCirclePreset(int handle, double twoTheta);
int GetFourCircleScanNP(int handle, double twoTheta);
char *GetFourCircleScanVar(pSICSOBJ self, double two_theta);
double GetFourCircleStep(pSICSOBJ self, double two_theta);
float GetFourCirclePreset(pSICSOBJ self, double twoTheta);
int GetFourCircleScanNP(pSICSOBJ self, double twoTheta);
#endif