Gaudi Framework, version v23r10

Home   Generated: Mon Sep 30 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
Gaudi::Histos Namespace Reference

collection of simple utilities to deal with histograms More...

Functions

GAUDI_API AIDA::IHistogram1Dbook (IHistogramSvc *svc, const std::string &path, const Gaudi::Histo1DDef &hist)
 helper function to book 1D-histogram
 
GAUDI_API AIDA::IHistogram1Dbook (IHistogramSvc *svc, const std::string &dir, const std::string &id, const Gaudi::Histo1DDef &hist)
 helper function to book 1D-histogram
 
GAUDI_API AIDA::IHistogram1Dbook (IHistogramSvc *svc, const std::string &dir, const int id, const Gaudi::Histo1DDef &hist)
 helper function to book 1D-histogram
 

Detailed Description

collection of simple utilities to deal with histograms

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

Function Documentation

AIDA::IHistogram1D * Gaudi::Histos::book ( IHistogramSvc svc,
const std::string path,
const Gaudi::Histo1DDef hist 
)

helper function to book 1D-histogram

Parameters
svcpointer to Histogram Service
pathfull path in Histogram Data Store
histhistogram desctription

Definition at line 132 of file HistoDef.cpp.

{
if ( 0 == svc ) { return 0 ; }
return svc -> book
( path ,
hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;
}
AIDA::IHistogram1D * Gaudi::Histos::book ( IHistogramSvc svc,
const std::string dir,
const std::string id,
const Gaudi::Histo1DDef hist 
)

helper function to book 1D-histogram

Parameters
svcpointer to Histogram Service
dirdirectory path in Histogram Data Store
idhistorgam identifier
histhistogram desctription

Definition at line 151 of file HistoDef.cpp.

{
if ( 0 == svc ) { return 0 ; }
return svc -> book
( dir , id ,
hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;
}
AIDA::IHistogram1D * Gaudi::Histos::book ( IHistogramSvc svc,
const std::string dir,
const int  id,
const Gaudi::Histo1DDef hist 
)

helper function to book 1D-histogram

Parameters
svcpointer to Histogram Service
dirdirectory path in Histogram Data Store
idhistorgam identifier
histhistogram desctription

Definition at line 171 of file HistoDef.cpp.

{
if ( 0 == svc ) { return 0 ; }
return svc -> book
( dir , id ,
hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;
}

Generated at Mon Sep 30 2013 14:52:06 for Gaudi Framework, version v23r10 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004