- Initial commit of a UB calculation setup for four circle

diffractometers
This commit is contained in:
koennecke
2005-03-23 08:19:47 +00:00
parent 2b63ad06b2
commit beba0d4644
18 changed files with 1236 additions and 55 deletions

28
ubcalc.w Normal file
View File

@ -0,0 +1,28 @@
\subsection{UB Matrix Calculation for Four Circle Diffractometers}
This module helps in the calculation of UB matrices for four
circle diffraction. This is only an interpreter interface, the
actual functionality is in the ubfour.h, .c files. These are documented
in ubfour.h in order to be able to give this away separatly as a
library.
@o ubcalc.h @{
/*----------------------------------------------------------------------
UB caclualtion routines for four circle diffraction.
This is the interpreter interface to functionality implemented
in fourlib.c
copyright: see file COPYRIGHT
Mark Koennecke, March 2005
-----------------------------------------------------------------------*/
#ifndef SICSUBCALC
#define SICSUBCALC
int MakeUBCalc(SConnection *pCon,SicsInterp *pSics, void *pData,
int argc, char *argv[]);
int UBCalcWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
#endif
@}