]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/OnlineDisplay/AliHLTPHOSGetEventButton.cxx
Added a switch. Two options is implemented. The caracter 'e' tu update the event...
[u/mrichter/AliRoot.git] / HLT / PHOS / OnlineDisplay / AliHLTPHOSGetEventButton.cxx
CommitLineData
ad4d700a 1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
18
19#include "AliHLTPHOSGetEventButton.h"
20#include <iostream>
21#include "AliHLTPHOSOnlineDisplay.h"
22
23using std::cout;
24using std::endl;
25
26
27AliHLTPHOSGetEventButton::AliHLTPHOSGetEventButton()
28{
29 printf("\nYou cannot initalize the HetEventButton without parameters\n");
30}
31
32
8233c732 33AliHLTPHOSGetEventButton::AliHLTPHOSGetEventButton(TGCompositeFrame *gfPtr, char *name, char opt):TGTextButton(gfPtr, name)
297d5075 34{
8233c732 35 fOption = opt;
297d5075 36 onlineDisplayPtr = (AliHLTPHOSOnlineDisplay *)gfPtr;
ad4d700a 37}
38
ad4d700a 39
40Bool_t
41AliHLTPHOSGetEventButton::HandleButton(Event_t* event)
42{
43 if(event->fType == kButtonPress)
44 {
8233c732 45 switch (fOption)
46 {
47 case 'e':
48 onlineDisplayPtr->GetNextEvent();
49 cout << "updating Eventdisplay" << endl;
50 break;
51
52 case 'h':
53 onlineDisplayPtr->GetHistogram();
54 cout << "updating Histograms" << endl;
55 break;
56 }
57 // onlineDisplayPtr->GetNextEvent();
ad4d700a 58 }
59}