Changeset 2468 for trunk/MagicSoft


Ignore:
Timestamp:
11/04/03 14:13:45 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mimage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/MHillas.cc

    r2467 r2468  
    145145        return;
    146146
    147     TEllipse e(fMeanX, fMeanY, fLength, fWidth,
    148                             0, 360, fDelta*kRad2Deg+180);
    149 
     147    TEllipse e(fMeanX, fMeanY, fLength, fWidth, 0, 360, fDelta*kRad2Deg+180);
    150148    e.SetLineWidth(2);
    151149    e.Paint();
     
    271269    //  in the camera it has values between -pi/2 and pi/2 degrees
    272270    //
     271    // Rem: I tested replacing sqrt() by hypot() but they exactly
     272    //      consume the same amount of time
     273    //
    273274    const Double_t d0    = corryy - corrxx;
    274275    const Double_t d1    = corrxy*2;
  • trunk/MagicSoft/Mars/mimage/MHillas.h

    r2026 r2468  
    77
    88class TArrayF;
    9 class TEllipse;
    109
    1110class MGeomCam;
     
    2625    Float_t fCosDelta;      // [1] cos of Delta (to be used in derived classes)
    2726
    28     TEllipse *fEllipse;     //! Graphical Object to Display Ellipse
    29 
    3027public:
    3128    MHillas(const char *name=NULL, const char *title=NULL);
     
    3734
    3835    void Print(Option_t *opt=NULL) const;
    39     void Draw(Option_t *opt=NULL);
    40 
    41     void Clear(Option_t *opt=NULL);
     36    void Paint(Option_t *opt=NULL);
    4237
    4338    Float_t GetLength() const { return fLength; }
Note: See TracChangeset for help on using the changeset viewer.