Changeset 3082 for trunk/MagicSoft/Mars/mreport
- Timestamp:
- 02/10/04 16:35:42 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreport/MReportTrigger.h
r2892 r3082 5 5 #include "MReport.h" 6 6 #endif 7 #ifndef MARS_MCamEvent 8 #include "MCamEvent.h" 9 #endif 7 10 8 11 #ifndef ROOT_TArrayF … … 10 13 #endif 11 14 12 class MReportTrigger : public MReport 15 class MReportTrigger : public MReport, public MCamEvent 13 16 { 14 17 private: … … 27 30 Float_t GetL2AfterPrescaler() const { return fL2AfterPrescaler; } 28 31 32 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const 33 { 34 if(idx<19) 35 { 36 val = fPrescalerRates[idx]; 37 return val>0; 38 } 39 else 40 val = kFALSE; 41 } 42 void DrawPixelContent(Int_t num) const 43 { 44 } 45 29 46 ClassDef(MReportTrigger, 1) // Class for TRIGGER-REPORT information 30 47 };
Note:
See TracChangeset
for help on using the changeset viewer.