Changeset 1476 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 08/02/02 10:50:32 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1474 r1476 292 292 } 293 293 294 void MEvtLoop::MakeMacro(const char *filename="evtloop.C") 294 // -------------------------------------------------------------------------- 295 // 296 // After you setup (or read) an Evtloop you can use this to write the 297 // eventloop setup as a macro. The default name is "evtloop.C". The default 298 // extension is .C If the extension is not given, .C is added. 299 // 300 void MEvtLoop::MakeMacro(const char *filename) 295 301 { 296 302 TString name(filename); -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r1474 r1476 354 354 // gui elements to a macro-file. 355 355 // 356 void MParContainer::SavePrimitive(ofstream &out, Option_t *o ="")356 void MParContainer::SavePrimitive(ofstream &out, Option_t *o) 357 357 { 358 358 out << " // SavePrimitive not overloaded... using default." << endl; -
trunk/MagicSoft/Mars/mbase/MParList.cc
r1474 r1476 666 666 // gui elements to a macro-file. 667 667 // 668 void MParList::SavePrimitive(ofstream &out, Option_t *o ="")668 void MParList::SavePrimitive(ofstream &out, Option_t *o) 669 669 { 670 670 out << " MParList " << ToLower(fName) << "(\""; -
trunk/MagicSoft/Mars/mbase/MTask.cc
r1474 r1476 269 269 // gui elements to a macro-file. 270 270 // 271 void MTask::SavePrimitive(ofstream &out, Option_t *o ="")271 void MTask::SavePrimitive(ofstream &out, Option_t *o) 272 272 { 273 273 MParContainer::SavePrimitive(out); -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r1474 r1476 520 520 // gui elements to a macro-file. 521 521 // 522 void MTaskList::SavePrimitive(ofstream &out, Option_t *o ="")522 void MTaskList::SavePrimitive(ofstream &out, Option_t *o) 523 523 { 524 524 out << " MTaskList " << ToLower(fName) << "(\"";
Note:
See TracChangeset
for help on using the changeset viewer.