source: trunk/MagicSoft/Mars/mdata/MDataValue.h@ 1296

Last change on this file since 1296 was 1287, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 851 bytes
Line 
1#ifndef MARS_MDataValue
2#define MARS_MDataValue
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MDataValue //
7// //
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef MARS_MData
11#include "MData.h"
12#endif
13
14class MDataValue : public MData
15{
16private:
17 Double_t fValue;
18
19public:
20 MDataValue(Double_t v) : fValue(v)
21 {
22 }
23
24 Double_t GetValue() const { return fValue; }
25 Bool_t PreProcess(const MParList *plist) { return kTRUE; }
26
27 void Print(Option_t *opt = "") const;
28
29 ClassDef(MDataValue, 0) // List to combine several filters logically
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.