The Gaudi Framework  master (37c0b60a)
Gaudi::Histo1DDef Class Referencefinal

#include <GaudiKernel/HistoDef.h>

Collaboration diagram for Gaudi::Histo1DDef:

Public Member Functions

 Histo1DDef (double low, double high, int bins=100, std::string title="")
 full constructor from edges, bins and the title More...
 
 Histo1DDef (std::string title="", double low=0.0, double high=1.0, int bins=100)
 full constructor from edges, bins and the title More...
 
double lowEdge () const
 get the low edge More...
 
double highEdge () const
 get the high edge More...
 
int bins () const
 get the number of bins More...
 
const std::stringtitle () const
 get the title More...
 
void setLowEdge (double value)
 set low edge More...
 
void setHighEdge (double value)
 set high edge More...
 
void setBins (int value)
 set number of bis More...
 
void setTitle (std::string value)
 set the title More...
 
std::ostreamfillStream (std::ostream &o) const
 printout of the histogram definition More...
 
bool ok () const
 check if all fields are "reasonable" More...
 

Private Attributes

std::string m_title
 Histogram title. More...
 
double m_low
 Low Edge. More...
 
double m_high
 High Edge. More...
 
int m_bins
 Number of bins. More...
 

Friends

bool operator< (const Histo1DDef &left, const Histo1DDef &right)
 ordering operator (to please BoundedVerifier) More...
 
std::ostreamoperator<< (std::ostream &o, const Gaudi::Histo1DDef &histo)
 the streamer operator for class Gaudi::Histo1DDef More...
 

Detailed Description

Simple helper class for description of 1D-histogram The class is targeted to act as the primary "histogram property", but clearly have significantly wider application range

Author
Vanya BELYAEV ibely.nosp@m.aev@.nosp@m.physi.nosp@m.cs.s.nosp@m.yr.ed.nosp@m.u
Date
2007-09-17

Definition at line 41 of file HistoDef.h.

Constructor & Destructor Documentation

◆ Histo1DDef() [1/2]

Gaudi::Histo1DDef::Histo1DDef ( double  low,
double  high,
int  bins = 100,
std::string  title = "" 
)

full constructor from edges, bins and the title

Parameters
lowthe low edge of the histogram
highthe high edge of the histogram
binsnumber of bins
titlethe historgam title

Definition at line 37 of file HistoDef.cpp.

38  : m_title( std::move( title ) ), m_low( low ), m_high( high ), m_bins( bins ) {}

◆ Histo1DDef() [2/2]

Gaudi::Histo1DDef::Histo1DDef ( std::string  title = "",
double  low = 0.0,
double  high = 1.0,
int  bins = 100 
)

full constructor from edges, bins and the title

Parameters
titlethe historgam title
lowthe low edge of the histogram
highthe high edge of the histogram
binsnumber of bins

Definition at line 47 of file HistoDef.cpp.

48  : m_title( std::move( title ) ), m_low( low ), m_high( high ), m_bins( bins ) {}

Member Function Documentation

◆ bins()

int Gaudi::Histo1DDef::bins ( ) const
inline

get the number of bins

Definition at line 67 of file HistoDef.h.

67 { return m_bins; }

◆ fillStream()

std::ostream & Gaudi::Histo1DDef::fillStream ( std::ostream o) const

printout of the histogram definition

Definition at line 52 of file HistoDef.cpp.

52  {
53  return o << "(" << Gaudi::Utils::toString( title() ) << "," << lowEdge() << "," << highEdge() << "," << bins() << ")";
54 }

◆ highEdge()

double Gaudi::Histo1DDef::highEdge ( ) const
inline

get the high edge

Definition at line 65 of file HistoDef.h.

65 { return m_high; }

◆ lowEdge()

double Gaudi::Histo1DDef::lowEdge ( ) const
inline

get the low edge

Definition at line 63 of file HistoDef.h.

63 { return m_low; }

◆ ok()

bool Gaudi::Histo1DDef::ok ( ) const
inline

check if all fields are "reasonable"

Definition at line 98 of file HistoDef.h.

98 { return 0 < bins() && lowEdge() < highEdge(); }

◆ setBins()

void Gaudi::Histo1DDef::setBins ( int  value)
inline

set number of bis

Definition at line 78 of file HistoDef.h.

78 { m_bins = value; }

◆ setHighEdge()

void Gaudi::Histo1DDef::setHighEdge ( double  value)
inline

set high edge

Definition at line 76 of file HistoDef.h.

76 { m_high = value; }

◆ setLowEdge()

void Gaudi::Histo1DDef::setLowEdge ( double  value)
inline

set low edge

Definition at line 74 of file HistoDef.h.

74 { m_low = value; }

◆ setTitle()

void Gaudi::Histo1DDef::setTitle ( std::string  value)
inline

set the title

Definition at line 80 of file HistoDef.h.

80 { m_title = std::move( value ); }

◆ title()

const std::string& Gaudi::Histo1DDef::title ( ) const
inline

get the title

Definition at line 69 of file HistoDef.h.

69 { return m_title; }

Friends And Related Function Documentation

◆ operator<

bool operator< ( const Histo1DDef left,
const Histo1DDef right 
)
friend

ordering operator (to please BoundedVerifier)

Definition at line 59 of file HistoDef.cpp.

59  {
60  return std::tie( left.m_title, left.m_low, left.m_high, left.m_bins ) <
61  std::tie( right.m_title, right.m_low, right.m_high, right.m_bins );
62  }

◆ operator<<

std::ostream& operator<< ( std::ostream o,
const Gaudi::Histo1DDef histo 
)
friend

the streamer operator for class Gaudi::Histo1DDef

Definition at line 66 of file HistoDef.cpp.

66 { return histo.fillStream( o ); }

Member Data Documentation

◆ m_bins

int Gaudi::Histo1DDef::m_bins
private

Number of bins.

Definition at line 109 of file HistoDef.h.

◆ m_high

double Gaudi::Histo1DDef::m_high
private

High Edge.

Definition at line 107 of file HistoDef.h.

◆ m_low

double Gaudi::Histo1DDef::m_low
private

Low Edge.

Definition at line 105 of file HistoDef.h.

◆ m_title

std::string Gaudi::Histo1DDef::m_title
private

Histogram title.

Definition at line 103 of file HistoDef.h.


The documentation for this class was generated from the following files:
std::move
T move(T... args)
Gaudi::Histo1DDef::m_high
double m_high
High Edge.
Definition: HistoDef.h:107
Gaudi::Histo1DDef::m_low
double m_low
Low Edge.
Definition: HistoDef.h:105
Gaudi::Histo1DDef::fillStream
std::ostream & fillStream(std::ostream &o) const
printout of the histogram definition
Definition: HistoDef.cpp:52
std::tie
T tie(T... args)
Gaudi::Histo1DDef::highEdge
double highEdge() const
get the high edge
Definition: HistoDef.h:65
Gaudi::Utils::toString
std::string toString(const TYPE &obj)
the generic implementation of the type conversion to the string
Definition: ToStream.h:353
std::left
T left(T... args)
Gaudi::Histo1DDef::m_bins
int m_bins
Number of bins.
Definition: HistoDef.h:109
Gaudi::Histo1DDef::m_title
std::string m_title
Histogram title.
Definition: HistoDef.h:103
Gaudi::Histo1DDef::lowEdge
double lowEdge() const
get the low edge
Definition: HistoDef.h:63
Gaudi::Histo1DDef::bins
int bins() const
get the number of bins
Definition: HistoDef.h:67
Gaudi::Histo1DDef::title
const std::string & title() const
get the title
Definition: HistoDef.h:69