]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiBlackError.h
1) Centrality dependent thresholds parameters
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiBlackError.h
CommitLineData
a73a87be 1#ifndef ALITRDQAGUIBLACKERROR_H
2#define ALITRDQAGUIBLACKERROR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTRDqaGuiBlackError.h 23387 2008-01-17 17:25:16Z cblume $ */
7
8//////////////////////////////////////////////////////////////////////////////////
9//
10// This class is a Graphical User Interface for the Quality Monitorig
11// of black (non zero zuppresed) events from TRD.
12// It lets display and browse throu histograms created by the class
13// AliTRDqaBlackEvents.
14// The class works in cooperation with AliTRDqaGuiMainBlack.
15//
16// S. Radomski
17// Uni-Heidelberg
18// Feb. 2008
19//
20//////////////////////////////////////////////////////////////////////////////////
21
22#include "TGFrame.h"
23
24class TH1;
25class TGraph;
26class TString;
27class TRootEmbeddedCanvas;
28
29class AliTRDqaGuiBlackError : public TGCompositeFrame {
30
31 public:
32
33 AliTRDqaGuiBlackError();
34 AliTRDqaGuiBlackError(TGWindow *parent);
35 ~AliTRDqaGuiBlackError() {}
36
37 void SetQAFile(const char *filename);
38
39 protected:
40
41 char fFileName[265]; // file with histograms
42
43 TRootEmbeddedCanvas *fCanvasList[9]; // list of canvases
44 TH1 *fHistList[3]; // and histograms
45 TGraph *fGraphList[3]; // trand graphs
46 TH1 *fHistListSM[3]; // histograms
47
48 private:
49
50 AliTRDqaGuiBlackError& operator = (const AliTRDqaGuiBlackError& /*g*/) { return *this; };
51 AliTRDqaGuiBlackError(const AliTRDqaGuiBlackError&);
52
53 ClassDef(AliTRDqaGuiBlackError,1) // Gui class for black events
54
55};
56#endif