- made fixes to hkl

- Introduced a help system
- introduced a module for handling automatic updates of files during
  long measurements
- Added a circular buffer and handling facilities to varlog
- Upgraded documentation


SKIPPED:
	psi/faverage.h
	psi/nxamor.tex
	psi/pimotor.h
	psi/pimotor.tex
This commit is contained in:
cvs
2003-12-10 13:50:44 +00:00
parent 7a5f0193ab
commit bc02cb79e7
80 changed files with 2680 additions and 664 deletions

View File

@ -1,5 +1,5 @@
#line 228 "evcontroller.w"
#line 239 "evcontroller.w"
/*-------------------------------------------------------------------------
Environment controller datastructure
@ -18,6 +18,7 @@
#define MAXWAIT 7
#define SETTLE 8
#line 29 "evcontroller.w"
typedef struct __EVControl {
@ -29,9 +30,11 @@
pEVDriver pDriv;
EVMode eMode;
float fTarget;
time_t start;
time_t lastt;
time_t start;
time_t lastt;
char *pName;
char *driverName;
char *errorScript;
ObPar *pParam;
int iLog;
pVarLog pLog;
@ -42,5 +45,5 @@
void (*KillPrivate)(void *pData);
} EVControl;
#line 244 "evcontroller.w"
#line 257 "evcontroller.w"