]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPainterMasterFrame.cxx
New configuration for AliGenMUONCocktailpp
[u/mrichter/AliRoot.git] / MUON / AliMUONPainterMasterFrame.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 "AliMUONPainterMasterFrame.h"
19
20#include "AliMUONChamberPainter.h"
21#include "AliMUONPainterGroup.h"
22#include "AliMUONPainterMatrix.h"
23#include "AliMUONPainterMatrixFrame.h"
24#include "AliMUONPainterInterfaceHelper.h"
25#include "AliMUONPainterRegistry.h"
26#include "AliMUONAttPainterSelectorFrame.h"
27#include "AliMUONVPainter.h"
28#include "AliCodeTimer.h"
29#include "AliLog.h"
30#include <Riostream.h>
31#include <TApplication.h>
32#include <TCanvas.h>
33#include <TEnv.h>
34#include <TGComboBox.h>
35#include <TGLabel.h>
36#include <TObjArray.h>
37#include <TObjString.h>
38#include <TGButtonGroup.h>
39#include <TGMsgBox.h>
40
41/// \class AliMUONPainterMasterFrame
42///
43/// Main window of the 2D display
44///
45/// \author Laurent Aphecetche, Subatech
46
47///\cond CLASSIMP
48ClassImp(AliMUONPainterMasterFrame)
49///\endcond
50
51namespace
52{
53 UInt_t UniqueID(Int_t nx, Int_t ny)
54 {
55 return ny | (nx << 8);
56 }
57
58 Int_t Nx(UInt_t uniqueID)
59 {
60 return ( uniqueID & 0xFF00 ) >> 8;
61 }
62
63 Int_t Ny(UInt_t uniqueID)
64 {
65 return uniqueID & 0xFF;
66 }
67
68}
69
70const Int_t AliMUONPainterMasterFrame::fgkBorderSize = 10;
71
72//_____________________________________________________________________________
73AliMUONPainterMasterFrame::AliMUONPainterMasterFrame(const TGWindow* p,
74 UInt_t w, UInt_t h)
75: TGCompositeFrame(p,w,h,kVerticalFrame),
76 fNavigationFrame(0x0),
77 fPainterMatrixFrame(0x0),
78 fBackButton(0x0),
79 fForwardButton(0x0),
80 fGroupTitle(0x0),
81 fNavigation(),
82 fCurrentNavigationPosition(-1),
83 fAttPainterSelectorFrame(0x0)
84{
85 /// ctor
86
87 UInt_t wi = w - fgkBorderSize*2;
88 UInt_t hi = h - fgkBorderSize*3;
89
90 fNavigationFrame = new TGHorizontalFrame(this,wi);
91
92 AddFrame(fNavigationFrame,new TGLayoutHints(kLHintsExpandX|kLHintsTop,
93 fgkBorderSize,fgkBorderSize,
94 fgkBorderSize,fgkBorderSize));
95
96 fBackButton = new TGPictureButton(fNavigationFrame,
97 gClient->GetPicture("tb_back.xpm"));
98
99 fForwardButton = new TGPictureButton(fNavigationFrame,
100 gClient->GetPicture("tb_forw.xpm"));
101
102 fAttPainterSelectorFrame = new AliMUONAttPainterSelectorFrame(fNavigationFrame,w/2,20);
103
104 fGroupTitle = new TGLabel(fNavigationFrame,"");
105
106 fNavigationFrame->AddFrame(fBackButton,new TGLayoutHints(kLHintsCenterY));
107 fNavigationFrame->AddFrame(fForwardButton,new TGLayoutHints(kLHintsCenterY));
108
109 fNavigationFrame->AddFrame(fAttPainterSelectorFrame,new TGLayoutHints(kLHintsCenterY,10));
110
111 fAttPainterSelectorFrame->Connect("Clicked(AliMUONAttPainter*)",
112 "AliMUONPainterMasterFrame",
113 this,
114 "AttributesChanged(AliMUONAttPainter*)");
115
116 fNavigationFrame->AddFrame(fGroupTitle,new TGLayoutHints(kLHintsExpandX|kLHintsCenterX|kLHintsCenterY,10));
117
118 fForwardButton->Connect("Clicked()","AliMUONPainterMasterFrame",
119 this,
120 "Forward()");
121
122 fBackButton->Connect("Clicked()","AliMUONPainterMasterFrame",
123 this,
124 "Backward()");
125
126
127
128 UInt_t w1 = wi;
9016a84e 129 // UInt_t h1 = hi - fNavigationFrame->GetHeight() - 3*fgkBorderSize;
130 UInt_t h1 = hi - 7*12;
0145e89a 131
132 MakeTopPainterMatrix(w1,h1);
133
134 AddFrame(fPainterMatrixFrame,new TGLayoutHints(kLHintsExpandX,
135 fgkBorderSize,fgkBorderSize,
136 0,fgkBorderSize));
137
138 AliMUONPainterInterfaceHelper::SetBackgroundColor("MasterFrame.Navigation",*fNavigationFrame);
139 AliMUONPainterInterfaceHelper::SetBackgroundColor("MasterFrame.Main",*this);
140
141 AliDebug(1,Form("fNavigation=%p",&fNavigation));
142
143 AliMUONPainterRegistry::Instance()->Connect("PainterMatrixWantToShow(AliMUONPainterMatrix*)",
144 "AliMUONPainterMasterFrame",
145 this,
146 "PainterMatrixWantToShow(AliMUONPainterMatrix*)");
147
148 fPainterMatrixFrame->DataSourceWasChanged("*",0x0,-1);
149}
150
151//_____________________________________________________________________________
152AliMUONPainterMasterFrame::~AliMUONPainterMasterFrame()
153{
154 /// dtor
155 Cleanup();
156}
157
158//_____________________________________________________________________________
159void
160AliMUONPainterMasterFrame::AddPainterMatrix(AliMUONPainterMatrix* painterMatrix)
161{
162 /// array is adopted (by the registry)
163
164 AliDebug(1,Form("matrix=%x %s",painterMatrix,painterMatrix->GetName()));
165
166 Int_t i = AliMUONPainterRegistry::Instance()->Register(painterMatrix);
167
168 SetNavigation(i);
169}
170
171//_____________________________________________________________________________
172void
173AliMUONPainterMasterFrame::PainterMatrixWantToShow(AliMUONPainterMatrix* group)
174{
9016a84e 175 /// FIXME: should check whether we are the active window before
176 /// responding to this message ?
0145e89a 177
178 AliDebug(1,Form("group=%x %s",group,group->GetName()));
179
180 Int_t i = AliMUONPainterRegistry::Instance()->FindIndexOf(group);
181
182 Int_t alreadyThere(-1);
183
184 for ( Int_t j = 0; j < fNavigation.GetSize(); ++j )
185 {
186 if ( fNavigation[j] == i ) alreadyThere = j;
187 }
188
189 if (alreadyThere<0)
190 {
191 SetNavigation(i);
192 }
193 else
194 {
195 fCurrentNavigationPosition = alreadyThere;
196 }
197
198 ShowPainterMatrix(group);
199}
200
201//_____________________________________________________________________________
202void
203AliMUONPainterMasterFrame::SetNavigation(Int_t i)
204{
205 /// Change navigation position
206
207 ++fCurrentNavigationPosition;
208 fNavigation.Set(fCurrentNavigationPosition+1);
209 fNavigation[fCurrentNavigationPosition] = i;
210}
211
212//_____________________________________________________________________________
213void
214AliMUONPainterMasterFrame::ShowPainterMatrix(AliMUONPainterMatrix* painterMatrix)
215{
216 /// Change the painter matrix we show
217
218 fPainterMatrixFrame->Use(painterMatrix);
219
220 painterMatrix->Connect("Clicked(AliMUONVPainter*,Double_t*)",
221 "AliMUONPainterMasterFrame",this,
222 "Clicked(AliMUONVPainter*,Double_t*)");
223
224 painterMatrix->Connect("ShiftClicked(AliMUONVPainter*,Double_t*)",
225 "AliMUONPainterMasterFrame",this,
226 "ShiftClicked(AliMUONVPainter*,Double_t*)");
227
228 fPainterMatrixFrame->Connect("TitleHasChanged(const char*)",
229 "AliMUONPainterMasterFrame",this,
230 "ChangeTitle(const char*)");
231 UpdateNavigation();
232
233 UpdateAttributes(*(fPainterMatrixFrame->Matrix()));
234
235 AliMUONPainterRegistry::Instance()->AddToHistory(painterMatrix);
236
237 Layout();
238}
239
240//_____________________________________________________________________________
241void
242AliMUONPainterMasterFrame::ChangeTitle(const char* newTitle)
243{
244 /// Change the top title
245
246 fGroupTitle->SetText(newTitle);
247 fGroupTitle->Resize();
248 Layout();
249}
250
251//_____________________________________________________________________________
252void
253AliMUONPainterMasterFrame::Backward()
254{
255 /// Move back one step in the history
256 --fCurrentNavigationPosition;
257
258 AliMUONPainterMatrix* group =
259 AliMUONPainterRegistry::Instance()->PainterMatrix(fNavigation[fCurrentNavigationPosition]);
260
261 ShowPainterMatrix(group);
262
263 UpdateNavigation();
264}
265
266//_____________________________________________________________________________
267void
268AliMUONPainterMasterFrame::Forward()
269{
270 /// Move forward one step in history
271
272 ++fCurrentNavigationPosition;
273
274 AliMUONPainterMatrix* group =
275 AliMUONPainterRegistry::Instance()->PainterMatrix(fNavigation[fCurrentNavigationPosition]);
276
277 ShowPainterMatrix(group);
278
279 UpdateNavigation();
280}
281
282//_____________________________________________________________________________
283void
284AliMUONPainterMasterFrame::Clicked(AliMUONVPainter* painter, Double_t* values)
285{
286 /// A given painter was (singly) clicked
287
288 AliDebug(1,Form("%s x %7.3f y %7.3f",painter->GetName(),values[0],values[1]));
289
290 AliCodeTimerAuto("")
291
292 fPainterMatrixFrame->MouseLeave(painter);
293
294 AliMUONPainterMatrix* matrix = new AliMUONPainterMatrix(painter->Name().Data());
295
296 AliMUONVPainter* p = painter->Detach();
297
298 p->SetResponder(1);
299
300 matrix->Adopt(p);
301
302 AddPainterMatrix(matrix);
303 ShowPainterMatrix(matrix);
304}
305
306//_____________________________________________________________________________
307void
308AliMUONPainterMasterFrame::ShiftClicked(AliMUONVPainter* painter, Double_t*)
309{
310 /// A given painter was shift-clicked
311
312 AliMUONPainterMatrix* currentMatrix = fPainterMatrixFrame->Matrix();
313
314 AliMUONAttPainter a = painter->Attributes();
315
316 TString basename(Form("%s-DUAL",painter->GetName()));
317
318 TString newName = AliMUONPainterMatrix::NameIt(basename.Data(),a);
319
320 AliMUONPainterMatrix* matrix =
321 AliMUONPainterRegistry::Instance()->FindPainterMatrix(newName.Data());
322
323 if (!matrix)
324 {
325 // No. So we must make a new matrix painter from the existing one,
326 // and add to this new matrix the painters of the other one, but
327 // using the new attributes...
328
329 // create "opposite" attributes
330 AliMUONAttPainter a1(a);
331 AliMUONAttPainter a2(a);
332
333 if ( a.IsCathodeDefined() )
334 {
335 a2.SetCathode(!a.IsCathode0(),!a.IsCathode1());
336 }
337
338 if ( a.IsPlaneDefined() )
339 {
340 a2.SetPlane(!a.IsBendingPlane(),!a.IsNonBendingPlane());
341 }
342
343 a1.SetCathodeAndPlaneDisabled(kTRUE);
344 a2.SetCathodeAndPlaneDisabled(kTRUE);
345
346 AliMUONVPainter* p1 = AliMUONVPainter::CreatePainter(painter->ClassName(),
347 a1,
348 painter->ID0(),
349 painter->ID1());
350
351 AliMUONVPainter* p2 = AliMUONVPainter::CreatePainter(painter->ClassName(),
352 a2,
353 painter->ID0(),
354 painter->ID1());
355
356 if (!p1 || !p2)
357 {
358 Int_t ret;
359 new TGMsgBox(gClient->GetRoot(), this,
360 "Invalid combination", "Cannot create 2 views from this painter",
361 kMBIconExclamation, kMBOk, &ret);
362 PainterMatrixWantToShow(currentMatrix);
363 delete p1;
364 delete p2;
365 return;
366 }
367
0145e89a 368 p1->UpdateGroupsFrom(*(painter->Master()));
369 p2->UpdateGroupsFrom(*(painter->Master()));
370
371 p1->SetResponder(1);
372 p2->SetResponder(1);
373
374 Int_t nx(2);
375 Int_t ny(1);
376
377 AliMpArea area(painter->Area());
378
379 if ( area.Dimensions().X() > 1.2*area.Dimensions().Y() )
380 {
381 nx = 1;
382 ny = 2;
383 }
384
385 matrix = new AliMUONPainterMatrix(basename.Data(),nx,ny);
386
387 matrix->Adopt(p1);
388 matrix->Adopt(p2);
389
390 AddPainterMatrix(matrix);
391 }
392
393 matrix->SetData(currentMatrix->DataPattern(),
394 currentMatrix->Data(),
395 currentMatrix->DataIndex());
396
397 fPainterMatrixFrame->MouseLeave(painter);
398
399 PainterMatrixWantToShow(matrix);
400}
401
402//_____________________________________________________________________________
403void
404AliMUONPainterMasterFrame::Update()
405{
406 /// Update ourselves
407
408 fPainterMatrixFrame->Update();
409}
410
411//_____________________________________________________________________________
412void
413AliMUONPainterMasterFrame::UpdateAttributes(const AliMUONPainterMatrix& painterMatrix)
414{
415 /// Update the view buttons from the matrix we actually plot
416
417 fAttPainterSelectorFrame->Update(painterMatrix.Attributes());
418}
419
420//_____________________________________________________________________________
421void
422AliMUONPainterMasterFrame::MakeTopPainterMatrix(UInt_t w, UInt_t h)
423{
424 /// Create the first painter matrix that appears when we are create
425 /// FIXME: how to make this more flexible ?
426
427 fPainterMatrixFrame = new AliMUONPainterMatrixFrame(this,w,h);
428
429 AliMUONAttPainter att;
430
431 att.SetCathode(kTRUE,kFALSE);
432 att.SetViewPoint(kTRUE,kFALSE);
433
434 TString name = AliMUONPainterMatrix::NameIt("Tracker",att);
435
436 AliMUONPainterMatrix* painterMatrix = AliMUONPainterRegistry::Instance()->FindPainterMatrix(name);
437
438 if (!painterMatrix)
439 {
440 AliError(Form("Could not get pre-defined painter matrix %s : check that !",name.Data()));
441 }
442 else
443 {
444 PainterMatrixWantToShow(painterMatrix);
445// fPainterMatrixFrame->Use(painterMatrix);
446// ShowPainterMatrix(painterMatrix);
447 }
448}
449
450//_____________________________________________________________________________
451void
452AliMUONPainterMasterFrame::UpdateNavigation()
453{
454 /// Update navigation frame
455
456 fBackButton->SetEnabled(kTRUE);
457 fForwardButton->SetEnabled(kTRUE);
458
459 if ( fCurrentNavigationPosition == 0 )
460 {
461 fBackButton->SetEnabled(kFALSE);
462 }
463 if ( fCurrentNavigationPosition == fNavigation.GetSize()-1 )
464 {
465 fForwardButton->SetEnabled(kFALSE);
466 }
467}
468
469//_____________________________________________________________________________
470void
471AliMUONPainterMasterFrame::AttributesChanged(AliMUONAttPainter* newValues)
472{
473 /// Attributes changed (e.g. from cath0 to cath1 or bending to nonbending, etc...)
474
475 AliMUONPainterMatrix* currentMatrix = fPainterMatrixFrame->Matrix();
476
477 AliMUONAttPainter a = currentMatrix->Validate(*newValues);
478
479 if (!a.IsValid())
480 {
481 Int_t ret;
482 new TGMsgBox(gClient->GetRoot(), this,
483 "Invalid combination", "Change of attributes not possible for this object",
484 kMBIconExclamation, kMBOk, &ret);
485 PainterMatrixWantToShow(currentMatrix);
486 return;
487 }
488
489 // First check if we already have this matrix available
490
491 TString newName = AliMUONPainterMatrix::NameIt(currentMatrix->Basename(),a);
492
493 AliMUONPainterMatrix* matrix =
494 AliMUONPainterRegistry::Instance()->FindPainterMatrix(newName.Data());
495
496 if (!matrix)
497 {
498 // No. So we must make a new matrix painter from the existing one,
499 // and add to this new matrix the painters of the other one, but
500 // using the new attributes...
501
502 matrix = currentMatrix->Clone(a);
503
504 AddPainterMatrix(matrix);
505 }
506
507 matrix->SetData(currentMatrix->DataPattern(),
508 currentMatrix->Data(),
509 currentMatrix->DataIndex());
510
511 PainterMatrixWantToShow(matrix);
512}