QwAnalysis
VQwDataserver.h
Go to the documentation of this file.
1 #ifndef __VQwDataserver_h__
2 #define __VQwDataserver_h__
3 
4 #include <iostream>
5 
6 #include "VQwSystem.h"
7 #include "QwHitContainer.h"
8 
9 class VQwDataserver : public VQwSystem {
10 
11  private:
13  return *this;
14  };
15 
16  public:
17  VQwDataserver (const char* name): VQwSystem (name) { };
18 
19  virtual void NextEvent() {
20  std::cout << "Error: Not implemented!" << std::endl;
21  return;
22  };
23  // TODO (wdc) I don't want this to depend on QwHitContainer...
25  std::cout << "Error: Not implemented!" << std::endl;
26  return 0;
27  };
28 
29 };
30 
31 #endif // __VQwAnalyzer_h__
VQwDataserver & operator=(const VQwDataserver &value)
Definition: VQwDataserver.h:12
virtual void NextEvent()
Definition: VQwDataserver.h:19
virtual QwHitContainer * GetHitList()
Definition: VQwDataserver.h:24
VQwDataserver(const char *name)
Definition: VQwDataserver.h:17