Changeset 8208
- Timestamp:
- 11/02/06 17:54:30 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8207 r8208 60 60 of the lowest possible hi-gain time. 61 61 62 * msignal/MExtractTimeAndChargeDigitalFilter.[h,cc]: 63 - removed obsolete SignalStartBin data members 64 - set last hi-gain extraction slace from 15 to 16 62 65 63 66 -
trunk/MagicSoft/Mars/NEWS
r8187 r8208 31 31 + Changed the lo-gain start shift from 2.5 to 6.0 which gives 32 32 clearly smoother results (to be investigated further) 33 + the hi-gain window was extended to slice 16. This allows extraction 34 of very late pulses in single pixels or of huge hadron showers. 33 35 34 36 - optim: fixed a problem with the optim-macros which was due to a bug -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.cc
r8165 r8208 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndChargeDigitalFilter.cc,v 1.7 4 2006-10-25 18:36:26tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndChargeDigitalFilter.cc,v 1.75 2006-11-02 17:54:22 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 79 79 80 80 const Byte_t MExtractTimeAndChargeDigitalFilter::fgHiGainFirst = 0; 81 const Byte_t MExtractTimeAndChargeDigitalFilter::fgHiGainLast = 1 5;81 const Byte_t MExtractTimeAndChargeDigitalFilter::fgHiGainLast = 16; 82 82 const Byte_t MExtractTimeAndChargeDigitalFilter::fgLoGainFirst = 1; 83 83 const Byte_t MExtractTimeAndChargeDigitalFilter::fgLoGainLast = 14; 84 84 const Int_t MExtractTimeAndChargeDigitalFilter::fgBinningResolutionHiGain = 10; 85 85 const Int_t MExtractTimeAndChargeDigitalFilter::fgBinningResolutionLoGain = 10; 86 const Int_t MExtractTimeAndChargeDigitalFilter::fgSignalStartBinHiGain = 4;87 const Int_t MExtractTimeAndChargeDigitalFilter::fgSignalStartBinLoGain = 4;88 86 const Float_t MExtractTimeAndChargeDigitalFilter::fgOffsetLoGain = 0.95; 89 87 -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.h
r8165 r8208 21 21 static const Int_t fgBinningResolutionHiGain; //! Default for fBinningResolutionHiGain (now set to: 10) 22 22 static const Int_t fgBinningResolutionLoGain; //! Default for fBinningResolutionLoGain (now set to: 10) 23 static const Int_t fgSignalStartBinHiGain; //! Default for fSignalStartBinHiGain (now set to: 4)24 static const Int_t fgSignalStartBinLoGain; //! Default for fSignalStartBinLoGain (now set to: 4)25 23 static const TString fgNameWeightsFile; //! "cosmics_weights.dat" 26 24 static const Float_t fgOffsetLoGain; //! Default for fOffsetLoGain (now set to 1.7)
Note:
See TracChangeset
for help on using the changeset viewer.