Changeset 713 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 03/30/01 13:21:01 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHFadcCam.h
r712 r713 38 38 TH1F *GetHistLo(UInt_t i) { return (*this)[i]->GetHistLo(); } 39 39 40 void DrawHi(UInt_t i) { GetHistHi(i)->Draw(); } 41 void DrawLo(UInt_t i) { GetHistLo(i)->Draw(); } 40 // 41 // FIXME! This should be replaced by a Draw(Option_t)-function 42 // 43 void DrawHi(UInt_t i) { GetHistHi(i)->Draw(); } 44 void DrawLo(UInt_t i) { GetHistLo(i)->Draw(); } 42 45 43 void Draw (UInt_t i){ (*this)[i]->Draw(); }46 void DrawPix(UInt_t i) { (*this)[i]->Draw(); } 44 47 45 Int_t GetEntries() 46 { 47 return fArray->GetEntries() ; 48 } 48 Int_t GetEntries() { return fArray->GetEntries(); } 49 49 50 50 ClassDef(MHFadcCam, 1) // A list of histograms storing the Fadc spektrum of one pixel -
trunk/MagicSoft/Mars/mhist/MHHillas.cc
r712 r713 8 8 9 9 #include "MHHillas.h" 10 11 #include <math.h> 10 12 11 13 #include <TH1.h>
Note:
See TracChangeset
for help on using the changeset viewer.