2 #ifndef RIVET_HistoFormat_HH
3 #define RIVET_HistoFormat_HH
5 #include "Rivet/Rivet.hh"
24 hfmap[AIDAML] =
"AIDA";
36 for (HistoFormatMap::const_iterator hf = hfmap.begin(); hf != hfmap.end(); ++hf) {
37 hfmapr[hf->second] = hf->first;
52 for (HistoFormatMap::const_iterator hf = hfmap.begin(); hf != hfmap.end(); ++hf) {
53 names.push_back(hf->first);
63 for (HistoFormatMap::const_iterator hf = hfmap.begin(); hf != hfmap.end(); ++hf) {
64 names.push_back(hf->second);
HistoFormat
Enumeration of available histogram output formats.
Definition: HistoFormat.hh:11
HistoFormatList getKnownHistoFormatEnums()
Definition: HistoFormat.hh:49
HistoFormatMapR getKnownHistoFormatsR()
Function which returns a map from histogram format name strings to the corresponding enums...
Definition: HistoFormat.hh:33
std::vector< std::string > getKnownHistoFormatNames()
Function which returns a vector of all the histogram format name strings.
Definition: HistoFormat.hh:60
HistoFormatMap getKnownHistoFormats()
Function which returns a map from histogram format enums to the corresponding name strings...
Definition: HistoFormat.hh:22
std::map< std::string, HistoFormat > HistoFormatMapR
Typedef for a map of histogram format name strings to enums.
Definition: HistoFormat.hh:18
std::map< HistoFormat, std::string > HistoFormatMap
Typedef for a map of histogram format enums to strings.
Definition: HistoFormat.hh:14
std::vector< HistoFormat > HistoFormatList
Typedef for a collection of histogram format name enums.
Definition: HistoFormat.hh:44