A class desribing a systematic uncertainty. More...
#include <BCMTFSystematic.h>
Public Member Functions | |
Constructors and destructors | |
BCMTFSystematic (const char *name) | |
~BCMTFSystematic () | |
Member functions (get) | |
std::string | GetName () |
bool | GetFlagSystematicActive () |
void | SetFlagSystematicActive (bool flag) |
Private Attributes | |
std::string | fSystematicName |
bool | fFlagSystematicActive |
A class desribing a systematic uncertainty.
Definition at line 26 of file BCMTFSystematic.h.
BCMTFSystematic::BCMTFSystematic | ( | const char * | name | ) |
The default constructor.
name | The name of the source of systematic uncertainty. |
Definition at line 13 of file BCMTFSystematic.cxx.
: fFlagSystematicActive(true) { fSystematicName = name; }
BCMTFSystematic::~BCMTFSystematic | ( | ) |
bool BCMTFSystematic::GetFlagSystematicActive | ( | ) | [inline] |
Definition at line 53 of file BCMTFSystematic.h.
{ return fFlagSystematicActive; };
std::string BCMTFSystematic::GetName | ( | ) | [inline] |
Definition at line 48 of file BCMTFSystematic.h.
{ return fSystematicName; };
void BCMTFSystematic::SetFlagSystematicActive | ( | bool | flag | ) | [inline] |
Set a flag defining if this uncertainty is active or not.
flag | The flag. |
Definition at line 63 of file BCMTFSystematic.h.
{ fFlagSystematicActive = flag; };
bool BCMTFSystematic::fFlagSystematicActive [private] |
A flag defining if this uncertainty is active or not.
Definition at line 76 of file BCMTFSystematic.h.
std::string BCMTFSystematic::fSystematicName [private] |
The name of the source of the systematic uncertainty.
Definition at line 64 of file BCMTFSystematic.h.