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