Ignore:
Timestamp:
10/31/01 13:47:45 (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/MHillas.cc

    r1003 r1018  
    9595{
    9696    *fLog << "Hillas Parameter:" << endl;
    97     *fLog << " - Alpha  = " << fabs(fAlpha)  << endl;
    98     *fLog << " - Width  = " << fWidth  << endl;
    99     *fLog << " - Length = " << fLength << endl;
    100     *fLog << " - Size   = " << fSize   << endl;
    101     *fLog << " - Dist   = " << fDist   << endl;
    102 }
    103 
     97    *fLog << " - Alpha  = " << fabs(fAlpha) << "°"    << endl;
     98    *fLog << " - Width  = " << fWidth  << " mm"       << endl;
     99    *fLog << " - Length = " << fLength << " mm"       << endl;
     100    *fLog << " - Size   = " << fSize   << " #CerPhot" << endl;
     101    *fLog << " - Dist   = " << fDist   << " mm"       << endl;
     102}
     103
     104/*
    104105// --------------------------------------------------------------------------
    105106//
     
    113114    fEllipse->Paint();
    114115}
     116*/
    115117
    116118// --------------------------------------------------------------------------
     
    122124// (s. Clear() )
    123125//
    124 void MHillas::Draw(Option_t *)
     126void MHillas::Draw(Option_t *opt)
    125127{
    126128    Clear();
     
    132134    fEllipse->SetLineWidth(2);
    133135    fEllipse->Draw();
     136    //AppendPad(opt);
    134137
    135138    /*
  • trunk/MagicSoft/Mars/manalysis/MHillas.h

    r1014 r1018  
    1616    Float_t fAlpha;     // [deg] Angle between the length axis of the ellipse and the camera center
    1717    Float_t fTheta;     // [rad] Angle between the x axis and the center of the ellipse
    18     Float_t fWidth;     // Width of the ellipse
    19     Float_t fLength;    // Length of the ellipse
    20     Float_t fSize;      // Size of the ellipse
    21     Float_t fDist;      // Distance of the ellipse COM from the camera center
     18    Float_t fWidth;     // [mm]  Width of the ellipse
     19    Float_t fLength;    // [mm]  Length of the ellipse
     20    Float_t fSize;      // [#CerPhot] Size of the ellipse
     21    Float_t fDist;      // [mm] Distance of the ellipse COM from the camera center
    2222
    2323    TEllipse *fEllipse; //! Graphical Object to Display Ellipse
     
    3333    void Print(Option_t *opt=NULL) const;
    3434    void Draw(Option_t *opt=NULL);
    35     void Paint(Option_t *opt=NULL);
     35    //void Paint(Option_t *opt=NULL);
    3636
    3737    void Clear(Option_t *opt=NULL);
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r803 r1018  
    2929
    3030SRCFILES = MCT1ReadAscii.cc \
     31           MPedestalPix.cc \
    3132           MPedestalCam.cc \
    32            MPedestalPix.cc \
    3333           MMcPedestalCopy.cc \
    3434           MImgCleanStd.cc \
Note: See TracChangeset for help on using the changeset viewer.