Changeset 2761 for trunk/MagicSoft
- Timestamp:
- 01/09/04 22:46:15 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2760 r2761 5 5 -*-*- END OF LINE -*-*- 6 6 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 7 14 8 15 * mcalib/MCalibrationCalc.cc -
trunk/MagicSoft/Mars/mhist/MHCamera.h
r2744 r2761 44 44 Bool_t fFreezed; //! Just a dummy!!!! ([Set,Is]Freezed) 45 45 46 TH1D *fYProj; //! Y-Projection of the histogram (does not exist in ROOT) 47 46 48 //Int_t fOptStat; 47 49 //TGStatusBar *fStatusBar; … … 88 90 void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {} 89 91 92 void CreateProjection(); 93 90 94 public: 91 95 MHCamera(); … … 188 192 UInt_t GetNumPixels() const; 189 193 194 TH1D *GetYProj() { return fYProj; } 195 TH1D *GetYProj() const { return fYProj; } 196 190 197 //void SetStatusBar(TGStatusBar *bar) { fStatusBar = bar; } 191 198
Note:
See TracChangeset
for help on using the changeset viewer.