/* * File Name : buf.h * Creation Date: Nov 13 2000 * Author : Y.Nakaune */ #ifndef __BUF_H #define __BUF_H #include "daq.h" #define BUFF_LENGTH 256 void ReadTGC_CFG( char* ); void WriteFLG( unsigned int, FILE* ); void ReadCFG( Cfg_adc*,Cfg_tmc*, char*, FILE* ); void InitTMC( void ); void InitADC( void ); void InitVETO( void ); void InitScaler( void ); void ReadyTMC( void ); void ReadyADC( void ); void ClearVETO( void ); int CheckTrigger( void ); int OffSpillSleep( void ); int test_LAM(); int ReadTMC( Cfg_tmc*, FILE* ); void ReadADC( FILE* ); void ReadScaler( FILE* ); void EndTMC( void ); void EndADC( void ); void EndVETO( void ); #endif