ElectronNeutrinoSelection
 All Classes Functions Variables Groups
HelperBase.h
1 // Class: Helperbase
3 // Module Type: filter
4 // File: Helperbase.h
5 //
7 
8 #ifndef HELPERBASE_H
9 #define HELPERBASE_H
10 
11 // Basic includes that are common to almost all helpers:
12 #include "art/Framework/Principal/Event.h"
13 #include "art/Framework/Principal/Handle.h"
14 
15 namespace lee {
16 
17 class HelperBase {
18 public:
19  HelperBase() { _debug = false; }
20  ~HelperBase() = default;
21 
27  void setDebug(bool b) { _debug = b; }
28 
29 private:
30  bool _debug;
31 };
32 }
33 
34 #endif
void setDebug(bool b)
Sets the debug parameter.
Definition: HelperBase.h:27
Definition: HelperBase.h:17