]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiMainBlack.h
QA ref defaut storage setter in sim and rec
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiMainBlack.h
CommitLineData
36f55715 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
23class TGWindow;
24class TGTab;
25
26class AliTRDqaGuiBlackSM;
27class AliTRDqaGuiBlackChamber;
a73a87be 28class AliTRDqaGuiBlackError;
29class AliTRDqaGuiBlackGlobal;
6a9add6f 30class AliTRDqaGuiBlackGTU;
36f55715 31
32class AliTRDqaGuiMainBlack : public TGMainFrame {
33
34 public:
35
36 AliTRDqaGuiMainBlack(TGWindow *parent);
36f55715 37 ~AliTRDqaGuiMainBlack() {}
38
39 void SetQAFile(const char *file);
40
41 protected:
42
43 TGTab *fGTabPanel; // Something
44
45 AliTRDqaGuiBlackSM *fGSM; // Something else
46 AliTRDqaGuiBlackChamber *fGChamber; // Something
a73a87be 47 AliTRDqaGuiBlackError *fGError; // somethig
48 AliTRDqaGuiBlackGlobal *fGGlobal; // global view
6a9add6f 49 AliTRDqaGuiBlackGTU *fGGTU; // view status of optical links
8c8c004f 50
51 private:
52 AliTRDqaGuiMainBlack& operator = (const AliTRDqaGuiMainBlack& /*g*/) { return *this; };
53 AliTRDqaGuiMainBlack(const AliTRDqaGuiMainBlack &);
54
36f55715 55 ClassDef(AliTRDqaGuiMainBlack,1) // Does something
56
57};
58
59#endif