EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
lzobuffer.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file lzobuffer.h
1 #ifndef __LZOBUFFER_H
2 #define __LZOBUFFER_H
3 
4 #include "prdfBuffer.h"
5 #include <lzo/lzo1x.h>
6 
7 
8 #ifndef __CINT__
10 #else
11 class lzobuffer : public prdfBuffer{
12 #endif
13 
14 public:
15 
16  //** Constructors
17 
18  lzobuffer( PHDWORD *array, const int length);
19  ~lzobuffer();
20 
21  Event * getEvent();
22 
23 
24 protected:
25  static int lzo_initialized;
26 
29  lzo_byte *wrkmem;
30 
31  int _broken;
32 
33 };
34 
35 #endif