susy_cfa  b611ccad937ea179f86a1f5663960264616c0a20
event_handler_base.hpp
Go to the documentation of this file.
1  // event_handler_base: base class for reduced tree production
2  // File generated with generate_small_tree.exe
3 
4 #ifndef H_EVENT_HANDLER_BASE
5 #define H_EVENT_HANDLER_BASE
6 
7 #include <string>
8 
9 #include "TString.h"
10 
11 #include "phys_objects.hpp"
12 
14 public:
15  event_handler_base(const std::string &file_name);
16 
17  virtual void ReduceTree(int num_entries,
18  const TString &out_file_name,
19  int num_total_entries) = 0;
20 
21  virtual ~event_handler_base();
22 };
23 
24 #endif
virtual void ReduceTree(int num_entries, const TString &out_file_name, int num_total_entries)=0
event_handler_base(const std::string &file_name)