- Timestamp:
- 03/03/04 11:06:21 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3386 r3388 4 4 5 5 -*-*- END OF LINE -*-*- 6 6 7 2004/03/03: Sebastian Raducci 7 8 * msignal/MArrivalTimeCalc.cc … … 10 11 11 12 2004/03/03: Abelardo Moralejo 13 * mraw/MRawRunHeader.h 14 - Replaced 15 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by 16 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); } 17 18 since the latter is the exact translation of what the function 19 intends to do. I do not know why, but the display of real data 20 did not work with the upper line! 12 21 13 22 * mgeom/MGeomCam.cc -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
r3374 r3388 106 106 Int_t GetNumTotalBytes() const; 107 107 108 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }108 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); } 109 109 110 110 void Print(Option_t *t=NULL) const;
Note:
See TracChangeset
for help on using the changeset viewer.