- 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

7
ofac.c
View File

@ -109,6 +109,7 @@
#include "oscillate.h"
#include "diffscan.h"
#include "hklmot.h"
#include "ubcalc.h"
/*----------------------- Server options creation -------------------------*/
static int IFServerOption(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[])
@ -294,6 +295,8 @@
MakeDiffScan,NULL,NULL);
AddCommand(pInter,"MakeHKLMot",
HKLMotInstall,NULL,NULL);
AddCommand(pInter,"MakeUBCalc",
MakeUBCalc,NULL,NULL);
/*
@ -356,6 +359,7 @@
RemoveCommand(pSics,"MakeOscillator");
RemoveCommand(pSics,"MakeDiffScan");
RemoveCommand(pSics,"MakeHKLMot");
RemoveCommand(pSics,"MakeUBCalc");
/*
remove site specific installation commands
@ -365,10 +369,7 @@
site->RemoveSiteCommands(pSics);
}
}
/*--------------------------------------------------------------------------*/
int InitObjectCommands(pServer pServ, char *file)
{
SConnection *pCon = NULL;