Ignore:
Timestamp:
08/25/07 16:30:26 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc

    r8706 r8709  
    7171//        gROOT->ProcessLineFast("line");
    7272//
     73//
     74// Class Version 2:
     75// ----------------
     76//  + Bool_t fDefault
     77//
    7378/////////////////////////////////////////////////////////////////////////////
    7479#include "MFDataPhrase.h"
     
    96101// Default Constructor. Don't use.
    97102//
    98 MFDataPhrase::MFDataPhrase() : fData(NULL), fAllowEmpty(kFALSE)
     103MFDataPhrase::MFDataPhrase()
     104    : fData(NULL), fAllowEmpty(kFALSE), fDefault(kTRUE)
    99105{
    100106    fName  = gsDefName.Data();
     
    107113// the class description above.
    108114//
    109 MFDataPhrase::MFDataPhrase(const char *text, const char *name, const char *title) : fData(NULL), fAllowEmpty(kFALSE)
     115MFDataPhrase::MFDataPhrase(const char *text, const char *name, const char *title)
     116    : fData(NULL), fAllowEmpty(kFALSE), fDefault(kTRUE)
    110117{
    111118    fName  = name  ? name  : gsDefName.Data();
  • trunk/MagicSoft/Mars/mfbase/MFDataPhrase.h

    r8706 r8709  
    6161    Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
    6262
    63     ClassDef(MFDataPhrase, 1) // A Filter for cuts in any data member
     63    ClassDef(MFDataPhrase, 2) // A Filter for cuts in any data member
    6464};
    6565
Note: See TracChangeset for help on using the changeset viewer.