Changeset 1471 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 08/01/02 12:31:56 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc
r1434 r1471 32 32 ////////////////////////////////////////////////////////////////////////////// 33 33 #include "MHillasSrcCalc.h" 34 35 #include <fstream.h> 34 36 35 37 #include "MParList.h" … … 94 96 } 95 97 98 99 void MHillasSrcCalc::SavePrimitive(ofstream &out, Option_t *o="") 100 { 101 out << " MHillasSrcCalc " << ToLower(fName) << "(\""; 102 out << fSrcName << "\", \"" << fHillasName << "\", \""; 103 out << fName << "\", \"" << fTitle << "\");" << endl; 104 } -
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.h
r1203 r1471 27 27 Bool_t Process(); 28 28 29 void SavePrimitive(ofstream &out, Option_t *o=""); 30 29 31 ClassDef(MHillasSrcCalc, 0) // task to calculate the source position depandant hillas parameters 30 32 }; -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1461 r1471 44 44 45 45 #include <stdlib.h> // atof 46 #include <fstream.h> // ofstream, SavePrimitive 46 47 47 48 #include <TGFrame.h> // TGFrame … … 406 407 return kTRUE; 407 408 } 409 410 void MImgCleanStd::SavePrimitive(ofstream &out, Option_t *o="") 411 { 412 out << " MImgCleanStd " << ToLower(fName) << "("; 413 out << fCleanLvl1 << ", " << fCleanLvl2 << ", \""; 414 out << fName << "\", \"" << fTitle << "\");" << endl; 415 } -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h
r1457 r1471 34 34 35 35 void Print(Option_t *o="") const; 36 void SavePrimitive(ofstream &out, Option_t *o=""); 36 37 37 38 Bool_t ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2); -
trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc
r1460 r1471 81 81 } 82 82 */ 83 84 void MSrcPosCam::SavePrimitive(ofstream &out, Option_t *o="") 85 { 86 out << " MSrcPosCam " << ToLower(fName) << "(\""; 87 out << fName << "\", " << fTitle << "\");" << endl; 88 89 out << " " << ToLower(fName) << ".SetXY(" << fX << ", " << fY << ");" << endl;} -
trunk/MagicSoft/Mars/manalysis/MSrcPosCam.h
r1460 r1471 29 29 //void AsciiWrite(ofstream &fout) const; 30 30 31 void SavePrimitive(ofstream &out, Option_t *o=""); 32 31 33 ClassDef(MSrcPosCam, 1) // container to store source position in the camera plain 32 34 };
Note:
See TracChangeset
for help on using the changeset viewer.