26 lines
765 B
C
26 lines
765 B
C
/*-------------------------------------------------------------------------
|
|
I P S D R I V . H
|
|
|
|
Driver for the Oxford Instruments IPS/PS magnet power supply.
|
|
|
|
Markus Zolliker, June 2004
|
|
|
|
copyright: see implementation file.
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
#ifndef SICSIPS
|
|
#define SICSIPS
|
|
/*------------------------- The Driver ------------------------------------*/
|
|
|
|
pEVDriver CreateIpsDriver(int argc, char *argv[]);
|
|
|
|
|
|
/*------------------------- The Tecs object ------------------------------*/
|
|
|
|
int IpsWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
|
|
int argc, char *argv[]);
|
|
|
|
void IpsCustomize(SConnection *pCon, pEVControl pEvc);
|
|
|
|
#endif
|