Changeset 1483 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 08/05/02 16:12:14 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc
r1477 r1483 115 115 fHillasSrc->SavePrimitive(out); 116 116 117 out << " MHillasSrcCalc " << ToLower(fName) << "(";117 out << " MHillasSrcCalc " << GetUniqueName() << "("; 118 118 119 119 if (fSrcPos) 120 out << "&" << ToLower(fSrcPos->GetName());120 out << "&" << fSrcPos->GetUniqueName(); 121 121 else 122 122 out << "\"" << fSrcName << "\""; 123 123 124 124 if (fHillasSrc) 125 out << "&" << ToLower(fHillasSrc->GetName());125 out << "&" << fHillasSrc->GetUniqueName(); 126 126 else 127 127 out << "\"" << fHillasName << "\""; -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1477 r1483 416 416 void MImgCleanStd::StreamPrimitive(ofstream &out) const 417 417 { 418 out << " MImgCleanStd " << ToLower(fName) << "(";418 out << " MImgCleanStd " << GetUniqueName() << "("; 419 419 out << fCleanLvl1 << ", " << fCleanLvl2 << ", \""; 420 420 out << fName << "\", \"" << fTitle << "\");" << endl; -
trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc
r1477 r1483 90 90 void MSrcPosCam::StreamPrimitive(ofstream &out) const 91 91 { 92 out << " MSrcPosCam " << ToLower(fName) << "(\"";92 out << " MSrcPosCam " << GetUniqueName() << "(\""; 93 93 out << fName << "\", \"" << fTitle << "\");" << endl; 94 94 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.