]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiEnergyDeposit.cxx
SDD QA updated in order to deal with acquisition through HLT (M. Siciliano)
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiEnergyDeposit.cxx
CommitLineData
8e2f611a 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//////////////////////////////////////////////////////////////////////////////////
17//
18// This class is a Graphical User Interface for the Quality Monitorig
19//
20// S. Radomski
21// Uni-Heidelberg
22// April 2008
23//
24//////////////////////////////////////////////////////////////////////////////////
25
26#include "AliTRDqaGuiEnergyDeposit.h"
27
28#include "TH1D.h"
29#include "TFile.h"
30#include "TCanvas.h"
31#include "TString.h"
32#include "TSystem.h"
33
34#include "TGLabel.h"
35#include "TGComboBox.h"
36#include "TGButton.h"
37#include "TRootEmbeddedCanvas.h"
38
39ClassImp(AliTRDqaGuiEnergyDeposit)
40
41//////////////////////////////////////////////////////////////////////////////////
42
43AliTRDqaGuiEnergyDeposit::AliTRDqaGuiEnergyDeposit()
44 : fIdx(0),
45 fGPanel(0),
46 fGCanvas(0),
47 fGSelect(0),
48 fGPrev(0),
49 fGNext(0)
50{
51
52}
53
54//////////////////////////////////////////////////////////////////////////////////
55
56AliTRDqaGuiEnergyDeposit::AliTRDqaGuiEnergyDeposit(TGWindow *parent)
57 : TGCompositeFrame(parent, 720, 500),
58 fIdx(0),
59 fGPanel(0),
60 fGCanvas(0),
61 fGSelect(0),
62 fGPrev(0),
63 fGNext(0)
64{
65 //
66 // Main constructor
67 //
68
69 fIdx = 0;
70
71 // steering panel
72
73 SetLayoutManager(new TGVerticalLayout(this));
74
75 fGPanel = new TGHorizontalFrame(this);
76
77 // fGLabel = new TGLabel(fGPanel, "Current Type: ");
78 fGPrev = new TGTextButton(fGPanel, "Prev Type");
79 fGNext = new TGTextButton(fGPanel, "Next Type");
80
81 const char *types[5] = {"electron", "muon", "pion", "kaon", "proton"};
82 fGSelect = new TGComboBox(fGPanel);
83 for(int i=0; i<5; i++) fGSelect->AddEntry(types[i], i); //Form("Type %d", i), i);
84 fGSelect->Resize(100, fGPrev->GetHeight());
85 fGSelect->Select(fIdx);
86
87 TGLayoutHints *hint = new TGLayoutHints(kLHintsNormal, 5, 5, 5, 5);
88
89 // fGPanel->AddFrame(fGLabel, hint);
90 fGPanel->AddFrame(fGPrev, hint);
91 fGPanel->AddFrame(fGSelect, hint);
92 fGPanel->AddFrame(fGNext, hint);
93
94 AddFrame(fGPanel);
95
96 // panel logic
97 fGPrev->Connect("Clicked()", "AliTRDqaGuiEnergyDeposit", this, "PreviusType()");
98 fGNext->Connect("Clicked()", "AliTRDqaGuiEnergyDeposit", this, "NextType()");
99 fGSelect->Connect("Selected(Int_t", "AliTRDqaGuiEnergyDeposit", this, "SelectType(Int_t)");
100
101 // histograms
102 /**/
103 fGCanvas = new TGCompositeFrame(this);
104 fGCanvas->SetLayoutManager(new TGMatrixLayout(fGCanvas,2,3,1,1));
105
106 fNameList[0] = "probNeg";
107 fNameList[1] = "ptSigNeg";
108 fNameList[2] = "ptSigPureNeg";
109 fNameList[3] = "probPos";
110 fNameList[4] = "ptSigPos";
111 fNameList[5] = "ptSigPurePos";
112
113 for(Int_t i=0; i<6; i++) {
114 fCanvasList[i] = new TRootEmbeddedCanvas(fNameList[i], fGCanvas, 320, 300);
115 fGCanvas->AddFrame(fCanvasList[i]);
116 fCanvasList[i]->GetCanvas()->SetRightMargin(0.05);
117 }
118
119 for(Int_t i=0; i<4; i++) {
120 fHistList[i] = 0;
121 }
122
123 AddFrame(fGCanvas);
124 /**/
125}
126
127//////////////////////////////////////////////////////////////////////////////////
128
129void AliTRDqaGuiEnergyDeposit::SetQAFile(const char *filename) {
130 //
131 // Ste file with histograms
132 //
133
134 strcpy(fFileName, filename);
135
136 for(Int_t i=0; i<6; i++) {
137 if (fHistList[i]) delete fHistList[i];
138 }
139
140 const Int_t logy[] = {1, 0, 0, 1, 0, 0};
141 const Int_t logx[] = {0, 1, 1, 0, 1, 1};
142 const char *opt[] = {"", "colz", "colz", "", "colz", "cloz"};
143
144 TFile *file = new TFile(filename);
145
146 for(Int_t i=0; i<6; i++) {
147 fHistList[i] = (TH1D*)gDirectory->Get(Form("%s%d", fNameList[i], fIdx));
148 if (fHistList[i]) fHistList[i]->SetDirectory(0);
149 fCanvasList[i]->GetCanvas()->cd();
150 if (fHistList[i]) fHistList[i]->Draw(opt[i]);
151 gPad->SetLogy(logy[i]);
152 gPad->SetLogx(logx[i]);
153 fCanvasList[i]->GetCanvas()->Update();
154 }
155
156 file->Close();
157 delete file;
158
159}
160
161//////////////////////////////////////////////////////////////////////////////////
162
163void AliTRDqaGuiEnergyDeposit::SetType(Int_t idx) {
164 //
165 // Sets active supermodule
166 //
167
168 fIdx = idx;
169 fGSelect->Select(fIdx, 0);
170 SetQAFile(fFileName);
171}
172
173//////////////////////////////////////////////////////////////////////////////////
174