Ignore:
Timestamp:
02/10/04 16:35:42 (21 years ago)
Author:
reyes
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReportTrigger.h

    r2892 r3082  
    55#include "MReport.h"
    66#endif
     7#ifndef MARS_MCamEvent
     8#include "MCamEvent.h"
     9#endif
    710
    811#ifndef ROOT_TArrayF
     
    1013#endif
    1114
    12 class MReportTrigger : public MReport
     15class MReportTrigger : public MReport, public MCamEvent
    1316{
    1417private:
     
    2730    Float_t GetL2AfterPrescaler() const { return fL2AfterPrescaler; }
    2831
     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
    2946    ClassDef(MReportTrigger, 1) // Class for TRIGGER-REPORT information
    3047};
Note: See TracChangeset for help on using the changeset viewer.