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

H1D.cpp

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

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