]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaGui/AliTRDqaGuiMainBlack.h
Updated QA version (Sylwester)
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiMainBlack.h
1 #ifndef ALITRDQAGUIMAINBLACK_H
2 #define ALITRDQAGUIMAINBLACK_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: AliTRDqaGuiMainBlack.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. It lets display and browse throu histograms created by 
13 // the AliTRDQADataMakerRec run during the reconstruction 
14 //
15 // S. Radomski 
16 // Uni-Heidelberg
17 // Feb. 2008
18 // 
19 //////////////////////////////////////////////////////////////////////////////////
20
21 #include "TGFrame.h"
22
23 class TGWindow;
24 class TGTab;
25
26 class AliTRDqaGuiBlackSM;
27 class AliTRDqaGuiBlackChamber;  
28
29 class AliTRDqaGuiMainBlack : public TGMainFrame {
30
31  public:
32
33   AliTRDqaGuiMainBlack(TGWindow *parent);
34   AliTRDqaGuiMainBlack& operator = (const AliTRDqaGuiMainBlack& /*g*/) { return *this; };
35   ~AliTRDqaGuiMainBlack() {}
36
37   void SetQAFile(const char *file);
38
39  protected:
40   
41   TGTab *fGTabPanel;                   // Something
42    
43   AliTRDqaGuiBlackSM       *fGSM;      // Something else
44   AliTRDqaGuiBlackChamber  *fGChamber; // Something 
45   
46   ClassDef(AliTRDqaGuiMainBlack,1)     // Does something
47
48 };
49
50 #endif