]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaGui/AliTRDqaGuiClusters.h
Updated ideal geometry, including ACORDE
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiClusters.h
1 #ifndef ALITRDQAGUICLUSTERS_H
2 #define ALITRDQAGUICLUSTERS_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id: AliTRDqaGuiClusters.h 23387 2008-01-17 17:25:16Z cblume $ */
8
9 //////////////////////////////////////////////////////////////////////////////////
10 //
11 // This class is a Graphical User Interface for the Quality Monitorig 
12 // of clusters on the full detector level.
13 // It displays histograms created by the AliTRDQADataMakerRec 
14 // run during the reconstruction 
15 //
16 // S. Radomski 
17 // Uni-Heidelberg
18 // Feb. 2008
19 // 
20 //////////////////////////////////////////////////////////////////////////////////
21
22 #include "TGFrame.h"  
23
24 class TH1D;
25 class TRootEmbeddedCanvas;
26
27 class AliTRDqaGuiClusters : public TGCompositeFrame {
28   
29  public:
30
31   AliTRDqaGuiClusters() {}
32   AliTRDqaGuiClusters(TGWindow *parent);
33   ~AliTRDqaGuiClusters() {}
34   
35   void SetQAFile(const char *filename);
36
37  protected:
38
39   const char *fNameList[4];           // list of histogram names
40   static const Int_t fgkLogList[4];   // flag for log scale
41  
42   TRootEmbeddedCanvas *fCanvasList[4]; // list of canvases
43   TH1D *fHistList[4];                  // and histograms
44
45  private:
46   AliTRDqaGuiClusters& operator = (const AliTRDqaGuiClusters& /*g*/) { return *this; };
47   AliTRDqaGuiClusters(const AliTRDqaGuiClusters &);
48
49   ClassDef(AliTRDqaGuiClusters,1) // 
50 };
51
52 #endif