BAT 1.0.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
src
BCObservable.cxx
1
/*
2
* Copyright (C) 2007-2013, the BAT core developer team
3
* All rights reserved.
4
*
5
* For the licensing terms see doc/COPYING.
6
* For documentation see http://mpp.mpg.de/bat
7
*/
8
9
#include "BCObservable.h"
10
11
// ---------------------------------------------------------
12
BCObservable::BCObservable
()
13
:
BCVariable
()
14
, fObservableValue(0)
15
{
16
fPrefix
=
"Observable"
;
17
}
18
19
// ---------------------------------------------------------
20
BCObservable::BCObservable
(
const
std::string& name,
double
lowerlimit,
double
upperlimit,
const
std::string& latexname,
const
std::string& unitstring)
21
:
BCVariable
(name, lowerlimit, upperlimit, latexname, unitstring)
22
, fObservableValue(0)
23
{
24
fPrefix
=
"Observable"
;
25
}
BCVariable
A class representing a variable of a model.
Definition:
BCVariable.h:35
BCObservable::BCObservable
BCObservable()
The default constructor.
Definition:
BCObservable.cxx:12
BCVariable::fPrefix
std::string fPrefix
prefix for output
Definition:
BCVariable.h:317