Changeset 2206 for trunk/MagicSoft/Mars/mhist/MHCerPhotEvt.h
- Timestamp:
- 06/23/03 11:01:53 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHCerPhotEvt.h
r2173 r2206 6 6 #endif 7 7 8 #ifndef MARS_MCerPhotEvt9 #include "MCerPhotEvt.h"10 #endif11 12 class TH1D;13 8 class MCamDisplay; 9 class MCamEvent; 14 10 15 11 class MHCerPhotEvt : public MH 16 12 { 17 13 private: 18 MCerPhotEvt fSum; // storing the sum 19 Int_t fEntries; // number of entries in the histogram 20 MGeomCam *fCam; // the present geometry 21 MCerPhotEvt *fEvt; //! the current event 22 MCamDisplay *fDispl; //! the camera display 14 MCamDisplay *fSum; // storing the sum 15 MCamEvent *fEvt; //! the current event 16 17 TString fNameEvt; 18 19 Bool_t SetupFill(const MParList *pList); 20 Bool_t Fill(const MParContainer *par, const Stat_t w=1); 21 Bool_t Finalize(); 23 22 24 23 public: … … 26 25 ~MHCerPhotEvt(); 27 26 28 void Clear(const Option_t *o="");27 void SetNameEvt(const TString name) { fNameEvt = name; } 29 28 30 Bool_t SetupFill(const MParList *pList); 31 Bool_t Fill(const MParContainer *par, const Stat_t w=1); 32 Bool_t Finalize(); 33 34 TH1 *GetHistByName(const TString name) { return NULL; } 35 36 const MCerPhotEvt &GetSum() const { return fSum; } 37 38 void Draw(Option_t *opt=""); 39 void Paint(Option_t *option=""); 29 TH1 *GetHistByName(const TString name=""); 40 30 41 31 ClassDef(MHCerPhotEvt, 1) // Histogram to sum camera events
Note:
See TracChangeset
for help on using the changeset viewer.