Ignore:
Timestamp:
08/02/02 10:50:32 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MEvtLoop.cc

    r1474 r1476  
    292292}
    293293
    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//
     300void MEvtLoop::MakeMacro(const char *filename)
    295301{
    296302    TString name(filename);
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r1474 r1476  
    354354// gui elements to a macro-file.
    355355//
    356 void MParContainer::SavePrimitive(ofstream &out, Option_t *o="")
     356void MParContainer::SavePrimitive(ofstream &out, Option_t *o)
    357357{
    358358    out << "   // SavePrimitive not overloaded... using default." << endl;
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r1474 r1476  
    666666// gui elements to a macro-file.
    667667//
    668 void MParList::SavePrimitive(ofstream &out, Option_t *o="")
     668void MParList::SavePrimitive(ofstream &out, Option_t *o)
    669669{
    670670    out << "   MParList " << ToLower(fName) << "(\"";
  • trunk/MagicSoft/Mars/mbase/MTask.cc

    r1474 r1476  
    269269// gui elements to a macro-file.
    270270//
    271 void MTask::SavePrimitive(ofstream &out, Option_t *o="")
     271void MTask::SavePrimitive(ofstream &out, Option_t *o)
    272272{
    273273    MParContainer::SavePrimitive(out);
  • trunk/MagicSoft/Mars/mbase/MTaskList.cc

    r1474 r1476  
    520520// gui elements to a macro-file.
    521521//
    522 void MTaskList::SavePrimitive(ofstream &out, Option_t *o="")
     522void MTaskList::SavePrimitive(ofstream &out, Option_t *o)
    523523{
    524524    out << "   MTaskList " << ToLower(fName) << "(\"";
Note: See TracChangeset for help on using the changeset viewer.