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 |
|
---|
17 | class MFilter;
|
---|
18 |
|
---|
19 | class MContinue : public MTask
|
---|
20 | {
|
---|
21 | private:
|
---|
22 | Bool_t PreProcess(MParList *list);
|
---|
23 | Bool_t Process() { return kCONTINUE; }
|
---|
24 |
|
---|
25 | enum { kIsOwner = BIT(14) };
|
---|
26 |
|
---|
27 | public:
|
---|
28 | MContinue(const TString rule="", const char *name=NULL, const char *title=NULL);
|
---|
29 | MContinue(MFilter *f, const char *name=NULL, const char *title=NULL);
|
---|
30 | ~MContinue();
|
---|
31 |
|
---|
32 | void SetFilter(MFilter *filter) { if (!TestBit(kIsOwner)) MTask::SetFilter(filter); }
|
---|
33 |
|
---|
34 | ClassDef(MContinue, 1) //Task returning kCONTINUE
|
---|
35 | };
|
---|
36 |
|
---|
37 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.