Changeset 3382 for trunk/MagicSoft


Ignore:
Timestamp:
03/02/04 20:30:12 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3381 r3382  
    1313     - Added GetNumCT() function.
    1414     - Replaced
    15           fTelescopes[i]= new MGeomCorsikaCT   by
     15          fTelescopes[i]= new MGeomCorsikaCT;   by
    1616
    1717          MGeomCorsikaCT* dummy = new  MGeomCorsikaCT();
     
    2222     - Added getter functions for telescope coordinates.
    2323     - Added Print() function.
     24
     25   * mgeom/MGeomCam.cc
     26     - Replaced
     27        fPixels[i] = new MGeomPix;   by
     28
     29        MGeomPix* dummy = new MGeomPix();
     30        fPixels.Add(dummy);
    2431
    2532
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.cc

    r2470 r3382  
    8585
    8686    for (UInt_t i=0; i<npix; i++)
    87         fPixels[i] = new MGeomPix;
     87      {
     88        MGeomPix* dummy = new MGeomPix();
     89        fPixels.Add(dummy);
     90      }
    8891
    8992    SetReadyToSave();
Note: See TracChangeset for help on using the changeset viewer.