A lightweight implementation of the Defaults interface that uses simple ASCII text files. More...
#include <Defaults_Text.h>
Public Member Functions | |
Defaults_Text (std::string def_file) | |
Constructor, create a Default_Text object from an ASCII text file. Pass an empty string to skip reading a file. | |
Defaults_Text (std::string def_file, int argc, char **argv) | |
Constructor, create a Default_Text object from an ASCII text file and argument list. | |
virtual bool | exists (std::string name) const |
virtual bool | get_bool (std::string name) const |
virtual double | get_float (std::string name) const |
virtual int | get_int (std::string name) const |
virtual std::string | get_string (std::string name) const |
~Defaults_Text () | |
Destructor. | |
Private Attributes | |
Defaults_Textrep * | _rep |
Friends | |
std::ostream & | operator<< (std::ostream &s, const Defaults_Text &def) |
A lightweight implementation of the Defaults interface that uses simple ASCII text files.
Create instances of these objects passing in the name of a file. Each line of the file should contain a parameter setting like
name = value
Anything following a `;' or `#' is stried off; leading and trailing whitespaces on value are also removed. Blank lines are ignored.
User can also pass an argument list to the constructor. After the default ASCII input file is read, the argument list will be scanned, to possibly override some of the parameter settings. An argument of the form
--name=value
is equivalent to the parameter setting
name = value
while
--name
is equivalent to
name = 1
and
--noname
is equivalent to
name = 0.
Definition at line 122 of file Defaults_Text.h.
hitfit::Defaults_Text::Defaults_Text | ( | std::string | def_file | ) |
Constructor, create a Default_Text object from an ASCII text file. Pass an empty string to skip reading a file.
def_file | The ASCII text file to read. Pass an empty string to skip reading a file. |
Definition at line 338 of file Defaults_Text.cc.
: _rep (new Defaults_Textrep (def_file)) { }
hitfit::Defaults_Text::Defaults_Text | ( | std::string | def_file, |
int | argc, | ||
char ** | argv | ||
) |
Constructor, create a Default_Text object from an ASCII text file and argument list.
def_file | The ASCII text file to read. Pass an empty string to skip reading a file. |
argc | The length of the argument list. |
argv | The argument list. |
Definition at line 353 of file Defaults_Text.cc.
hitfit::Defaults_Text::~Defaults_Text | ( | ) |
bool hitfit::Defaults_Text::exists | ( | std::string | name | ) | const [virtual] |
Test to see if parameter name exists.
name | The name of the parameter. |
Implements hitfit::Defaults.
Definition at line 378 of file Defaults_Text.cc.
References mergeVDriftHistosByStation::name.
Referenced by hitfit::EtaDepResolution::Read().
bool hitfit::Defaults_Text::get_bool | ( | std::string | name | ) | const [virtual] |
Get the value of name as boolean.
name | The name of the parameter. |
Implements hitfit::Defaults.
Definition at line 425 of file Defaults_Text.cc.
References mergeVDriftHistosByStation::name.
double hitfit::Defaults_Text::get_float | ( | std::string | name | ) | const [virtual] |
Get the value of name as a floating-point of type double.
name | The name of the parameter. |
Implements hitfit::Defaults.
Definition at line 410 of file Defaults_Text.cc.
References mergeVDriftHistosByStation::name.
Referenced by hitfit::EtaDepResolution::Read().
int hitfit::Defaults_Text::get_int | ( | std::string | name | ) | const [virtual] |
Get the value of name as integer.
name | The name of the parameter. |
Implements hitfit::Defaults.
Definition at line 395 of file Defaults_Text.cc.
References mergeVDriftHistosByStation::name.
string hitfit::Defaults_Text::get_string | ( | std::string | name | ) | const [virtual] |
Get the value of name as a string.
name | The name of the parameter. |
Implements hitfit::Defaults.
Definition at line 445 of file Defaults_Text.cc.
References mergeVDriftHistosByStation::name.
Referenced by hitfit::METTranslatorBase< AMet >::METTranslatorBase(), and hitfit::EtaDepResolution::Read().
std::ostream& operator<< | ( | std::ostream & | s, |
const Defaults_Text & | def | ||
) | [friend] |
Output stream operator. Print out all parameters' names and their values.
s | The output stream to write. |
def | The instance to print. |
Definition at line 460 of file Defaults_Text.cc.
Defaults_Textrep* hitfit::Defaults_Text::_rep [private] |
The internal representation.
Definition at line 218 of file Defaults_Text.h.
Referenced by hitfit::operator<<(), and ~Defaults_Text().