]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliTestChildProc.h
Useful macros for the shifter
[u/mrichter/AliRoot.git] / MONITOR / AliTestChildProc.h
1 // @(#)root/eve:$Id$
2 // Author: Matevz Tadel 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 #ifndef AliTestChildProc_H
11 #define AliTestChildProc_H
12
13 #include <TGFrame.h>
14
15 //______________________________________________________________________________
16 // Short description of AliTestChildProc
17 //
18
19 class AliTestChildProc : public TGMainFrame
20 {
21
22 public:
23   AliTestChildProc(Int_t run);
24
25   void DoExit();
26   void DoCrash();
27   void DoXyzz();
28   
29 private:
30   AliTestChildProc(const AliTestChildProc&);            // Not implemented
31   AliTestChildProc& operator=(const AliTestChildProc&); // Not implemented
32
33   ClassDef(AliTestChildProc, 0);
34 };
35
36 #endif