Boosted Collider Analysis (BoCA) 0.3.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
boca
branch
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
}
boca::branch::Base
Base tree branch
Definition:
Base.hh:23
boca::branch::Base::InitialValue
static float InitialValue()
Definition:
Base.cpp:12
boca::branch::Base::operator=
Base & operator=(Base const &)&=default
boca
Boosted Collider Analysis.
Definition:
Analysis.hh:15
boca::branch::Base::~Base
~Base()
Definition:
Base.hh:42
boca::branch::Base::Base
Base()
Definition:
Base.hh:30