|
Gaudi Framework, version v22r1 |
| Home | Generated: Mon Feb 28 2011 |
The simple grammar for histogram description/definition: More...


Classes | |
| struct | definition |
Public Types | |
| typedef Gaudi::Histo1DDef | ResultT |
Public Member Functions | |
| void | matchLow (const double low) const |
| callback. Action when we match first value | |
| void | matchHigh (const double high) const |
| void | matchTitle (const std::string &title) const |
| void | matchBins (const int bins) const |
The simple grammar for histogram description/definition:
The valid representations of the histogram descriptor are:
Definition at line 44 of file ParseHistos.cpp.
| typedef Gaudi::Histo1DDef Gaudi::Parsers::Histo1DGrammar::ResultT |
Definition at line 50 of file ParseHistos.cpp.
| void Gaudi::Parsers::Histo1DGrammar::matchBins | ( | const int | bins ) | const [inline] |
Definition at line 59 of file ParseHistos.cpp.
{ this -> val() . setBins ( bins ) ; }
| void Gaudi::Parsers::Histo1DGrammar::matchHigh | ( | const double | high ) | const [inline] |
Definition at line 55 of file ParseHistos.cpp.
{ this -> val() . setHighEdge ( high ) ; }
| void Gaudi::Parsers::Histo1DGrammar::matchLow | ( | const double | low ) | const [inline] |
callback. Action when we match first value
Definition at line 53 of file ParseHistos.cpp.
{ this -> val() . setLowEdge ( low ) ; }
| void Gaudi::Parsers::Histo1DGrammar::matchTitle | ( | const std::string & | title ) | const [inline] |
Definition at line 57 of file ParseHistos.cpp.
{ this -> val() . setTitle ( title ) ; }