source: Idarraga/mpxdataconverter/control.h

Last change on this file was 26, checked in by idarraga, 13 years ago
File size: 465 bytes
Line 
1#include <TControlBar.h>
2#include <TApplication.h>
3#include <TROOT.h>
4#include <iostream>
5
6class BControl : public TObject {
7   
8protected:
9   TControlBar   *fControlBar;  // control bar
10   
11public:
12   BControl();
13   //virtual ~BControl();
14   ~BControl();
15
16   void Build();
17   void PrintEventStats();
18   void seekForward();
19   void seekBack();
20   void ShowResults();
21   void jump100F();
22   void jump100B();
23
24   TApplication * m_theApp;
25
26   ClassDef(BControl,0)
27};
28
Note: See TracBrowser for help on using the repository browser.