Changeset 1476 for trunk/MagicSoft


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc

    r1474 r1476  
    103103// gui elements to a macro-file.
    104104//
    105 void MHillasSrcCalc::SavePrimitive(ofstream &out, Option_t *o="")
     105void MHillasSrcCalc::SavePrimitive(ofstream &out, Option_t *o)
    106106{
    107107    out << "   MHillasSrcCalc " << ToLower(fName) << "(\"";
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1474 r1476  
    414414// gui elements to a macro-file.
    415415//
    416 void MImgCleanStd::SavePrimitive(ofstream &out, Option_t *o="")
     416void MImgCleanStd::SavePrimitive(ofstream &out, Option_t *o)
    417417{
    418418    out << "   MImgCleanStd " << ToLower(fName) << "(";
  • trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc

    r1474 r1476  
    8888// gui elements to a macro-file.
    8989//
    90 void MSrcPosCam::SavePrimitive(ofstream &out, Option_t *o="")
     90void MSrcPosCam::SavePrimitive(ofstream &out, Option_t *o)
    9191{
    9292    out << "   MSrcPosCam " << ToLower(fName) << "(\"";
  • 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) << "(\"";
  • trunk/MagicSoft/Mars/mdata/MData.cc

    r1474 r1476  
    6060}
    6161
    62 void MData::Print(Option_t *opt = "") const
     62void MData::Print(Option_t *opt) const
    6363{
    6464    *fLog << GetRule() << flush;
  • trunk/MagicSoft/Mars/mfileio/MReadTree.cc

    r1474 r1476  
    783783// gui elements to a macro-file.
    784784//
    785 void MReadTree::SavePrimitive(ofstream &out, Option_t *o="")
     785void MReadTree::SavePrimitive(ofstream &out, Option_t *o)
    786786{
    787787    TString name = ToLower(fName);
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.cc

    r1474 r1476  
    403403// gui elements to a macro-file.
    404404//
    405 void MWriteRootFile::SavePrimitive(ofstream &out, Option_t *o="")
     405void MWriteRootFile::SavePrimitive(ofstream &out, Option_t *o)
    406406{
    407407    out << "   MWriteRootFile " << ToLower(fName) << "(\"";
  • trunk/MagicSoft/Mars/mhist/MBinning.cc

    r1474 r1476  
    7070// gui elements to a macro-file.
    7171//
    72 void MBinning::SavePrimitive(ofstream &out, Option_t *o="")
     72void MBinning::SavePrimitive(ofstream &out, Option_t *o)
    7373{
    7474    out << "   TArrayD dummy;" << endl;
  • trunk/MagicSoft/Mars/mhist/MFillH.cc

    r1474 r1476  
    350350// gui elements to a macro-file.
    351351//
    352 void MFillH::SavePrimitive(ofstream &out, Option_t *o="")
     352void MFillH::SavePrimitive(ofstream &out, Option_t *o)
    353353{
    354354    out << "   MFillH " << ToLower(fName) << "(\"";
  • trunk/MagicSoft/Mars/mhist/MH3.cc

    r1474 r1476  
    384384// gui elements to a macro-file.
    385385//
    386 void MH3::SavePrimitive(ofstream &out, Option_t *o="")
     386void MH3::SavePrimitive(ofstream &out, Option_t *o)
    387387{
    388388    TString name = ToLower(fName);
Note: See TracChangeset for help on using the changeset viewer.