Changeset 9069 for trunk


Ignore:
Timestamp:
08/02/08 12:15:18 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/NEWS

    r9068 r9069  
    22
    33== <cvs> ==
     4
     5 ;Database
     6
     7   * Added the median number of photo electrons from the calibration
     8     pulses to the db (fMedNumPheInner, fMedNumPheOuter) and the relative
     9     error of their raw counts (fRelChargeRmsInner, fRelChargeRmsOuter)
     10
     11   * Added fTotOnTime, which is the on-time as given by the run-headers
     12     (in contradiction to fAbsOnTime which comes from CC)
    413
    514 ;general
     
    2837   * MReadTree can now read also files not written by MARS and store
    2938     the data encapsulated in emulated MParContainers
    30 
    31    * Added the median number of photo electrons from the calibration
    32      pulses to the db (fMedNumPheInner, fMedNumPheOuter) and the relative
    33      error of their raw counts (fRelChargeRmsInner, fRelChargeRmsOuter)
    3439
    3540   * added a new starguider calibration valid since 15.1.08
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc

    r8891 r9069  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.69 2008-05-15 18:37:27 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.70 2008-08-02 11:11:21 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    104104using namespace std;
    105105
    106 const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -2.5;
     106const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -1.0;  // was -2.5
    107107const UInt_t  MExtractTimeAndCharge::fgLoGainSwitch     =  120;
    108108
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.h

    r8362 r9069  
    3535  UInt_t  GetLoGainSwitch      () const { return fLoGainSwitch;     }
    3636
    37   void SetLoGainStartShift( const Float_t f=fgLoGainStartShift ) { fLoGainStartShift = f + fOffsetLoGain;  }
     37  void SetLoGainStartShift( const Float_t f=fgLoGainStartShift ) { fLoGainStartShift = f;  }
    3838  void SetLoGainSwitch    ( const UInt_t  i=fgLoGainSwitch     ) { fLoGainSwitch     = i; }
    3939
  • trunk/MagicSoft/Mars/msignal/MExtractor.cc

    r8907 r9069  
    358358void MExtractor::Print(Option_t *o) const
    359359{
    360     if (IsA()==MExtractor::Class())
    361         *fLog << GetDescriptor() << ":" << endl;
     360    *fLog << GetDescriptor() << ":" << endl;
    362361
    363362    *fLog << " Hi Gain Range:      " << Form("%2d %2d", fHiGainFirst, fHiGainLast) << endl;
Note: See TracChangeset for help on using the changeset viewer.