Ignore:
Timestamp:
02/14/04 11:48:43 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3082 r3148  
    2020
    2121    TArrayF fPrescalerRates;    //[Hz] L2 prescaler rates
    22     //TArrayF fRates;           //[Hz] curently undefined
     22    //TArrayF fRates;           //[Hz] currently undefined
    2323
    2424    Int_t InterpreteBody(TString &str);
     
    3131
    3232    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       }
     33    {
     34        if(idx>18)
     35            return kFALSE;
     36
     37        val = fPrescalerRates[idx];
     38        return kTRUE;
     39    }
     40
    4241    void DrawPixelContent(Int_t num) const
    43       {
    44       }
     42    {
     43    }
    4544
    4645    ClassDef(MReportTrigger, 1) // Class for TRIGGER-REPORT information
Note: See TracChangeset for help on using the changeset viewer.