]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpDEVisu.h
changed some includes
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpDEVisu.h
CommitLineData
e4d2775e 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4
0145e89a 5/// \ingroup mpgraphics
e4d2775e 6/// \class AliMpDEVisu
7/// \brief GUI for drawing detection element segmentation
8///
9/// \author Ch. Finck
10
11#ifndef ALI_MP_DE_VISU_H
12#define ALI_MP_DE_VISU_H
13
14#include <TGFrame.h>
215d5755 15
e4d2775e 16#include "AliMpPlaneType.h"
17
215d5755 18#include <TArrayI.h>
19#include <TObjArray.h>
20
e4d2775e 21class TObject;
22class TString;
e4d2775e 23class TRootEmbeddedCanvas;
24class TGComboBox;
25class TGMainFrame;
26class TGWindow;
27class AliMpVPainter;
28class TGNumberEntry;
29class TGCheckButton;
30class TGTextView;
31class AliMpSlat;
32class AliMpSector;
33class AliMpVSegmentation;
34class AliMpDDLStore;
ab167304 35class AliMpManuStore;
e4d2775e 36class TGTextEntry;
215d5755 37class AliMpMotifPosition;
e4d2775e 38
215d5755 39class AliMpDEVisu : public TGFrame
40{
e4d2775e 41
42public:
43 AliMpDEVisu(UInt_t w = 1200, UInt_t h = 600);
44 virtual ~AliMpDEVisu();
45
46
d58f6c58 47 void UpdateComboCH();
e4d2775e 48 void UpdateComboDE();
49 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
215d5755 50 void DrawDE(Bool_t info = kTRUE);
97c15de5 51 void NextDE();
e4d2775e 52 void DrawManuMotif(Bool_t popup = kFALSE);
53 void DrawQuadrant(Option_t* option, Bool_t popup = kFALSE);
54 void DrawSlat(Option_t* option, Bool_t popup = kFALSE);
55
56 void ResetManu();
09840862 57 void UpdateNameView(Bool_t firstTime = kFALSE);
e4d2775e 58 void PopUpManuMotif(AliMpSlat* slat);
59 void PopUpManuMotif(AliMpSector* sector);
215d5755 60 void PopUpZoom(Int_t ix0, Int_t iy0, Int_t ix1, Int_t iy1);
61
62 void ClosePopupWindow(Int_t id);
e4d2775e 63 void InfoDE();
215d5755 64 void InfoManuMotif(AliMpMotifPosition* motifPos);
e4d2775e 65 void DeletePopUp();
66 void SaveLogMessage();
67 void ClearLogMessage();
68
69 void HandleMovement(Int_t eventType, Int_t eventX, Int_t eventY, TObject* select);
70
215d5755 71private:
72 void EventToReal(Int_t eventX, Int_t eventY, Double_t& x, Double_t& y) const;
73 void CreatePopupWindow(Int_t w, Int_t h, const char* title,
74 AliMpVPainter* painter,
75 const char* option);
76
e4d2775e 77private:
71a2d3aa 78 /// Not implemented
79 AliMpDEVisu(const AliMpDEVisu& src);
80 /// Not implemented
81 AliMpDEVisu& operator=(const AliMpDEVisu& src);
e4d2775e 82
83 const TGWindow* fkMainWindow; //!< main window
84 TGMainFrame* fMain; //!< main frame
85 TRootEmbeddedCanvas* fEcanvas; //!< canvas for detection elt
86
87 TGComboBox* fChamberCombo; //!< chamber botton
88 TGComboBox* fDECombo; //!< DE botton
89 TGNumberEntry* fNumberEntry; //!< manu id button
90 TGCheckButton* fPlaneButton; //!< check button for NB plane, defaultwise B plane
215d5755 91 TGCheckButton* fZoomButton; //!< check button to activate zoom mode, default wise disable
d58f6c58 92 TGComboBox* fNameDECombo; //!< name of the DE
e4d2775e 93 TGTextView* fLogMessage; //!< log message
94 TGTextEntry* fLogFile; //!< text entry for log file name
215d5755 95 TObjArray fTrashList; //!< list of transient windows to delete
e4d2775e 96
97 TArrayI fDEComboIdx; //!< array for index vs DE id
d58f6c58 98 TString fNameDEComboIdx[156]; //!< array for index vs DE names
99 TArrayI fDEOccurrence; //!< occurrence of DE
e4d2775e 100
101 AliMp::PlaneType fCurrentPlane; //!< current plane type
102 Int_t fCurrentDetElem; //!< current DE
103 TString fCurrentDEName; //!< current DE name
104
105 const AliMpVSegmentation* fSegmentation; //!< segmentation instance
106 AliMpDDLStore* fDDLStore; //!< DDL Store
ab167304 107 AliMpManuStore* fManuStore; //!< Manu Store
e4d2775e 108
215d5755 109 Bool_t fZoomMode; //!< flag for zoom mode on canvas instead of click mode
e4d2775e 110
215d5755 111 enum {kChamberCombo, kDECombo, kPlaneType, kDEName, kManuEntries, kLogMessage, kZoomMode};
e4d2775e 112
69d7ac2e 113 ClassDef(AliMpDEVisu,1) //GUI for drawing detection element segmentation
e4d2775e 114};
115#endif
215d5755 116