| Line | |
|---|
| 1 | #ifndef MARS_MF
|
|---|
| 2 | #define MARS_MF
|
|---|
| 3 |
|
|---|
| 4 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 5 | // //
|
|---|
| 6 | // MF //
|
|---|
| 7 | // //
|
|---|
| 8 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 9 |
|
|---|
| 10 | #ifndef MARS_MFilter
|
|---|
| 11 | #include "MFilter.h"
|
|---|
| 12 | #endif
|
|---|
| 13 |
|
|---|
| 14 | class MParList;
|
|---|
| 15 | class TMethodCall;
|
|---|
| 16 |
|
|---|
| 17 | class MF : public MFilter
|
|---|
| 18 | {
|
|---|
| 19 | private:
|
|---|
| 20 | MFilter *fFilter; // Filter
|
|---|
| 21 |
|
|---|
| 22 | Int_t IsAlNum(TString txt);
|
|---|
| 23 |
|
|---|
| 24 | MFilter *ParseString(TString txt, Int_t level);
|
|---|
| 25 |
|
|---|
| 26 | public:
|
|---|
| 27 | MF(const char *text, const char *name=NULL, const char *title=NULL);
|
|---|
| 28 | ~MF();
|
|---|
| 29 |
|
|---|
| 30 | Bool_t IsExpressionTrue() const;
|
|---|
| 31 |
|
|---|
| 32 | Bool_t PreProcess(MParList *pList);
|
|---|
| 33 | Bool_t Process();
|
|---|
| 34 | Bool_t PostProcess();
|
|---|
| 35 |
|
|---|
| 36 | ClassDef(MF, 0) // A Filter for cuts in any data member
|
|---|
| 37 | };
|
|---|
| 38 |
|
|---|
| 39 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.