Changeset 8170 for trunk


Ignore:
Timestamp:
10/27/06 14:39:36 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8169 r8170  
    2626   * datacenter/macros/plotdb.C:
    2727     - implemented a possibility to show average values with RMS
     28
     29   * mjtrain/MJTrainSeparation.cc:
     30     - do not print observation time statistics if observation time is
     31       zero
    2832
    2933
  • trunk/MagicSoft/Mars/NEWS

    r8161 r8170  
    22
    33 *** <cvs>
     4
     5   - database: Website to plot values from the database has been added.
    46
    57   - general: The changes to the interpretation of phrases lead to
    68     a problem with the access of MHMatrix objects (eg. "M[0]")... fixed.
    79
    8    - database: Website to plot values from the database has been added.
     10   - callisto: Redone the signal extraction this includes:
     11     + Unified the algorithms to extract the pedestal for all pedestal
     12       extractions done
     13     + Unification of hi- and lo-gain into one array
     14     + Unification of hi- and lo-gain extraction for Spline and
     15       Digital Filter (means now exactly the same algorithm is used,
     16       not a copy-and-pasted one)
     17     + Store pedestal subtracted data in a common place
     18     + Improved extraction algorithms. If the algorithms search a
     19       maximum but don't find one they don't return the maximum anymore
     20     + Improved the extraction such that a information for signal
     21       and time which is consistent is returned
     22     + replaced the numerical spline with a (not slower) analytical
     23       solution
     24     + Lowered the saturation limit from 250 to 245 to make sure that
     25       we are far away in all pixels from problems with the clock-noise
     26     + Changed the lo-gain start shift from 2.5 to 6.0 which gives
     27       clearly smoother results (to be investigated further)
    928
    1029
  • trunk/MagicSoft/Mars/datacenter/macros/fillstar.C

    r7840 r8170  
    156156    Float_t psf   = 58.5480*mw - 37.3829;
    157157    psf = TMath::Nint(psf*10)/10.;
     158    if (psf<0)
     159        psf=0;
    158160    TString PSF = Form("%5.1f", psf);
    159161    Int_t   num = (int)hmuon->GetEntries();
  • trunk/MagicSoft/Mars/mjtrain/MJTrainSeparation.cc

    r8164 r8170  
    288288    }
    289289
    290     *fLog << all << "Observation Time:     " << TMath::Nint(ontime/60) << "min" << endl;
    291     *fLog << "Maximum Significance: " << Form("%.1f", sig1) << " [";
    292     *fLog << Form("%.1f", sig1/TMath::Sqrt(ontime/3600)) << "/sqrt(h)]";
     290    if (ontime>0)
     291        *fLog << all << "Observation Time:     " << TMath::Nint(ontime/60) << "min" << endl;
     292    *fLog << "Maximum Significance: " << Form("%.1f", sig1);
     293    if (ontime>0)
     294        *fLog << Form(" [%.1f/sqrt(h)]", sig1/TMath::Sqrt(ontime/3600));
    293295    *fLog << endl;
    294296
Note: See TracChangeset for help on using the changeset viewer.