Changeset 8709 for trunk/MagicSoft/Mars/mfbase
- Timestamp:
- 08/25/07 16:30:26 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mfbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc
r8706 r8709 71 71 // gROOT->ProcessLineFast("line"); 72 72 // 73 // 74 // Class Version 2: 75 // ---------------- 76 // + Bool_t fDefault 77 // 73 78 ///////////////////////////////////////////////////////////////////////////// 74 79 #include "MFDataPhrase.h" … … 96 101 // Default Constructor. Don't use. 97 102 // 98 MFDataPhrase::MFDataPhrase() : fData(NULL), fAllowEmpty(kFALSE) 103 MFDataPhrase::MFDataPhrase() 104 : fData(NULL), fAllowEmpty(kFALSE), fDefault(kTRUE) 99 105 { 100 106 fName = gsDefName.Data(); … … 107 113 // the class description above. 108 114 // 109 MFDataPhrase::MFDataPhrase(const char *text, const char *name, const char *title) : fData(NULL), fAllowEmpty(kFALSE) 115 MFDataPhrase::MFDataPhrase(const char *text, const char *name, const char *title) 116 : fData(NULL), fAllowEmpty(kFALSE), fDefault(kTRUE) 110 117 { 111 118 fName = name ? name : gsDefName.Data(); -
trunk/MagicSoft/Mars/mfbase/MFDataPhrase.h
r8706 r8709 61 61 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE); 62 62 63 ClassDef(MFDataPhrase, 1) // A Filter for cuts in any data member63 ClassDef(MFDataPhrase, 2) // A Filter for cuts in any data member 64 64 }; 65 65
Note:
See TracChangeset
for help on using the changeset viewer.