Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-02 08:21:01

0001 #ifndef __DAQONCSEVENT__
0002 #define __DAQONCSEVENT__
0003 
0004 
0005 #include <daqEvent.h>
0006 
0007 class daqONCSEvent : public daqEvent {
0008 
0009 public:
0010 
0011   //** Constructors
0012   daqONCSEvent(int *, const int maxlength
0013      , const int irun, const int itype, const int eseq);
0014 
0015   ~daqONCSEvent() {};
0016 
0017   int prepare_next();
0018   int prepare_next( const int, const int);
0019 
0020   // subevent adding
0021   int addSubevent(const int etype, daq_device *);
0022 
0023   static int formatHeader(int * where, const int id, const int hf, const int type);
0024   
0025 protected:
0026 
0027 
0028 };
0029 
0030 #endif