Changeset 3389 for trunk/MagicSoft/Mars/Changelog
- Timestamp:
- 03/03/04 13:50:05 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3388 r3389 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/03/03: Thomas Bretz 7 8 * mgeom/MGeomCam.cc: 9 - give a name and title also if the default constructor is used 10 11 * mgeom/MGeomMirror.[h,cc]: 12 - added member function GetReflection 13 - added persistent data member fReflector 14 15 * mjobs/MJCalibration.cc, mjobs/MJExtractSignal.cc, mjobs/MJPedestal.cc: 16 - fixed a typo in the output 17 18 * mraw/MRawFileWrite.cc: 19 - added the missing '.' to MRawRunHeader. Because of the design of 20 MReadTree this is backward compatible 21 22 * mraw/MRawRunHeader.h: 23 - removed last change from Abelardo. '>255' is the correct 24 check for MC files following the definition that all MC files 25 have run types >255 which was made in the past. 26 27 * manalysis/MCerPhotAnal.[h,cc], manalysis/MCerPhotAnal2.[h,cc]: 28 - created ReInit member function to hold all code (moved from 29 PreProcess) accessing the run header. The run header is not 30 available in PreProcess. That it was working before was only 31 by chance, because the run type is initialized with 65535 which 32 is != 255 but not >255. 33 34 6 35 7 36 2004/03/03: Sebastian Raducci 37 8 38 * msignal/MArrivalTimeCalc.cc 9 39 - The calculation of the arrival times is made only when needed 10 40 (when the HalfMax is over the pedestal) 11 41 42 43 12 44 2004/03/03: Abelardo Moralejo 45 13 46 * mraw/MRawRunHeader.h 14 47 - Replaced 15 48 Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; } by 16 49 Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); } 17 18 50 since the latter is the exact translation of what the function 19 51 intends to do. I do not know why, but the display of real data … … 24 56 fails after that change, both for old and new camera files. 25 57 Put back fPixels[i] = new MGeomPix; in constructor. 58 59 26 60 27 61 2004/03/02: Abelardo Moralejo … … 33 67 - Added GetNumCT() function. 34 68 - Replaced 35 fTelescopes[i]= new MGeomCorsikaCT; by36 69 fTelescopes[i]= new MGeomCorsikaCT; 70 by 37 71 MGeomCorsikaCT* dummy = new MGeomCorsikaCT(); 38 72 fTelescopes.Add(dummy); 39 40 73 41 74 * mgeom/MGeomCorsikaCT.[h,cc] … … 45 78 * mgeom/MGeomCam.cc => NOTE: this change was undone later! 46 79 - Replaced 47 fPixels[i] = new MGeomPix; by 48 49 MGeomPix* dummy = new MGeomPix(); 50 fPixels.Add(dummy); 80 fPixels[i] = new MGeomPix; 81 by 82 MGeomPix* dummy = new MGeomPix(); 83 fPixels.Add(dummy); 84 51 85 52 86
Note:
See TracChangeset
for help on using the changeset viewer.