Ignore:
Timestamp:
03/22/04 14:25:56 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mdata/MDataValue.h

    r1896 r3572  
    11#ifndef MARS_MDataValue
    22#define MARS_MDataValue
    3 
    4 /////////////////////////////////////////////////////////////////////////////
    5 //                                                                         //
    6 //  MDataValue                                                             //
    7 //                                                                         //
    8 /////////////////////////////////////////////////////////////////////////////
    93
    104#ifndef MARS_MData
     
    126#endif
    137
     8class TArrayD;
     9
    1410class MDataValue : public MData
    1511{
    1612private:
    1713    Double_t fValue;
     14    Int_t    fIndex;
    1815
    1916public:
    20     MDataValue(Double_t v = 0) : fValue(v)
     17    MDataValue(Double_t v = 0, Int_t idx=-1) : fValue(v), fIndex(idx)
    2118    {
    2219    }
     
    2825    Bool_t IsReadyToSave() const { return kFALSE; }
    2926
    30     //void Print(Option_t *opt = "") const;
    3127    TString GetRule() const;
     28
     29    void SetVariables(const TArrayD &arr);
    3230
    3331    ClassDef(MDataValue, 1) // MData object corresponding to a single value
Note: See TracChangeset for help on using the changeset viewer.