#if !defined HPROJECTION_H #define HPROJECTION_H //------------------------------------------------------------------------- // // File name: hprojection.h // Subject: Slicing of 2dim histogrammes. // Author: D.Vasiliev (INFN-LNS, Catania) "vassili@lns.infn.it" // Date: March 2000 // // Remarks: Obsolete class, which was used at the prototyping stage. // //------------------------------------------------------------------------- // // Description: // // This file contains the declaration of the class HProjection. // This class makes projections of 2dim histogrammes. // //------------------------------------------------------------------------- #include class HProjection : public TObject { protected: HProjection() {} public: virtual ~HProjection() {} void static project(TCanvas *p, Int_t canvid); public: ClassDef(HProjection,0) //Slicing of 2dim histogrammes }; #endif