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

H1DVar.cpp

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

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