Base.hh
Go to the documentation of this file.
1 
4 #pragma once
5 
6 #include "TObject.h"
7 
8 namespace boca
9 {
10 
16 namespace branch
17 {
18 
23 class Base : public TObject
24 {
25 
26 public:
27 
28  static float InitialValue();
29 
30  Base() {};
31 
32  Base(Base const&) = default;
33 
34  Base(Base &&) = default;
35 
36  Base &operator=(Base const&) & = default;
37 
38  Base &operator=(Base &&) & = default;
39 
40 protected:
41 
42  ~Base() {}
43 
44 private:
45 
46  ClassDef(Base, 1)
47 
48 };
49 
50 }
51 
52 }
Base tree branch
Definition: Base.hh:23
static float InitialValue()
Definition: Base.cpp:12
Base & operator=(Base const &)&=default
Boosted Collider Analysis.
Definition: Analysis.hh:15
~Base()
Definition: Base.hh:42
Base()
Definition: Base.hh:30