Changeset 1080 for trunk/MagicSoft/Mars/mbase/MParContainer.cc
- Timestamp:
- 11/15/01 11:07:21 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r1076 r1080 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)18 ! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@uni-sw.gwdg.de> 19 19 ! 20 20 ! Copyright: MAGIC Software Development, 2000-2001 … … 42 42 43 43 #include "MLog.h" 44 #include "MLogManip.h" 44 45 45 46 ClassImp(MParContainer); … … 137 138 { 138 139 TROOT::IndentLevel(); 139 *fLog << "OBJ: " << GetDescriptor() << ": " << GetTitle() << ", "140 140 *fLog << all << GetDescriptor() << " " << GetTitle() << ": kCanDelete="; 141 *fLog << Int_t(TestBit(kCanDelete)) << endl; 141 142 } 142 143 … … 147 148 void MParContainer::Print(Option_t *) const 148 149 { 149 *fLog << "OBJ: " << GetDescriptor() << ":" << GetTitle() << endl;150 *fLog << all << GetDescriptor() << " " << GetTitle() << endl; 150 151 } 151 152 … … 196 197 } 197 198 199 // -------------------------------------------------------------------------- 200 // 201 // If you want to use Ascii-Input/-Output (eg. MWriteAsciiFile) of a 202 // container, overload this function. 203 // 198 204 void MParContainer::AsciiRead(ifstream &fin) 199 205 { 200 *fLog << "To use the the ascii input of " << GetName();206 *fLog << warn << "To use the the ascii input of " << GetName(); 201 207 *fLog << " you have to overload " << ClassName() << "::AsciiRead." << endl; 202 208 } 203 209 210 // -------------------------------------------------------------------------- 211 // 212 // If you want to use Ascii-Input/-Output (eg. MWriteAsciiFile) of a 213 // container, overload this function. 214 // 204 215 void MParContainer::AsciiWrite(ofstream &fout) const 205 216 { 206 *fLog << "To use the the ascii output of " << GetName();217 *fLog << warn << "To use the the ascii output of " << GetName(); 207 218 *fLog << " you have to overload " << ClassName() << "::AsciiWrite." << endl; 208 219 }
Note:
See TracChangeset
for help on using the changeset viewer.