Ignore:
Timestamp:
08/05/02 16:12:14 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
3 edited

Legend:

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

    r1477 r1483  
    115115        fHillasSrc->SavePrimitive(out);
    116116
    117     out << "   MHillasSrcCalc " << ToLower(fName) << "(";
     117    out << "   MHillasSrcCalc " << GetUniqueName() << "(";
    118118
    119119    if (fSrcPos)
    120         out << "&" << ToLower(fSrcPos->GetName());
     120        out << "&" << fSrcPos->GetUniqueName();
    121121    else
    122122        out << "\"" << fSrcName << "\"";
    123123
    124124    if (fHillasSrc)
    125         out << "&" << ToLower(fHillasSrc->GetName());
     125        out << "&" << fHillasSrc->GetUniqueName();
    126126    else
    127127        out << "\"" << fHillasName << "\"";
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1477 r1483  
    416416void MImgCleanStd::StreamPrimitive(ofstream &out) const
    417417{
    418     out << "   MImgCleanStd " << ToLower(fName) << "(";
     418    out << "   MImgCleanStd " << GetUniqueName() << "(";
    419419    out << fCleanLvl1 << ", " << fCleanLvl2 << ", \"";
    420420    out << fName << "\", \"" << fTitle << "\");" << endl;
  • trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc

    r1477 r1483  
    9090void MSrcPosCam::StreamPrimitive(ofstream &out) const
    9191{
    92     out << "   MSrcPosCam " << ToLower(fName) << "(\"";
     92    out << "   MSrcPosCam " << GetUniqueName() << "(\"";
    9393    out << fName << "\", \"" << fTitle << "\");" << endl;
    9494
    95     out << "   " << ToLower(fName) << ".SetXY(" << fX << ", " << fY << ");" << endl;}
     95    out << "   " << GetUniqueName() << ".SetXY(" << fX << ", " << fY << ");" << endl;}
Note: See TracChangeset for help on using the changeset viewer.