]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiBlackGlobal.cxx
data transport between the tracker and the merger is optimized
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiBlackGlobal.cxx
CommitLineData
a73a87be 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id: AliTRDqaGuiBlackGlobal.cxx 23387 2008-01-17 17:25:16Z cblume $ */
17
18//////////////////////////////////////////////////////////////////////////////////
19//
20// This class is a Graphical User Interface for the Quality Monitorig
21// of black (non zero zuppresed) events from TRD.
22// It lets display and browse throu histograms created by the class
23// AliTRDqaBlackEvents.
24// The class works in cooperation with AliTRDqaGuiMainBlack.
25//
26// S. Radomski
27// Uni-Heidelberg
28// June 2008
29//
30//////////////////////////////////////////////////////////////////////////////////
31
32#include "AliTRDqaGuiBlackGlobal.h"
33
34#include "TH1D.h"
35#include "TGraph.h"
36#include "TFile.h"
37#include "TCanvas.h"
38#include "TString.h"
39#include "TSystem.h"
40#include "TGaxis.h"
41
42#include "TRootEmbeddedCanvas.h"
43
44ClassImp(AliTRDqaGuiBlackGlobal)
45
46//////////////////////////////////////////////////////////////////////////////////
47
48AliTRDqaGuiBlackGlobal::AliTRDqaGuiBlackGlobal()
49{
50 //
51 // Default constructor
52 //
53
54}
55
56//////////////////////////////////////////////////////////////////////////////////
57
58AliTRDqaGuiBlackGlobal::AliTRDqaGuiBlackGlobal(TGWindow *parent)
59 : TGCompositeFrame(parent, 720, 500)
60{
61 //
62 // Main constructor
63 //
64
65 SetLayoutManager(new TGMatrixLayout(this,2,3,0,0));
66
67 for(Int_t i=0; i<6; i++) {
68 fCanvasList[i] = new TRootEmbeddedCanvas(Form("pos_%d", i), this, 330, 350);
69 AddFrame(fCanvasList[i]);
70 }
71
72 for(Int_t i=0; i<3; i++) {
73 fHistList[i] = 0;
74 fGraphList[i] = 0;
75 }
76}
77
78//////////////////////////////////////////////////////////////////////////////////
79
80void AliTRDqaGuiBlackGlobal::SetQAFile(const char *filename) {
81 //
82 // Set the file with histograms
83 //
84
85 TGaxis::SetMaxDigits(3);
86
87 const char *names[6] = {
6a9add6f 88 "noiseTotal", "peakPeak", "mcmEvDist_999",
89 "trendMCM", "fracPP_0", "nADCinEvent"
a73a87be 90 };
91
92 const char *title[6] = {
a73a87be 93 ";noise (ADC)",
94 ";peak-peak (ADC)",
6a9add6f 95 ";#Delta Event Number from MCM",
96
97 "number of active MCMs;event number",
98 "number of ADCs with PP > 10;event number",
99 "number of ADC chanels;event number"
a73a87be 100 };
101
102
103 strcpy(fFileName,filename);
104
105 for(int i=0; i<3; i++) {
106
107 if (fHistList[i]) delete fHistList[i];
108 if (fGraphList[i]) delete fGraphList[i];
109
110 fHistList[i] = 0;
111 fGraphList[i] = 0;
112 }
113
114 TFile *file = new TFile(filename);
115
116 for(Int_t i=0; i<3; i++) {
117
118 fHistList[i] = (TH1D*)file->Get(names[i]);
119 if (fHistList[i]) {
6a9add6f 120
a73a87be 121 fCanvasList[i]->GetCanvas()->cd();
6a9add6f 122 gPad->SetLogy();
123 fHistList[i]->Draw();
a73a87be 124 fHistList[i]->SetTitle(title[i]);
a73a87be 125 }
126
6a9add6f 127
a73a87be 128 fGraphList[i] = (TGraph*)file->Get(names[i+3]);
129 if (fGraphList[i]) {
130 fCanvasList[i+3]->GetCanvas()->cd();
131 fGraphList[i]->Draw("apl");
6a9add6f 132 fGraphList[i]->SetMarkerStyle(7);
a73a87be 133 fGraphList[i]->GetHistogram()->SetTitle(title[i+3]);
134 }
135 }
136}
137
138//////////////////////////////////////////////////////////////////////////////////