MJL 8/11/06 Initial version.
r1255 | mle | 2006-11-08 16:59:44 +1100 (Wed, 08 Nov 2006) | 2 lines
This commit is contained in:
committed by
Douglas Clowes
parent
3c7c269705
commit
d29d5d867c
28
site_ansto/hmcontrol_ansto.h
Normal file
28
site_ansto/hmcontrol_ansto.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*------------------------------------------------------------------------
|
||||
H M C O N T R O L _ A N S T O
|
||||
|
||||
A module creating a slightly modified HMControl object suitable for the
|
||||
ANSTO HM. This works exactly the same as the existing HMControl, but
|
||||
has extra options (e.g. pausing HM's at the end of a count instead of
|
||||
stopping them).
|
||||
|
||||
copyright: see copyright.h
|
||||
|
||||
Mark Lesha, October 2006
|
||||
-------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef HMCONTROL_ANSTO_H_
|
||||
#define HMCONTROL_ANSTO_H_
|
||||
|
||||
typedef struct
|
||||
{
|
||||
/* Data of the original HMControl object */
|
||||
HMcontrol hmc;
|
||||
/* Extra data for HMControl_ANSTO for extra functionality */
|
||||
int Pause_HM_After_Count;
|
||||
} HMcontrol_ANSTO, *pHMcontrol_ANSTO;
|
||||
|
||||
int MakeHMControl_ANSTO(SConnection *pCon, SicsInterp *pSics,
|
||||
void *pData, int argc, char *argv[]);
|
||||
|
||||
#endif /*HMCONTROL_ANSTO_H_*/
|
||||
Reference in New Issue
Block a user