LCFIPlus  0.6.5
EventNavigator.h
Go to the documentation of this file.
1 #ifndef EVENT_NAV_
2 #define EVENT_NAV_ 1
3 
4 #include <string>
5 //#include "TQObject.h"
6 
7 
8 namespace lcfiplus {
9 
10 class Event;
11 class LCIOStorer;
12 
23 
24  public:
31  EventNavigator(const char* input, int start=0);
36  void Fwd();
37  void Bck();
41  void drawEvent(Event* event);
42 
43  private:
44  LCIOStorer* _ls;
45  int _start;
46 };
47 }
48 
49 
50 #endif //EVENT_NAV_
51 
void drawEvent(Event *event)
Draws given event.
Definition: EventNavigator.cc:85
EventNavigator(const char *input, int start=0)
Constructor.
Definition: EventNavigator.cc:33
Definition: LCIOStorer.h:22
~EventNavigator()
Definition: EventNavigator.cc:42
Event display for LCFIPlus.
Definition: EventNavigator.h:22
Definition: lcfiplus.h:291
void Bck()
Definition: EventNavigator.cc:81
void Fwd()
Display next event.
Definition: EventNavigator.cc:46