- Timestamp:
- 06/13/01 12:38:42 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r845 r848 1 1 -*-*- END -*-*- 2 2 3 2001/06/13: Thomas Bretz 4 5 * ./.../*.h: 6 - added some comments and corrected some descriptions. 7 8 * mbase/MParContainer.[h,cc]: 9 - added a 'dummy' function for AsciiRead, AsciiWrite 10 11 12 3 13 2001/06/12: Thomas Bretz 14 15 * mmontecarlo/MMcEnerThreCalc.[cc,h] 16 - copied to mmontecarlo/MMcThresholdCalc.[cc,h] 17 18 * mmontecarlo/MMcEnerThreHistos.[h,cc] 19 - copied to mmhist/MHMcEnergy.[h,cc] 20 21 * mbase/Makefile: 22 - added MWriteAsciiFile.cc 23 24 * mhist/HistIncl.h: 25 - added TF1.h 26 27 * mhist/HistLinkDef.h: 28 - added MHMcEnergy 29 30 * mhist/Makefile 31 - added MHMcEnergy 32 33 * mmontecarlo/MCollArea.h: 34 - fixed typo in ifndef 35 36 * mmontecarlo/Makefile: 37 - added MMcThresholdCalc.cc 38 - removed MMcEnerHisto.cc 39 - removed MMcEnerThre.cc 40 - removed MMcEnerThreCalc.cc 41 42 * mmontecarlo/MonteCarloLinkDef.h: 43 - added MMcThresholdCalc.cc 44 - removed MMcEnerHisto.cc 45 - removed MMcEnerThre.cc 46 - removed MMcEnerThreCalc.cc 4 47 5 48 * mbase/MWriteAsciiFile.[h,cc]: -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r843 r848 174 174 return nbytes; 175 175 } 176 177 void MParContainer::AsciiRead(ifstream &fin) 178 { 179 *fLog << "To use the the ascii input of " << GetName(); 180 *fLog << " you have to overload " << GetName() << "::AsciiRead." << endl; 181 } 182 183 void MParContainer::AsciiWrite(ofstream &fout) const 184 { 185 *fLog << "To use the the ascii output of " << GetName(); 186 *fLog << " you have to overload " << GetName() << "::AsciiWrite." << endl; 187 } -
trunk/MagicSoft/Mars/mbase/MParContainer.h
r843 r848 72 72 virtual void SetHasChanged(Bool_t flag=kTRUE) { fHasChanged=flag; } 73 73 74 virtual void AsciiRead(ifstream &fin) {};75 virtual void AsciiWrite(ofstream &fout) const {};74 virtual void AsciiRead(ifstream &fin); 75 virtual void AsciiWrite(ofstream &fout) const; 76 76 77 77 ClassDef(MParContainer, 1) //The basis for all parameter containers
Note:
See TracChangeset
for help on using the changeset viewer.