]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerGUIdimap.h
TClonesArray->Clone() removed
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerGUIdimap.h
CommitLineData
905654c2 1#ifndef ALIMUONTRIGGERGUIDIMAP_H
2#define ALIMUONTRIGGERGUIDIMAP_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/// \ingroup evaluation
8/// \class AliMUONTriggerGUIdimap
9/// \brief Trigger GUI utility class: digits maps of the trigger chambers
bae1aa70 10// Author Bogdan Vulpescu, LPC Clermont-Ferrand
905654c2 11
bae1aa70 12#include <TGFrame.h>
905654c2 13
14class AliLoader;
905654c2 15class TGTransientFrame;
16class TObjArray;
17class TRootEmbeddedCanvas;
18class TPave;
19class TH1F;
20class TGWindow;
21class TPad;
22
bae1aa70 23class AliMUONTriggerGUIdimap : public TGFrame
905654c2 24{
905654c2 25
26public:
27
28 AliMUONTriggerGUIdimap(AliLoader *loader,
29 TObjArray *boards,
30 const TGWindow *p, const TGWindow *main,
31 UInt_t w, UInt_t h);
32 virtual ~AliMUONTriggerGUIdimap();
33
905654c2 34 /// set the current muon loader
35 void SetLoader(AliLoader *loader) { fLoader = loader; };
36 /// true if the gui is active
37 Bool_t IsOn() const { return fIsOn; };
38
39 void DoClose();
40 void DoUpdate();
41 void DoTab(Int_t id) const;
42 void DoReset();
43 void CloseWindow();
44 void DrawMaps(Int_t chamber);
45 void SelectBoard(Int_t ib);
46
bae1aa70 47private:
48 /// Not implemented
49 AliMUONTriggerGUIdimap (const AliMUONTriggerGUIdimap& dimap);
50 /// Not implemented
51 AliMUONTriggerGUIdimap& operator=(const AliMUONTriggerGUIdimap& dimap);
52
905654c2 53private:
54
55 enum { kNBoards = 234 }; ///< number of boards
56 enum { kGood = 0x0001, kWithProblems = 0x0002, kNotWorking = 0x0004, kUnknown = 0x0008 }; ///< working status flags
57 enum { kNSide = 2, kNCol = 7, kNLine = 9, kNMT = 4, kNBoardType = 3 }; ///< other constants
58
59 TGTransientFrame *fMain; ///< Main frame
60
61 AliLoader *fLoader; ///< The MUON loader
905654c2 62
63 TRootEmbeddedCanvas *fEc[kNMT]; ///< Canvases for drawing the digits
64
65 TPave *fPaveBoard[kNMT][kNBoards]; ///< Drawing of the board
66 TObjArray *fBoards; ///< Array of boards
67
68 Bool_t fIsOn; ///< True if the map is open
69
69d7ac2e 70 ClassDef(AliMUONTriggerGUIdimap,1) //Trigger GUI utility class: digits maps of the trigger chambers
905654c2 71
72};
73
74#endif