Ignore:
Timestamp:
08/08/02 09:15:26 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.h

    r1337 r1488  
    1313{
    1414private:
    15     Int_t fNum;             // number of distances used for an avarage
     15    Int_t  fNum;            // number of distances used for an avarage
     16    Bool_t fUseKernel;      // Flag whether kernel method should be used
    1617
    1718    MHMatrix   *fMGammas;   //! Gammas describing matrix
     
    2223    TList *fData;           //! Used to store the MDataChains to get the event values
    2324
     25    void StreamPrimitive(ofstream &out) const;
     26
    2427public:
    25     MMultiDimDistCalc(Int_t num, const char *name=NULL, const char *title=NULL);
     28    MMultiDimDistCalc(const char *name=NULL, const char *title=NULL);
    2629    ~MMultiDimDistCalc();
     30
     31    void SetUseNumRows(UShort_t n=0) { fNum = n; }
     32    void SetUseKernelMethod(Bool_t k=kTRUE) { fUseKernel = k; }
    2733
    2834    Bool_t PreProcess(MParList *plist);
    2935    Bool_t Process();
    3036
    31     ClassDef(MMultiDimDistCalc, 1) // Task to calculate multidimensional distances
     37    ClassDef(MMultiDimDistCalc, 0) // Task to calculate multidimensional distances
    3238};
    3339
Note: See TracChangeset for help on using the changeset viewer.