Changeset 4993 for trunk/MagicSoft
- Timestamp:
- 09/14/04 13:11:53 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4991 r4993 19 19 20 20 -*-*- END OF LINE -*-*- 21 2004/09/14: Antonio Stamerra 22 23 * mtrigger/MTriggerIPR.h: 24 - added "=" to (idx >= gsNTrigPix) in GetPixelContent 25 26 * macros/readIPR.C: 27 - new macro to read and display the IPRs 28 29 * macro/dohtml.C: 30 - added readIPR 31 32 21 33 2004/09/14: Thomas Bretz 22 34 -
trunk/MagicSoft/Mars/macros/dohtml.C
r4930 r4993 125 125 html.Convert("calibration.C", "MARS - Example how to use the calibrationa camera "); 126 126 html.Convert("bootcampstandardanalysis.C", "MARS - Example of the status of the standard analysis at the bootcamp"); 127 html.Convert("readIPR.C", "MARS - Example to read and display the IPRs from a (merpped) report file"); 127 128 } -
trunk/MagicSoft/Mars/mtrigger/MTriggerIPR.h
r4966 r4993 33 33 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const 34 34 { 35 if (idx > gsNTrigPix)35 if (idx >= gsNTrigPix) 36 36 return kFALSE; 37 37
Note:
See TracChangeset
for help on using the changeset viewer.