/*Emacs: -*- C++ -*- */ /************************************************ * ptdrHistogramStyleAscii.h: ************************************************/ /* CVS info: $Header$ Tag : $Name$ Modified: $Date$ */ #ifndef _PTDRHISTOGRAMSTYLEASCII_H_ #define _PTDRHISTOGRAMSTYLEASCII_H_ /*** Class declarations in this file ***/ class TPTDRHistogramStyleAscii; // Standard C++ and STL includes // Local project includes #include "ptdrHistogramStyle.h" // Forward class references class TPTDRHistogramStyleAscii: public TPTDRHistogramStyle { public: TPTDRHistogramStyleAscii(){ gSystem->Load("ptdrHistogramStyle_C.so"); }; virtual ~TPTDRHistogramStyleAscii(){}; /** See PTDRHistogramStyle class for the variables description. The format of the ASCII file is the following: btag1 btag2 ptj1 ptj2 m12 eta2 mtop pttop sigmat ht mtb variableIndex specifies which variable to take. */ TH1F* AddHistogram(TString variableName, TString fileName, TString lName, Int_t nBins=100, Double_t min=0, Double_t max=0, Double_t weight=1, Int_t variableIndex=0); /** Needed by Root */ ClassDef(TPTDRHistogramStyleAscii,1); // CODE HERE }; // ----------------------------------------------------------------------------- // Inline Methods // ----------------------------------------------------------------------------- #endif /* _PTDRHISTOGRAMSTYLEASCII_H_ */ #if 0 /* ****************************** LOG MESSAGES ****************************** */ /* - $Log$ */ /* **************************** END LOG MESSAGES **************************** */ #endif