source: trunk/MagicSoft/Mars/mfilter/MF.h@ 1588

Last change on this file since 1588 was 1588, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.1 KB
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
14class MParList;
15class TMethodCall;
16
17class MF : public MFilter
18{
19private:
20 static const TString gsDefName; //!
21 static const TString gsDefTitle; //!
22
23 MFilter *fFilter; // Filter
24
25 Int_t IsAlNum(TString txt);
26
27 MFilter *ParseString(TString txt, Int_t level);
28
29 void StreamPrimitive(ofstream &out) const;
30
31public:
32 MF();
33 MF(const char *text, const char *name=NULL, const char *title=NULL);
34 ~MF();
35
36 Bool_t IsExpressionTrue() const;
37
38 Bool_t PreProcess(MParList *pList);
39 Bool_t Process();
40 Bool_t PostProcess();
41
42 ClassDef(MF, 0) // A Filter for cuts in any data member
43};
44
45#endif
Note: See TracBrowser for help on using the repository browser.