GRUTinizer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TRawEventFileSource.h
Go to the documentation of this file.
1 #ifndef _TRAWEVENTFILESOURCE_H_
2 #define _TRAWEVENTFILESOURCE_H_
3 
4 #include "TRawEventSource.h"
5 
7 public:
8  TRawEventFileSource(const std::string& filename, kFileType file_type);
10 
11  virtual int ReadBytes(char* buf, size_t size);
12 
13  virtual std::string SourceDescription() const;
14 private:
15  std::string fFilename;
16  FILE* fFile;
17 
19 };
20 
21 #endif /* _TRAWEVENTFILESOURCE_H_ */