Changeset 8939 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
06/12/08 14:51:20 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8935 r8939  
    2020
    2121
     22 2008/06/12 Thomas Bretz
     23
     24   * datacenter/macros/plotdb.C:
     25     - improved some titles
     26     - added the new rates
     27     - added the new values from the star-files
     28
     29   * mbase/MStatusDisplay.cc:
     30     - removing the canvases from the global list didn't work
     31       because some RecursiveRemovs rely on gROOT->FindObject to work
     32       (adding them to another list didn't work either)
     33
     34   * mhflux/MHEnergyEst.cc:
     35     - renamed the "Resolution" Histogram accordingly.
     36
     37   * mjobs/MJCalibrateSignal.cc:
     38     - added a histogram showing the arrival time of
     39       extracted interleaved calibration events
     40
     41   * mraw/MRawEvtData.[h,cc]:
     42     - fixed the Draw function. It was broken since the latest changes
     43     - added fNumBytesPerSample to the Copy-function
     44     - fixed the GetSample-function
     45     - added a new member funtion to return the maximu possible
     46
     47   * mars.rc:
     48     - changed the default for the MUX spline to the 50 sl window
     49
     50   * msignal/MSignalCalc.cc:
     51     - scale the pedestal correctly with the scale
     52
     53
     54
    2255 2008/06/11 Thomas Bretz
    2356
     
    3063     - remove the embedded canvas from the global list to prevent
    3164       global access to it
     65
     66   * mhbase/MH3.cc:
     67     - fixed a bug if in a 2D constructor a 1D profile was created
     68
     69   * mreport/MReportPyrometer.cc:
     70     - tiny changes to the comments
    3271
    3372
  • trunk/MagicSoft/Mars/NEWS

    r8935 r8939  
    109109    * Added a new command line option --dev-null to suppress output of
    110110      Y-files (this is useful for test cases)
     111
     112    * added a new tab "CalPos" showing the arrival time of extracted
     113      interleaved calibration events
    111114
    112115 ;star
  • trunk/MagicSoft/Mars/mars.rc

    r8652 r8939  
    5959#ExtractSignal.RiseTimeHiGain:   4.3
    6060#ExtractSignal.FallTimeHiGain:   5.1
    61 #ExtractSignal.HiGainFirst:      15
    62 #ExtractSignal.HiGainLast:       65
     61#ExtractSignal.HiGainFirst:      0
     62#ExtractSignal.HiGainLast:       49
    6363
    6464# -------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/msignal/MSignalCalc.cc

    r8573 r8939  
    125125// pixel in the MSignalCam container.
    126126//
    127 #include <TSystem.h>
    128127Int_t MSignalCalc::Process()
    129128{
     
    261260        // MMcPedestalCopy and MMcPedestalNSBAdd
    262261        if (fPedestals)
    263             (*fPedestals)[i].Set(b, sigb);
     262            (*fPedestals)[i].Set(b/fRunHeader->GetScale(), sigb/fRunHeader->GetScale());
    264263    }
    265264
Note: See TracChangeset for help on using the changeset viewer.