source: trunk/MagicSoft/Mars/mfilter/MFMagicCuts.h@ 7109

Last change on this file since 7109 was 6957, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 466 bytes
Line 
1#ifndef MARS_MFMagicCuts
2#define MARS_MFMagicCuts
3
4#ifndef MARS_MFilter
5#include "MFilter.h"
6#endif
7
8class MHMatrix;
9
10class MFMagicCuts : public MFilter
11{
12private:
13
14 virtual Bool_t IsExpressionTrue() const { return kTRUE; }
15
16public:
17 MFMagicCuts(const char *name=NULL, const char *title=NULL);
18
19 void InitMapping(MHMatrix *mat) { }
20 void StopMapping() { InitMapping(NULL); }
21
22 ClassDef(MFMagicCuts, 0) // A filter to evaluate the MagicCuts
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.