#ifndef ALITRDQAGUIBLACKGTU_H #define ALITRDQAGUIBLACKGTU_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id: AliTRDqaGuiBlackGTU.h 23387 2008-01-17 17:25:16Z cblume $ */ ////////////////////////////////////////////////////////////////////////////////// // // This class is a Graphical User Interface for the Quality Monitorig // of black (non zero zuppresed) events from TRD. // It lets display and browse throu histograms created by the class // AliTRDqaBlackEvents. // The class works in cooperation with AliTRDqaGuiMainBlack. // // S. Radomski // Uni-Heidelberg // Feb. 2008 // ////////////////////////////////////////////////////////////////////////////////// #include "TGFrame.h" class TH1; class TGraph; class TString; class TRootEmbeddedCanvas; class AliTRDqaGuiBlackGTU : public TGCompositeFrame { public: AliTRDqaGuiBlackGTU(); AliTRDqaGuiBlackGTU(TGWindow *parent); ~AliTRDqaGuiBlackGTU() {} void SetQAFile(const char *filename); protected: char fFileName[265]; // file with histograms TRootEmbeddedCanvas *fCanvasList[6]; // list of canvases TH1 *fHistList[3]; // and histograms TGraph *fGraphList[3]; // trend graphs private: AliTRDqaGuiBlackGTU& operator = (const AliTRDqaGuiBlackGTU& /*g*/) { return *this; }; AliTRDqaGuiBlackGTU(const AliTRDqaGuiBlackGTU&); ClassDef(AliTRDqaGuiBlackGTU,2) // Gui class for black events }; #endif