Changeset 1474 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 08/02/02 09:32:34 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc
r1471 r1474 97 97 98 98 99 // -------------------------------------------------------------------------- 100 // 101 // Implementation of SavePrimitive. Used to write the call to a constructor 102 // to a macro. In the original root implementation it is used to write 103 // gui elements to a macro-file. 104 // 99 105 void MHillasSrcCalc::SavePrimitive(ofstream &out, Option_t *o="") 100 106 { -
trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.h
r1471 r1474 13 13 { 14 14 private: 15 MHillas *fHillas; 16 MSrcPosCam *fSrcPos; 17 MHillasSrc *fHillasSrc; 15 MHillas *fHillas; //! Pointer to the source independant hillas parameters 16 MSrcPosCam *fSrcPos; //! Pointer to the source position 17 MHillasSrc *fHillasSrc; //! Pointer to the output container for the source dependant parameters 18 18 19 19 TString fSrcName; … … 29 29 void SavePrimitive(ofstream &out, Option_t *o=""); 30 30 31 ClassDef(MHillasSrcCalc, 0) // task to calculate the source position depandant hillas parameters31 ClassDef(MHillasSrcCalc, 1) // task to calculate the source position depandant hillas parameters 32 32 }; 33 33 -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1471 r1474 408 408 } 409 409 410 // -------------------------------------------------------------------------- 411 // 412 // Implementation of SavePrimitive. Used to write the call to a constructor 413 // to a macro. In the original root implementation it is used to write 414 // gui elements to a macro-file. 415 // 410 416 void MImgCleanStd::SavePrimitive(ofstream &out, Option_t *o="") 411 417 { -
trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc
r1471 r1474 82 82 */ 83 83 84 // -------------------------------------------------------------------------- 85 // 86 // Implementation of SavePrimitive. Used to write the call to a constructor 87 // to a macro. In the original root implementation it is used to write 88 // gui elements to a macro-file. 89 // 84 90 void MSrcPosCam::SavePrimitive(ofstream &out, Option_t *o="") 85 91 { 86 92 out << " MSrcPosCam " << ToLower(fName) << "(\""; 87 out << fName << "\", " << fTitle << "\");" << endl;93 out << fName << "\", \"" << fTitle << "\");" << endl; 88 94 89 95 out << " " << ToLower(fName) << ".SetXY(" << fX << ", " << fY << ");" << endl;}
Note:
See TracChangeset
for help on using the changeset viewer.