Changeset 8207 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/02/06 17:44:10 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8206 r8207  
    4545     - small changes to output
    4646     - changes to comments
     47
     48   * datacenter/macros/plotstat.C:
     49     - changed division of pad, we have already too much periods
     50
     51   * mfilter/MFCosmics.cc:
     52     - do not take invalid pixels into account
     53
     54   * mmain/MEventDisplay.cc:
     55     - removed obsolete include of MExtractSignal
     56
     57   * msignal/MExtractTimeAndCharge.cc:
     58     - in a possible case that the hi-gain etraction failed but the
     59       lo-gain should be extracted we start one slice in front
     60       of the lowest possible hi-gain time.
     61
    4762
    4863
  • trunk/MagicSoft/Mars/datacenter/macros/plotstat.C

    r7558 r8207  
    11/* ======================================================================== *\
     2! $Name: not supported by cvs2svn $:$Id: plotstat.C,v 1.4 2006-11-02 17:44:08 tbretz Exp $
     3! --------------------------------------------------------------------------
    24!
    35! *
     
    443445    cx.SetFrameBorderMode(0);
    444446    cx.SetFillColor(kWhite);
    445     cx.Divide(8,4);
     447    cx.Divide(9,5);
    446448    cx.cd(1);
    447449    DrawLegend(h);
  • trunk/MagicSoft/Mars/mmain/MEventDisplay.cc

    r8188 r8207  
    11/* ======================================================================== *\
     2! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.56 2006-11-02 17:44:09 tbretz Exp $
     3! --------------------------------------------------------------------------
    24!
    35! *
     
    1820!   Author(s): Thomas Bretz, 10/2001 <mailto:tbretz@astro.uni-wuerzburg.de>
    1921!
    20 !   Copyright: MAGIC Software Development, 2000-2003
     22!   Copyright: MAGIC Software Development, 2000-2006
    2123!
    2224!
     
    8284#include "MBadPixelsTreat.h"           // MBadPixelsTreat
    8385#include "MFillH.h"                    // MFillH
    84 #include "MExtractSignal.h"            // MExtractsignal
    8586#include "MMcCalibrationUpdate.h"      // MMcCalibrationUpdate
    8687#include "MCalibrateData.h"            // MCalibrateData
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc

    r8192 r8207  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.58 2006-11-01 15:48:31 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.59 2006-11-02 17:44:09 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    294294            //
    295295            // The jitter in the hi-/lo-gain offset ssems to be around +/-0.5
    296             if (deltatimehi>-0.5)
    297                 first = TMath::FloorNint(timehi+numh+fOffsetLoGain+fLoGainStartShift);
    298             //else ???
     296            const Float_t tm = deltatimehi<0 ? -1.+fHiGainFirst : timehi;
     297            first = TMath::FloorNint(tm+numh+fOffsetLoGain+fLoGainStartShift);
    299298
    300299            if (first<0)
Note: See TracChangeset for help on using the changeset viewer.