source: trunk/MagicSoft/Mars/mbase/MContinue.h@ 5911

Last change on this file since 5911 was 5910, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 1.5 KB
Line 
1#ifndef MARS_MContinue
2#define MARS_MContinue
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MContinue //
7// //
8// Does nothing than return kCONTINUE in the Process-fucntion //
9// (use with filters) //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17class MLog;
18class MFilter;
19class MTaskList;
20class MStatusDisplay;
21
22class MContinue : public MTask
23{
24private:
25 MTaskList *fTaskList; //! pointer to the present tasklist
26
27 // MTask
28 Int_t PreProcess(MParList *list);
29 Int_t Process() { return kCONTINUE; }
30 Int_t PostProcess();
31
32 enum { kIsOwner = BIT(14), kFilterIsPrivate = BIT(15) };
33
34public:
35 MContinue(const TString rule="", const char *name=NULL, const char *title=NULL);
36 MContinue(MFilter *f, const char *name=NULL, const char *title=NULL);
37 ~MContinue();
38
39 void SetInverted(Bool_t i=kTRUE);
40 Bool_t IsInverted() const;
41
42 // MParContainer
43 void SetDisplay(MStatusDisplay *d);
44 void SetLogStream(MLog *lg);
45 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
46
47 ClassDef(MContinue, 1) //Task returning kCONTINUE
48};
49
50#endif
Note: See TracBrowser for help on using the repository browser.