Changeset 1588 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/07/02 14:45:44 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 added
5 edited

Legend:

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

    r1567 r1588  
    3434//  constructor.
    3535//
    36 //  * If you want to use the kernel function to calculate the distance use:
    37 //      MMultiDimDistCalc::SetUseKernelMethod();
     36//  * If you want to use the nearest neighbor function for calculation use:
     37//      MMultiDimDistCalc::SetUseKernelMethod(kFALSE);
     38//  * If you want to use the kernel function for calculation use:
     39//      MMultiDimDistCalc::SetUseKernelMethod(kTRUE); <default>
    3840//  * To use only the n next neighbors for your calculation use:
    3941//      MMultiDimDistCalc::SetUseNumRows(n);
     
    6668//
    6769MMultiDimDistCalc::MMultiDimDistCalc(const char *name, const char *title)
    68     : fNum(0), fUseKernel(kFALSE), fData(NULL)
     70    : fNum(0), fUseKernel(kTRUE), fData(NULL)
    6971{
    7072    //
  • trunk/MagicSoft/Mars/mfilter/FilterLinkDef.h

    r1485 r1588  
    99#pragma link C++ class MF+;
    1010#pragma link C++ class MFAlpha+;
     11#pragma link C++ class MFEventSelector+;
    1112#pragma link C++ class MFTriggerLvl1+;
    1213#pragma link C++ class MFParticleId+;
  • trunk/MagicSoft/Mars/mfilter/MF.cc

    r1493 r1588  
    8787ClassImp(MF);
    8888
    89 static const TString gsDefName  = "MF";
    90 static const TString gsDefTitle = "Filter setup by a text-rule";
     89const TString MF::gsDefName  = "MF";
     90const TString MF::gsDefTitle = "Filter setup by a text-rule";
    9191
    9292// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mfilter/MF.h

    r1493 r1588  
    1818{
    1919private:
     20    static const TString gsDefName;  //!
     21    static const TString gsDefTitle; //!
     22
    2023    MFilter *fFilter; // Filter
    2124
  • trunk/MagicSoft/Mars/mfilter/Makefile

    r1485 r1588  
    2020# @endcode
    2121
    22 INCLUDES = -I. -I../mbase -I../mmc -I../manalysis -I../mdata
     22INCLUDES = -I. -I../mbase -I../mmc -I../manalysis -I../mdata -I../mfileio
    2323
    2424# @code
     
    3434           MF.cc \
    3535           MFilterList.cc \
     36           MFEventSelector.cc \
    3637           MFDataMember.cc \
    3738           MFParticleId.cc \
Note: See TracChangeset for help on using the changeset viewer.