source: trunk/MagicSoft/Mars/mdata/MData.h@ 1299

Last change on this file since 1299 was 1287, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 730 bytes
Line 
1#ifndef MARS_MData
2#define MARS_MData
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MDataList //
7// //
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef MARS_MParContainer
11#include "MParContainer.h"
12#endif
13
14class MParList;
15
16class MData : public MParContainer
17{
18public:
19 virtual Double_t GetValue() const = 0;
20 virtual Bool_t PreProcess(const MParList *plist) = 0;
21
22 ClassDef(MData, 0) // A Filter for cuts in any data member
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.