Changeset 1588 for trunk/MagicSoft/Mars
- Timestamp:
- 11/07/02 14:45:44 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc
r1567 r1588 34 34 // constructor. 35 35 // 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> 38 40 // * To use only the n next neighbors for your calculation use: 39 41 // MMultiDimDistCalc::SetUseNumRows(n); … … 66 68 // 67 69 MMultiDimDistCalc::MMultiDimDistCalc(const char *name, const char *title) 68 : fNum(0), fUseKernel(k FALSE), fData(NULL)70 : fNum(0), fUseKernel(kTRUE), fData(NULL) 69 71 { 70 72 // -
trunk/MagicSoft/Mars/mfilter/FilterLinkDef.h
r1485 r1588 9 9 #pragma link C++ class MF+; 10 10 #pragma link C++ class MFAlpha+; 11 #pragma link C++ class MFEventSelector+; 11 12 #pragma link C++ class MFTriggerLvl1+; 12 13 #pragma link C++ class MFParticleId+; -
trunk/MagicSoft/Mars/mfilter/MF.cc
r1493 r1588 87 87 ClassImp(MF); 88 88 89 static const TStringgsDefName = "MF";90 static const TStringgsDefTitle = "Filter setup by a text-rule";89 const TString MF::gsDefName = "MF"; 90 const TString MF::gsDefTitle = "Filter setup by a text-rule"; 91 91 92 92 // -------------------------------------------------------------------------- -
trunk/MagicSoft/Mars/mfilter/MF.h
r1493 r1588 18 18 { 19 19 private: 20 static const TString gsDefName; //! 21 static const TString gsDefTitle; //! 22 20 23 MFilter *fFilter; // Filter 21 24 -
trunk/MagicSoft/Mars/mfilter/Makefile
r1485 r1588 20 20 # @endcode 21 21 22 INCLUDES = -I. -I../mbase -I../mmc -I../manalysis -I../mdata 22 INCLUDES = -I. -I../mbase -I../mmc -I../manalysis -I../mdata -I../mfileio 23 23 24 24 # @code … … 34 34 MF.cc \ 35 35 MFilterList.cc \ 36 MFEventSelector.cc \ 36 37 MFDataMember.cc \ 37 38 MFParticleId.cc \
Note:
See TracChangeset
for help on using the changeset viewer.