Changeset 8302 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/04/07 11:45:14 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8299 r8302  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2007/02/04 Thomas Bretz
     22
     23   * mjobs/MJCalibration.cc:
     24     - implemented Hi-/Lo-Gain calibration for MCs
     25
     26   * mjobs/MJPedestal.cc:
     27     - removed intermediate pedestalstorage from code (its
     28       result is not used at all)
     29
     30   * datacenter/macros/fillsignal.C:
     31     - replaced GetMediandev by GetDev
     32
     33
     34
    2135 2007/02/03 Thomas Bretz
    2236
     
    5670   * mbase/MStatusArray.[h,cc]:
    5771     - improved workaround in Read() and Write() for the Reset
    58        of the kCandelete bit in TH1
     72       of the kCanDelete bit in TH1
     73
     74   * mjobs/MJCalibration.cc, mjobs/MJCalibrateSignal.cc:
     75     - commented out obsolete references to *HiLoCam
     76
     77   * mhcalib/Makefile, mcalib/Makefile, mhcalib/HCalibLinkDef.h,
     78     mcalib/CalibLinkDef.h:
     79     - removed *HiLoCam s
    5980
    6081
  • trunk/MagicSoft/Mars/datacenter/macros/fillsignal.C

    r7870 r8302  
    217217    // USE MEDIAN INSTEAD? GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0);
    218218
    219     Double_t medoff = TMath::Nint(hilooff->GetMedian()   *10000)/10000.;
    220     Double_t devoff = TMath::Nint(hilooff->GetMedianDev()*10000)/10000.;
    221 
    222     Double_t medcal = TMath::Nint(hilocal->GetMedian()   *100)/100.;
    223     Double_t devcal = TMath::Nint(hilocal->GetMedianDev()*100)/100.;
     219    Double_t medoff = TMath::Nint(hilooff->GetMedian()*10000)/10000.;
     220    Double_t devoff = TMath::Nint(hilooff->GetDev()   *10000)/10000.;
     221
     222    Double_t medcal = TMath::Nint(hilocal->GetMedian()*100)/100.;
     223    Double_t devcal = TMath::Nint(hilocal->GetDev()   *100)/100.;
    224224
    225225    //get sequence number from the filename
Note: See TracChangeset for help on using the changeset viewer.