Ignore:
Timestamp:
03/03/04 13:50:05 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3388 r3389  
    44
    55                                                 -*-*- 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
    635
    736 2004/03/03: Sebastian Raducci
     37
    838   * msignal/MArrivalTimeCalc.cc
    939     - The calculation of the arrival times is made only when needed
    1040       (when the HalfMax is over the pedestal)
    1141
     42
     43
    1244 2004/03/03: Abelardo Moralejo
     45
    1346   * mraw/MRawRunHeader.h
    1447     - Replaced
    1548         Bool_t IsMonteCarloRun() const { return fRunType>0x00ff; }  by
    1649         Bool_t IsMonteCarloRun() const { return (fRunType==0x0100); }
    17 
    1850     since the latter is the exact translation of what the function
    1951     intends to do. I do not know why, but the display of real data
     
    2456       fails after that change, both for old and new camera files.
    2557       Put back fPixels[i] = new MGeomPix; in constructor.
     58
     59
    2660
    2761 2004/03/02: Abelardo Moralejo
     
    3367     - Added GetNumCT() function.
    3468     - Replaced
    35           fTelescopes[i]= new MGeomCorsikaCT;   by
    36 
     69          fTelescopes[i]= new MGeomCorsikaCT;   
     70       by
    3771          MGeomCorsikaCT* dummy = new  MGeomCorsikaCT();
    3872          fTelescopes.Add(dummy);
    39 
    4073
    4174   * mgeom/MGeomCorsikaCT.[h,cc]
     
    4578   * mgeom/MGeomCam.cc  => NOTE: this change was undone later!
    4679     - 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
    5185
    5286
Note: See TracChangeset for help on using the changeset viewer.