Changeset 3148 for trunk/MagicSoft/Mars/mreport
- Timestamp:
- 02/14/04 11:48:43 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreport/MReportTrigger.h
r3082 r3148 20 20 21 21 TArrayF fPrescalerRates; //[Hz] L2 prescaler rates 22 //TArrayF fRates; //[Hz] cur ently undefined22 //TArrayF fRates; //[Hz] currently undefined 23 23 24 24 Int_t InterpreteBody(TString &str); … … 31 31 32 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 } 33 { 34 if(idx>18) 35 return kFALSE; 36 37 val = fPrescalerRates[idx]; 38 return kTRUE; 39 } 40 42 41 void DrawPixelContent(Int_t num) const 43 44 42 { 43 } 45 44 46 45 ClassDef(MReportTrigger, 1) // Class for TRIGGER-REPORT information
Note:
See TracChangeset
for help on using the changeset viewer.