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

Last change on this file since 1326 was 1304, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 770 bytes
Line 
1#ifndef MARS_MData
2#define MARS_MData
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MData //
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 IsValid() const = 0;
21 virtual Bool_t PreProcess(const MParList *plist) = 0;
22
23 ClassDef(MData, 0) // A Base class for a generalized value
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.