Files
sics/HistMem.i
cvs 5be8359212 - Fixed SICS up to run with up to three TRICS detectors.
- added 150 detectors the default for FOCUS middle bank.
- added documentation for el734_test
2001-02-09 16:04:46 +00:00

36 lines
1.1 KiB
OpenEdge ABL

#line 487 "histogram.w"
/*---------------------------------------------------------------------------
H I S T M E M -- Internal
internal header file which includes the definition of the Histogram memory
data structure.
Mark Koennecke, April 1997
----------------------------------------------------------------------------*/
#ifndef SICSHISTMEMINT
#define SICSHISTMEMINT
#line 261 "histogram.w"
typedef struct __HistMem {
pObjectDescriptor pDes;
int iAccess;
int iExponent;
pHistDriver pDriv;
int iInit;
pICountable pCountInt;
pICallBack pCall;
pStringDict pOption;
HistInt *iLocalData;
int iLocalLength;
int iLocalUpdate;
time_t tLocal;
int iUpdateIntervall;
} HistMem;
#line 497 "histogram.w"
#endif