|
Gaudi Framework, version v23r0 |
| Home | Generated: Mon Jan 30 2012 |
The 15 format fields are predefined now: More...
Enumerations | |
| enum | Format { Default = 0, Old, Full, FullStat, Stat, StatOnly, Stat1, ShapeOnly, Shape, LineTitle, LineOnly, PathTitle } |
the ID for predefined formats
| |
Functions | |
| GAUDI_API std::string | format (const int ID=Default) |
| get the format by enum | |
| GAUDI_API std::string | header (const int ID=Default) |
| get the recommended header by enum | |
The 15 format fields are predefined now:
Unlike parameters 3-7 & 16-19, the parameters 8-15 and 19-26 are sensitive only to the shape of the distribution.
Simple collection of predefiend formats for the histogram
the ID for predefined formats
| Default | |
| Old | |
| Full | |
| FullStat | |
| Stat | |
| StatOnly | |
| Stat1 | |
| ShapeOnly | |
| Shape | |
| LineTitle | |
| LineOnly | |
| PathTitle |
Definition at line 90 of file HistoTableFormat.h.
{
Default = 0 , // default format
Old , // "OLD"-line format: title,integral,#ent,mean,rms
Full , // FULL format: the first 15 positions
FullStat , // Full statistical info (3-15)
Stat , // title,#ent,mean,rms,skewness&kurtosis
StatOnly , // #entries,mean,rms,skewness&kurtosis
Stat1 , // #entries,mean+-,rms+-,skewness+-&kurtosis+-
ShapeOnly , // mean,rms,skewness,kurtosis,underflow&overflow fractions
Shape , // as ShapeOnly but with errors
LineTitle , // line-format : title,mean,rms,skewness&kurtosis
LineOnly , // line-format : mean,rms,skewness&kurtosis
PathTitle // "PathTitle" : path & title
} ;
| std::string Gaudi::Utils::Histos::Formats::format | ( | const int | ID = Default ) |
get the format by enum
| ID | the format idenfifier |
default:
Definition at line 139 of file HistoTableFormat.cpp.
{
switch ( ID )
{
case Old : return s_histoFormatOld ;
case Full : return s_histoFormatFull ;
case FullStat : return s_histoFormatFullStat ;
case Stat : return s_histoFormatStat ;
case StatOnly : return s_histoFormatStatOnly ;
case Stat1 : return s_histoFormatStat1 ;
case ShapeOnly : return s_histoFormatShapeOnly ;
case Shape : return s_histoFormatShape ;
case LineTitle : return s_histoFormatLineTitle ;
case LineOnly : return s_histoFormatLineOnly ;
case PathTitle : return s_histoFormatPathTitle ;
default : break ;
}
return s_histoFormatStat ;
}
| std::string Gaudi::Utils::Histos::Formats::header | ( | const int | ID = Default ) |
get the recommended header by enum
| ID | the format idenfifier |
default:
Definition at line 162 of file HistoTableFormat.cpp.
{
switch ( ID )
{
case Old : return s_histoFormatOldHeader ;
case Full : return s_histoFormatFullHeader ;
case FullStat : return s_histoFormatFullStatHeader ;
case Stat : return s_histoFormatStatHeader ;
case Stat1 : return s_histoFormatStat1Header ;
case StatOnly : return s_histoFormatStatOnlyHeader ;
case ShapeOnly : return s_histoFormatShapeOnlyHeader ;
case Shape : return s_histoFormatShapeHeader ;
case LineTitle : return s_histoFormatLineTitleHeader ;
case LineOnly : return s_histoFormatLineOnlyHeader ;
case PathTitle : return s_histoFormatPathTitleHeader ;
default : ;
}
return s_histoFormatStatHeader ;
}