]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveHLT/AliEveHOMERManagerEditor.cxx
Merge branch 'devel'
[u/mrichter/AliRoot.git] / EVE / EveHLT / AliEveHOMERManagerEditor.cxx
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 #include "AliEveHOMERManagerEditor.h"
11 #include "AliEveHOMERManager.h"
12
13 #include <TVirtualPad.h>
14 #include <TColor.h>
15 #include <TROOT.h>
16
17 #include <TGLabel.h>
18 #include <TGButton.h>
19 #include <TGNumberEntry.h>
20 #include <TGColorSelect.h>
21 #include <TGDoubleSlider.h>
22 #include <TGComboBox.h>
23
24 //______________________________________________________________________________
25 // AliEveHOMERManagerEditor
26 //
27
28 ClassImp(AliEveHOMERManagerEditor)
29
30 AliEveHOMERManagerEditor::AliEveHOMERManagerEditor(const TGWindow *p, Int_t width, Int_t height,
31              UInt_t options, Pixel_t back) :
32   
33 TGedFrame(p, width, height, options | kVerticalFrame, back),
34   fM(0),
35   fButtonConnect(NULL),
36   fButtonWriteToFile(0),
37   fButtonNextEvent(0),
38   fButtonNavigateBack(0),
39   fButtonNavigateFwd(0),
40   fBoxTriggerSelector(0),
41   fButtonEventLoopText(0),
42 //  fBoxEventLoopSpeed(0),
43   fButtonEventLoop(0),
44  fEventLoopStarted(kFALSE) 
45 {
46   
47   MakeTitle("AliEveHOMERManager");
48
49   // Create widgets
50   // fXYZZ = new TGSomeWidget(this, ...);
51   // AddFrame(fXYZZ, new TGLayoutHints(...));
52   // fXYZZ->Connect("SignalName()", "AliEveHOMERManagerEditor", this, "DoXYZZ()");
53
54   fButtonConnect = new TGTextButton(this, " Reconnect ");
55   AddFrame(fButtonConnect); //, new TGLayoutHints(...));
56   fButtonConnect->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "ConnectToHLT()");
57
58   fButtonWriteToFile = new TGTextButton(this, " Write to file  ");
59   AddFrame(fButtonWriteToFile); //, new TGLayoutHints(...));
60   fButtonWriteToFile->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "WriteBlockListToFile()");
61
62
63   fButtonNextEvent = new TGTextButton(this, "  NextEvent  ");
64   AddFrame(fButtonNextEvent); //, new TGLayoutHints(...));
65   fButtonNextEvent->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "NextEvent()");
66
67   fButtonNavigateBack = new TGTextButton(this, "  Navigate Back  ");
68   AddFrame(fButtonNavigateBack); //, new TGLayoutHints(...));
69   fButtonNavigateBack->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "NavigateBack()");
70
71   fButtonNavigateFwd = new TGTextButton(this, "  Navigate Fwd  ");
72   AddFrame(fButtonNavigateFwd); //, new TGLayoutHints(...));
73   fButtonNavigateFwd->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "NavigateFwd()");
74
75   fBoxTriggerSelector = new TGComboBox(this, "Select Trigger");
76   fBoxTriggerSelector->AddEntry("HLT Global Trigger", 0);
77   fBoxTriggerSelector->AddEntry("Barrel multiplicity trigger", 1);
78   fBoxTriggerSelector->AddEntry("PHOS Geometry trigger", 2);
79   fBoxTriggerSelector->AddEntry("No trigger selection", 3);
80   fBoxTriggerSelector->Connect("Selected(Int_t)","AliEveHOMERManagerEditor", this, "SetTriggerString(int)");
81   fBoxTriggerSelector->SetWidth(150);
82   fBoxTriggerSelector->SetHeight(25);
83   AddFrame(fBoxTriggerSelector);
84
85   fButtonEventLoopText = new TGTextButton(this, "  Loop Events  ");
86   AddFrame(fButtonEventLoopText); //, new TGLayoutHints(...));
87   fButtonEventLoopText->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "EventLoop()");
88
89   fButtonEventLoop = new TGPictureButton(this, gClient->GetPicture("$ALICE_ROOT/EVE/hlt-macros/HLT-logo.png"));
90   AddFrame(fButtonEventLoop); //, new TGLayoutHints(...));
91   fButtonEventLoop->Connect("Clicked()", "AliEveHOMERManagerEditor", this, "EventLoop()");
92 }
93
94 /******************************************************************************/
95
96 void AliEveHOMERManagerEditor::SetModel(TObject* obj) {
97   fM = dynamic_cast<AliEveHOMERManager*>(obj);
98
99   // Set values of widgets
100   // fXYZZ->SetValue(fM->GetXYZZ());
101 }
102
103 /******************************************************************************/
104
105 void AliEveHOMERManagerEditor::ConnectToHLT() {
106    // Connects to HOMER sources -> to HLT.
107   fM->ReConnectHOMER();
108 }
109
110 void AliEveHOMERManagerEditor::NextEvent() {
111   // call next event from AliEveHOMERManger
112   fM->NextHOMEREvent();
113 }
114
115 void AliEveHOMERManagerEditor::WriteBlockListToFile() {
116   gROOT->ProcessLineFast("writeToFile();");
117
118 }
119
120 void AliEveHOMERManagerEditor::NavigateFwd() {
121   // navigate forward
122   
123   if ( !fEventLoopStarted ) {
124     if ( fM->NavigateEventBufferFwd() == -1 )
125       return;
126
127     fM->ProcessEvent();
128     //    gROOT->ProcessLineFast("processEvent();");
129   }
130   return;
131 }
132
133 void AliEveHOMERManagerEditor::NavigateBack() {
134   // navigate back
135
136   if ( !fEventLoopStarted ) {
137     if ( fM->NavigateEventBufferBack() == -1 )
138       return;
139     
140     fM->ProcessEvent();
141     //gROOT->ProcessLineFast("processEvent();");
142   }
143   return;
144 }
145
146 void AliEveHOMERManagerEditor::EventLoop() {
147   // Start/stop event loop
148   if ( !fEventLoopStarted ) {
149     fEventLoopStarted = kTRUE;
150     fButtonEventLoopText->SetText(" Stop Loop ");
151     //fM->SetEventLoopStarted(kTRUE);
152     fM->StartLoop();
153     
154     //    gROOT->ProcessLineFast("loopEvent();");
155   
156   } else {
157     
158     //gROOT->ProcessLineFast("stopLoopEvent();");
159     fM->StopLoop();
160     fEventLoopStarted = kFALSE;
161     //fM->SetEventLoopStarted(kFALSE);
162     fButtonEventLoopText->SetText(" Loop Events ");
163   }
164 }
165
166 void AliEveHOMERManagerEditor::SetTriggerString(int id) {
167
168   if (id < 0 || id > 4) {
169     return;
170   }
171   
172   TString tsa[4] = {"HLTGlobalTrigger", 
173                     "BarrelMultiplicityTrigger", 
174                     "PHOSgeomTrigger",
175                     "ALL"};
176    
177  
178   fM->SetTriggerString(tsa[id]);
179     
180 }
181