Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

H2D.cpp

Go to the documentation of this file.
00001 // $Header: /nfs/slac/g/glast/ground/cvs/GaudiSvc/src/HistogramSvc/H2D.cpp,v 1.1.1.2 2001/04/18 18:32:50 tlindner Exp $
00002 #define HISTOGRAMSVC_H2D_CPP
00003 
00004 
00005 // Include files
00006 #include <cstdlib>
00007 #include "H2D.h"
00008 
00009 
00010 //------------------------------------------------------------------------------
00011 //
00012 // Implementation of class :  H2D
00013 //
00014 // Author :                   Pavel Binko
00015 //
00016 //------------------------------------------------------------------------------
00017 
00018 
00019 //------------------------------------------------------------------------------
00020 // Constructors with all parameters
00021 
00022 H2D::H2D( const std::string& title,            // HTL   - histogram title
00023           const std::string& histoID,          // GAUDI - histogram identifier
00024           int nBinsX,                          // HTL   - X-axis
00025           double lowX,
00026           double highX,
00027           int nBinsY,                          // HTL   - Y-axis
00028           double lowY,
00029           double highY,
00030           End_Point_Convention epc )           // HTL   - end point convention
00031   : GenHisto2D<Histo2D>( title, histoID, nBinsX, lowX, highX,
00032                                          nBinsY, lowY, highY, epc )
00033 {
00034 }
00035 
00036 H2D::H2D( const std::string& title,            // HTL   - histogram title
00037           int histoID,                         // GAUDI - histogram identifier
00038           int nBinsX,                          // HTL   - X-axis
00039           double lowX,
00040           double highX,
00041           int nBinsY,                          // HTL   - Y-axis
00042           double lowY,
00043           double highY,
00044           End_Point_Convention epc )           // HTL   - end point convention
00045   : GenHisto2D<Histo2D>( title, histoID, nBinsX, lowX, highX,
00046                                          nBinsY, lowY, highY, epc )
00047 {
00048 }

Generated at Wed Nov 21 12:22:30 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000