Class Reference for E1039 Core & Analysis Software
Fun4AllFileOutStream.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLFILEOUTSTREAM_H__
2 #define __FUN4ALLFILEOUTSTREAM_H__
3 
5 
6 #include <Event/phenixTypes.h>
7 
8 #include <string>
9 #include <iostream>
10 
11 class Event;
12 class oBuffer;
13 
14 static const unsigned int LENGTH = (4*1024*1024);
15 
17 {
18  public:
19  Fun4AllFileOutStream(const std::string &frule = "OUTDATA-%010d-%04d.PRDFF", const std::string &name = "FILEOUTSTREAM");
20  virtual ~Fun4AllFileOutStream();
21  int WriteEventOut(Event *evt);
22  int CloseOutStream();
23  void identify(std::ostream &os = std::cout) const;
24 
25  protected:
26  std::string filerule;
27  oBuffer *ob;
28  int iseq;
29  PHDWORD xb[LENGTH];
31  unsigned long long byteswritten;
32  unsigned long long MAXSIZE;
33 };
34 
35 #endif /* __FUN4ALLFILEOUTSTREAM_H__ */
static const unsigned int LENGTH
Definition: Event.h:13
Fun4AllFileOutStream(const std::string &frule="OUTDATA-%010d-%04d.PRDFF", const std::string &name="FILEOUTSTREAM")
unsigned long long MAXSIZE
void identify(std::ostream &os=std::cout) const
unsigned long long byteswritten
int WriteEventOut(Event *evt)