- Mapped fileeval to exe manager - Updates for TRICS file formats SKIPPED: psi/libpsi.a psi/sinqhmdriv.c psi/sinqhttp.c psi/tabledrive.c psi/tasscan.c psi/hardsup/asynsrv_utility.c psi/hardsup/sinqhm.c
25 lines
938 B
C
25 lines
938 B
C
|
|
/*---------------------------------------------------------------------------
|
|
F O U R T A B L E
|
|
|
|
A SICS object which holds the variation of scan parameters for four circle
|
|
reflection list measurements.
|
|
copyright: see copyright.h
|
|
|
|
Mark Koennecke, February 2005
|
|
---------------------------------------------------------------------------*/
|
|
#ifndef FOURTABLE
|
|
#define FOURTABLE
|
|
|
|
int MakeFourCircleTable();
|
|
void DeleteFourCircleTable(int handle);
|
|
int HandleFourCircleCommands(int *handle, 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);
|
|
|
|
#endif
|