Ignore:
Timestamp:
08/02/02 09:32:34 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
4 edited

Legend:

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

    r1471 r1474  
    9797
    9898
     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//
    99105void MHillasSrcCalc::SavePrimitive(ofstream &out, Option_t *o="")
    100106{
  • trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.h

    r1471 r1474  
    1313{
    1414private:
    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
    1818
    1919    TString     fSrcName;
     
    2929    void SavePrimitive(ofstream &out, Option_t *o="");
    3030
    31     ClassDef(MHillasSrcCalc, 0) // task to calculate the source position depandant hillas parameters
     31    ClassDef(MHillasSrcCalc, 1) // task to calculate the source position depandant hillas parameters
    3232};
    3333
  • trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc

    r1471 r1474  
    408408}
    409409
     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//
    410416void MImgCleanStd::SavePrimitive(ofstream &out, Option_t *o="")
    411417{
  • trunk/MagicSoft/Mars/manalysis/MSrcPosCam.cc

    r1471 r1474  
    8282*/
    8383
     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//
    8490void MSrcPosCam::SavePrimitive(ofstream &out, Option_t *o="")
    8591{
    8692    out << "   MSrcPosCam " << ToLower(fName) << "(\"";
    87     out << fName << "\", " << fTitle << "\");" << endl;
     93    out << fName << "\", \"" << fTitle << "\");" << endl;
    8894
    8995    out << "   " << ToLower(fName) << ".SetXY(" << fX << ", " << fY << ");" << endl;}
Note: See TracChangeset for help on using the changeset viewer.