NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Files Functions Variables Macros Pages
RootConvert.h
1 
7 //root converter
8 
9 #ifndef ROOTCONVERTER_H
10 #define ROOTCONVERTER_H
11 
12 #include <string>
13 
14 #ifndef CONVERTER_H
15 #include "Converter.h"
16 #endif
17 
18 class ddaschannel;
19 class CRingItem;
20 
22 
46 class RootConverter : public Converter
47 {
48 
49  private:
50  ddaschannel *dchan;
52  public:
55  RootConverter();
56 
63  virtual ~RootConverter();
64 
74  virtual void Initialize(std::string filein, std::string fileout);
75 
87  virtual void DumpData(const CRingItem& item);
88 
89 };
90 
91 #endif