]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPainterRegistry.cxx
Updates
[u/mrichter/AliRoot.git] / MUON / AliMUONPainterRegistry.cxx
CommitLineData
0145e89a 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$
17
18#include "AliMUONPainterRegistry.h"
19
1ffbeb9d 20#include "AliMpManuIterator.h"
21#include "AliMUON2DMap.h"
22#include "AliMUONCalibParamND.h"
0145e89a 23#include "AliMUONPainterMatrix.h"
0145e89a 24#include "AliLog.h"
25#include <TGMenu.h>
26#include <TGWindow.h>
27#include <THashList.h>
28#include <TObjArray.h>
29#include <TString.h>
30#include <Riostream.h>
31
32///\class AliMUONPainterRegistry
33///
34/// Registry for AliMUONVPainter related stuff : painter data sources
35/// and painter matrices
36///
37///\author Laurent Aphecetche, Subatech
38
b80faac0 39using std::cout;
40using std::endl;
0145e89a 41///\cond CLASSIMP
42ClassImp(AliMUONPainterRegistry)
43///\endcond
44
45AliMUONPainterRegistry* AliMUONPainterRegistry::fgInstance(0x0);
46
47//_____________________________________________________________________________
4a3224ff 48AliMUONPainterRegistry::AliMUONPainterRegistry() : TObject(), TQObject(),
0145e89a 49fPainterMatrices(new TObjArray),
0145e89a 50fHistoryMenu(0x0),
51fMenuBar(0x0),
8f0acce4 52fHistoryCounter(0)
0145e89a 53{
54 /// ctor
0145e89a 55 fPainterMatrices->SetOwner(kTRUE);
0145e89a 56}
57
58//_____________________________________________________________________________
59AliMUONPainterRegistry::~AliMUONPainterRegistry()
60{
61 /// dtor
0145e89a 62 delete fPainterMatrices;
0145e89a 63}
64
65//_____________________________________________________________________________
66Int_t
67AliMUONPainterRegistry::FindIndexOf(AliMUONPainterMatrix* group) const
68{
69 /// Get the index of a given painterMatrix
70 return fPainterMatrices->IndexOf(group);
71}
72
0145e89a 73//_____________________________________________________________________________
74AliMUONPainterMatrix*
49419555 75AliMUONPainterRegistry::PainterMatrix(const char* name) const
0145e89a 76{
77 /// Get a painterMatrix by name
78 return static_cast<AliMUONPainterMatrix*>(fPainterMatrices->FindObject(name));
79}
80
81//_____________________________________________________________________________
82void
83AliMUONPainterRegistry::HistoryMenuActivated(Int_t i)
84{
85 /// A painterMatrix was chosen from the history menu
86
87 AliDebug(1,Form("i=%d",i));
88
89 TGMenuEntry* entry = fHistoryMenu->GetEntry(i);
90
91 AliMUONPainterMatrix* group = reinterpret_cast<AliMUONPainterMatrix*>(entry->GetUserData());
92
93 PainterMatrixWantToShow(group);
94}
95
96//_____________________________________________________________________________
97AliMUONPainterRegistry*
98AliMUONPainterRegistry::Instance()
99{
100 /// Get unique instance of this class
101 if ( !fgInstance ) fgInstance = new AliMUONPainterRegistry;
102 return fgInstance;
103}
104
105//_____________________________________________________________________________
106AliMUONPainterMatrix*
107AliMUONPainterRegistry::PainterMatrix(Int_t i) const
108{
109 /// Get one painter matrix
110 if ( i >= 0 && i <= fPainterMatrices->GetLast() )
111 {
112 return static_cast<AliMUONPainterMatrix*>(fPainterMatrices->At(i));
113 }
114 else
115 {
116 AliError(Form("Index out of bounds : %d / %d",i,fPainterMatrices->GetLast()+1));
117 return 0x0;
118 }
119}
120
121//_____________________________________________________________________________
122void
57e2ad1a 123AliMUONPainterRegistry::PainterMatrixWantToShow(const AliMUONPainterMatrix* group)
0145e89a 124{
125 /// A given paintermatrix want to appear on screen
126 Long_t param[] = { (Long_t)group };
127
128 Emit("PainterMatrixWantToShow(AliMUONPainterMatrix*)",param);
129}
130
131//_____________________________________________________________________________
132void
133AliMUONPainterRegistry::AddToHistory(AliMUONPainterMatrix* group)
134{
135 /// Add a matrix to the history
136
137 if ( !fHistoryMenu && fMenuBar )
138 {
139 fHistoryMenu = new TGPopupMenu(gClient->GetRoot());
140 TGPopupMenu* before = 0x0; //FIXME: could try to find a place where to put it (e.g. before Help ?)
141
142 fMenuBar->AddPopup("&History",fHistoryMenu, new TGLayoutHints(kLHintsNormal),before);
143
144 fHistoryMenu->Connect("Activated(Int_t)",
145 "AliMUONPainterRegistry",this,
146 "HistoryMenuActivated(Int_t)");
147
1130977f 148 AliDebug(1,Form("HistoryMenu create at %p",fHistoryMenu));
0145e89a 149 }
150
151 if ( fHistoryMenu )
152 {
153 TIter next(fHistoryMenu->GetListOfEntries());
154 TGMenuEntry* e(0x0);
155
156 while ( ( e = static_cast<TGMenuEntry*>(next()) ) )
157 {
158 if ( e->GetUserData() == group )
159 {
160 fHistoryMenu->DeleteEntry(e);
161 break;
162 }
163 }
164
165 e = static_cast<TGMenuEntry*>(fHistoryMenu->GetListOfEntries()->First());
166
167 fHistoryMenu->AddEntry(group->GetName(),++fHistoryCounter,(void*)group,0x0,e);
168 }
169 else
170 {
171 AliError("fHistoryMenu is null. We probably did not find the relevant menu entry ?");
172 }
173}
174
175//_____________________________________________________________________________
176void
57e2ad1a 177AliMUONPainterRegistry::PainterMatrixWasRegistered(const AliMUONPainterMatrix* group)
0145e89a 178{
179 /// A new painter matrix was registered
180 Long_t param[] = { (Long_t)group };
181
182 Emit("PainterMatrixWasRegistered(AliMUONPainterMatrix*)",param);
183}
184
185//_____________________________________________________________________________
186void
57e2ad1a 187AliMUONPainterRegistry::PainterMatrixWasUnregistered(const AliMUONPainterMatrix* group)
0145e89a 188{
189 /// A painter matrix was unregistered
190 Long_t param[] = { (Long_t)group };
191
192 Emit("PainterMatrixWasUnregistered(AliMUONPainterMatrix*)",param);
193}
194
195//_____________________________________________________________________________
196void
197AliMUONPainterRegistry::Print(Option_t* opt) const
198{
199 /// Printout
200 TString sopt(opt);
201 sopt.ToUpper();
202
0145e89a 203 cout << "Number of painter matrices = " << NumberOfPainterMatrices() << endl;
204
0145e89a 205 if ( sopt.Contains("FULL") || sopt.Contains("MATRIX") )
206 {
207 TIter next(fPainterMatrices);
208 AliMUONPainterMatrix* matrix;
209
210 while ( ( matrix = static_cast<AliMUONPainterMatrix*>(next()) ) )
211 {
212 matrix->Print();
213 }
214 }
215
216}
217
218//_____________________________________________________________________________
219Int_t
220AliMUONPainterRegistry::Register(AliMUONPainterMatrix* group)
221{
222 /// group is adopted, i.e. the registry becomes the owner of it.
223 fPainterMatrices->AddLast(group);
224
225 PainterMatrixWasRegistered(group);
226
227 return fPainterMatrices->IndexOf(group);
228}
229
0145e89a 230//_____________________________________________________________________________
231Int_t
232AliMUONPainterRegistry::NumberOfPainterMatrices() const
233{
234 /// The number of painter matrices we handle
235 return fPainterMatrices->GetLast()+1;
236}
237
0145e89a 238//_____________________________________________________________________________
239Bool_t
240AliMUONPainterRegistry::Unregister(AliMUONPainterMatrix* group)
241{
242 /// Unregister some matrix
243
244 if (!group) return kFALSE;
245
246 PainterMatrixWasUnregistered(group);
247
248 TObject* o = fPainterMatrices->Remove(group);
249 if ( o )
250 {
251 delete o;
252 }
253 else
254 {
255 AliError(Form("Could not unregister group named %s",group->GetName()));
256 }
257 return ( o != 0x0 );
258}