Changeset 2761


Ignore:
Timestamp:
01/09/04 22:46:15 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2760 r2761  
    55                                                 -*-*- END OF LINE -*-*-
    66 2004/01/09: Markus Gaug
     7
     8   * mhist/MHCamera.[h.cc]
     9     - add the possibility to call a Draw("proj") which will
     10       draw a Y-Projection of the histogram
     11
     12   * macros/calibration.C
     13     - apply the drawing of the projections and fit them
    714
    815   * mcalib/MCalibrationCalc.cc
  • trunk/MagicSoft/Mars/mhist/MHCamera.h

    r2744 r2761  
    4444    Bool_t         fFreezed;     //! Just a dummy!!!! ([Set,Is]Freezed)
    4545
     46    TH1D          *fYProj;       //! Y-Projection of the histogram (does not exist in ROOT)
     47   
    4648    //Int_t          fOptStat;
    4749    //TGStatusBar   *fStatusBar;
     
    8890    void  FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {}
    8991
     92    void CreateProjection();
     93   
    9094public:
    9195    MHCamera();
     
    188192    UInt_t   GetNumPixels() const;
    189193
     194    TH1D     *GetYProj()          { return fYProj;  }
     195    TH1D     *GetYProj() const    { return fYProj;  }
     196   
    190197    //void SetStatusBar(TGStatusBar *bar) { fStatusBar = bar; }
    191198
Note: See TracChangeset for help on using the changeset viewer.