PSI sics-cvs-psi_pre-ansto

This commit is contained in:
2003-06-13 00:00:00 +00:00
committed by Douglas Clowes
parent 2e3ddfb6c6
commit 3ffd0d8af4
1099 changed files with 318432 additions and 0 deletions

46
evcontroller.i Normal file
View File

@@ -0,0 +1,46 @@
#line 228 "evcontroller.w"
/*-------------------------------------------------------------------------
Environment controller datastructure
Mark Koennecke, Juli 1997
---------------------------------------------------------------------------*/
/*-------- Parameter defines */
#define TOLERANCE 0
#define ACCESS 1
#define ERRORHANDLER 2
#define INTERRUPT 3
#define UPLIMIT 4
#define LOWLIMIT 5
#define SAFEVALUE 6
#define MAXWAIT 7
#define SETTLE 8
#line 29 "evcontroller.w"
typedef struct __EVControl {
pObjectDescriptor pDes;
pIDrivable pDrivInt;
pEVInterface pEnvir;
pICallBack pCall;
int callCount;
pEVDriver pDriv;
EVMode eMode;
float fTarget;
time_t start;
time_t lastt;
char *pName;
ObPar *pParam;
int iLog;
pVarLog pLog;
int iWarned;
int iTcl;
int iStop;
void *pPrivate;
void (*KillPrivate)(void *pData);
} EVControl;
#line 244 "evcontroller.w"