Changeset 4883 for trunk/MagicSoft/Mars/mhist/MHCamera.h
- Timestamp:
- 09/07/04 13:32:47 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHCamera.h
r4650 r4883 13 13 #ifndef ROOT_TArrayD 14 14 #include <TArrayD.h> 15 #endif 16 #ifndef ROOT_MArrayD 17 #include <MArrayD.h> 15 18 #endif 16 19 #ifndef ROOT_TClonesArray … … 146 149 virtual void AddCamContent(const MHCamera &evt, Int_t type=0); 147 150 virtual void AddCamContent(const TArrayD &arr, const TArrayC *used=NULL); 151 virtual void AddCamContent(const MArrayD &arr, const TArrayC *used=NULL); 148 152 virtual void SetCamContent(const MCamEvent &evt, Int_t type=0) { Reset(); AddCamContent(evt, type); } 153 virtual void SetCamContent(const MHCamera &d, Int_t type=0) { Reset(); AddCamContent(d, type); fEntries=d.fEntries; } 149 154 virtual void SetCamContent(const TArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); } 150 virtual void SetCamContent(const M HCamera &d, Int_t type=0) { Reset(); AddCamContent(d, type); fEntries=d.fEntries; }155 virtual void SetCamContent(const MArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); } 151 156 152 157 virtual void SetCamError(const MCamEvent &evt, Int_t type=0);
Note:
See TracChangeset
for help on using the changeset viewer.