Changeset 7190


Ignore:
Timestamp:
07/14/05 17:12:57 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7189 r7190  
    2626
    2727   * mcalib/MCalibrationChargeCalc.cc:
    28       simplified FinalizeUnsuitablePixels()
     28     - simplified FinalizeUnsuitablePixels()
     29
     30   * mcalib/MCalibCalcFromPast.cc:
     31     - when finalizing of unsuitable pixels fails return kERROR in
     32       Process
     33
     34   * mcalib/MCalibrationRelTimeCalc.cc:
     35     - simplified counting unreliable pixels
     36
     37   * mfilter/MFMagicCuts.[h,cc]:
     38     - replaced the m3long cut. m3long now is used to determin which
     39       origin might be the correct impact of the shower. This gives
     40       not so steep theta plots and the 2D plot can be done at the
     41       same time.
     42     - The sign of Disp stored in the paremeter list is now correctly
     43       aligned along the major axis of the shower. >0 for along major
     44       axis, <0 otherwise.
     45     - comment have been updated.
     46     - some old code had been removed
    2947
    3048
  • trunk/MagicSoft/Mars/NEWS

    r7189 r7190  
    103103     The result for the sigma of the gauss(sqrt(x)) fit was a factor
    104104     sqrt(2) to large
     105
     106   - ganymed: The intercalibration is now done using a full f-factor
     107     method instead of a simple update. This makes things slower but
     108     more reliable in terms of gain-fluctuations and sudden VCSEL gain
     109     changes.
    105110
    106111   - sponde: the zenith angle distribution is now weighted instead of
  • trunk/MagicSoft/Mars/mcalib/MCalibCalcFromPast.cc

    r7189 r7190  
    288288  if (fChargeCalc)
    289289    {
    290       fChargeCalc->Finalize();
     290      if (!fChargeCalc->Finalize())
     291          return kERROR;
     292
    291293      if (fUpdateNumPhes)
    292294        {
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r7189 r7190  
    22382238  }
    22392239
    2240   return kTRUE;
    2241 
    22422240  if (unsuitcnt > fUnsuitablesLimit*fGeom->GetNumPixels())
    22432241  {
Note: See TracChangeset for help on using the changeset viewer.