Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:32

0001 #ifndef __BZ2BUFFER_H
0002 #define __BZ2BUFFER_H
0003 
0004 #include "prdfBuffer.h"
0005 
0006 #ifndef __CINT__
0007 class WINDOWSEXPORT bz2buffer : public prdfBuffer{
0008 #else
0009 class  bz2buffer : public prdfBuffer{
0010 #endif
0011 
0012 public:
0013 
0014   //** Constructors
0015 
0016   bz2buffer( PHDWORD *array, const int length);
0017   ~bz2buffer();
0018 
0019   Event * getEvent();
0020 
0021   int getBufferSequence() const;
0022 
0023 protected:
0024 
0025   PHDWORD  *bufferarray;
0026   buffer *theBuffer;
0027 
0028   int _broken;
0029 
0030 };
0031 
0032 #endif