Changeset 7034 for trunk


Ignore:
Timestamp:
05/13/05 19:50:48 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/NEWS

    r7033 r7034  
    9696     + The integration ranges were shifted by 0.2 FADC slices to the right.
    9797     + unreliable handling of floating point values caused different
    98        results on different platform or with different compiler options
     98       results on different platform or with different compiler options:
     99       The new algorithm is numerically exact and more accurate because
     100       it doesn't calculate the integration position by multiple times
     101       adding the step-size (which results in numerical uncertanties
     102       exspecially if multiplied with large numbers)
    99103
    100104   - callisto: set new defaults in MExtractTimeAndChargeDigitalFilter:
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.cc

    r7029 r7034  
    10751075
    10761076    sum = 0.;
    1077     for (Int_t i=0; i<=n; i++)
     1077    for (Int_t i=0; i<n; i++)
    10781078    {
    10791079        const Float_t x = start+i*step;
     
    11171117
    11181118    sum = 0.;
    1119     for (Int_t i=0; i<=n; i++)
     1119    for (Int_t i=0; i<n; i++)
    11201120    {
    11211121        const Float_t x = start+i*step;
  • trunk/MagicSoft/Mars/star.rc

    r7022 r7034  
    4747# Use this if you want to change the parameters of the software trigger
    4848# -------------------------------------------------------------------------
    49 
    5049#FilterSwTrigger.Threshold:    5
    5150#FilterSwTrigger.NumNeighbors: 4
     
    5554# Setup or switch off the muon analysis here
    5655# -------------------------------------------------------------------------
    57 
    5856#MJStar.MuonAnalysis: On
    5957
     
    7472
    7573# -------------------------------------------------------------------------
     74# Setup the image cleaning here
    7675# -------------------------------------------------------------------------
    7776MImgCleanStd.CleanLevel1: 8.5
     
    8079
    8180# -------------------------------------------------------------------------
     81# setup the image parameter calculation here
    8282# -------------------------------------------------------------------------
    8383#MHillasCalc.IdxIsland: 0
Note: See TracChangeset for help on using the changeset viewer.