- Timestamp:
- 08/02/08 12:15:18 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/NEWS
r9068 r9069 2 2 3 3 == <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) 4 13 5 14 ;general … … 28 37 * MReadTree can now read also files not written by MARS and store 29 38 the data encapsulated in emulated MParContainers 30 31 * Added the median number of photo electrons from the calibration32 pulses to the db (fMedNumPheInner, fMedNumPheOuter) and the relative33 error of their raw counts (fRelChargeRmsInner, fRelChargeRmsOuter)34 39 35 40 * added a new starguider calibration valid since 15.1.08 -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc
r8891 r9069 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1. 69 2008-05-15 18:37:27tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.70 2008-08-02 11:11:21 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 104 104 using namespace std; 105 105 106 const Float_t MExtractTimeAndCharge::fgLoGainStartShift = - 2.5;106 const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -1.0; // was -2.5 107 107 const UInt_t MExtractTimeAndCharge::fgLoGainSwitch = 120; 108 108 -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.h
r8362 r9069 35 35 UInt_t GetLoGainSwitch () const { return fLoGainSwitch; } 36 36 37 void SetLoGainStartShift( const Float_t f=fgLoGainStartShift ) { fLoGainStartShift = f + fOffsetLoGain; }37 void SetLoGainStartShift( const Float_t f=fgLoGainStartShift ) { fLoGainStartShift = f; } 38 38 void SetLoGainSwitch ( const UInt_t i=fgLoGainSwitch ) { fLoGainSwitch = i; } 39 39 -
trunk/MagicSoft/Mars/msignal/MExtractor.cc
r8907 r9069 358 358 void MExtractor::Print(Option_t *o) const 359 359 { 360 if (IsA()==MExtractor::Class()) 361 *fLog << GetDescriptor() << ":" << endl; 360 *fLog << GetDescriptor() << ":" << endl; 362 361 363 362 *fLog << " Hi Gain Range: " << Form("%2d %2d", fHiGainFirst, fHiGainLast) << endl;
Note:
See TracChangeset
for help on using the changeset viewer.