Gaudi Framework, version v21r7

Home   Generated: 22 Jan 2010

Gaudi::Histos Namespace Reference

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


Functions

GAUDI_API AIDA::IHistogram1D * book (IHistogramSvc *svc, const std::string &path, const Gaudi::Histo1DDef &hist)
 helper function to book 1D-histogram
GAUDI_API AIDA::IHistogram1D * book (IHistogramSvc *svc, const std::string &dir, const std::string &id, const Gaudi::Histo1DDef &hist)
 helper function to book 1D-histogram
GAUDI_API AIDA::IHistogram1D * book (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 ibelyaev@physics.syr.edu
Date:
2007-09-17

Function Documentation

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:
svc pointer to Histogram Service
dir directory path in Histogram Data Store
id historgam identifier
hist histogram desctription

Definition at line 159 of file HistoDef.cpp.

00163 {
00164   if ( 0 == svc ) { return 0 ; }
00165   return svc -> book 
00166     ( dir , id  , 
00167       hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;  
00168 }

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:
svc pointer to Histogram Service
dir directory path in Histogram Data Store
id historgam identifier
hist histogram desctription

Definition at line 139 of file HistoDef.cpp.

00143 {
00144   if ( 0 == svc ) { return 0 ; }
00145   return svc -> book 
00146     ( dir , id  , 
00147       hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;  
00148 }

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

helper function to book 1D-histogram

Parameters:
svc pointer to Histogram Service
path full path in Histogram Data Store
hist histogram desctription

Definition at line 120 of file HistoDef.cpp.

00123 {
00124   if ( 0 == svc ) { return 0 ; }
00125   return svc -> book 
00126     ( path , 
00127       hist.title() , hist.bins() , hist.lowEdge() , hist.lowEdge() ) ;
00128 }


Generated at Fri Jan 22 20:44:28 2010 for Gaudi Framework, version v21r7 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004