Changeset 9413 for trunk/MagicSoft


Ignore:
Timestamp:
03/30/09 09:06:00 (15 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9412 r9413  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2009/03/30 Thomas Bretz
     21
     22   * manalysis/MMcCalibrationUpdate.cc:
     23     - fixed a conditional which prevented the display from
     24       correctly process raw data
     25
     26   * mgeom/MGeomCamSquare.cc:
     27     - shifted pixels to be centered around 0
     28
     29   * msimcamera/MSimCamera.cc:
     30     - added an additional sanity check
     31
     32
     33
    2034 2009/03/27 Stefan Ruegamer
    2135
     
    2741 2009/03/24 Stefan Ruegamer
    2842
    29    * mhflux/MHalpha.cc
     43   * mhflux/MHAlpha.cc
    3044     - changed in DrawAll the line color of on-off to blue
    3145
     
    4559   * mhbase/MH.cc:
    4660     - included TProfile2D for newer root versions
     61
     62   * mjobs/MJCalibrateSignal.cc:
     63     - made the copy of "OriginalMC" optional. Now it also works
     64       for non-ceres (original MMCS) files again which don't
     65       have this tree.
    4766
    4867
  • trunk/MagicSoft/Mars/NEWS

    r9410 r9413  
    88     canvases) found in the file are drawn. Note that this may result
    99     in empty tabs.
     10
     11 ;callisto:
     12
     13   * Fixed a bug which prevented MAGIC Monte Carlo file from being
     14     calibrated (ceres files worked)
    1015
    1116 ;ganymed:
  • trunk/MagicSoft/Mars/msimcamera/MSimCamera.cc

    r9328 r9413  
    210210    const UInt_t npix = fStat->GetMaxIndex()+1;
    211211
     212    if (npix>(UInt_t)fElectronicNoise->GetSize())
     213    {
     214        *fLog << err << "ERROR - More indices (" << npix << ") ";
     215        *fLog << "assigned than existing in camera (";
     216        *fLog << fElectronicNoise->GetSize() << ")!" << endl;
     217        return kERROR;
     218    }
     219
    212220    const Double_t pl = fSpline->GetXmin()*freq;
    213221    const Double_t pr = fSpline->GetXmax()*freq;
Note: See TracChangeset for help on using the changeset viewer.