Changeset 5449 for trunk


Ignore:
Timestamp:
11/22/04 13:22:10 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5448 r5449  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     23 2004/11/22: Thomas Bretz
     24
     25   * msignal/MExtractTimeAndChargeDigitalFilter.cc:
     26     - added check for \015 character in filename
     27
     28
     29
    2330 2004/11/22: Abelardo Moralejo
    2431
     
    4552
    4653
     54
    4755 2004/11/18: Hendrik Bartko
    4856
    4957   * msignal/MC_weights_2GSamples.dat:
    5058     - new weights file for MC simulations of the 2 GSamples FADCs
     59
    5160
    5261
     
    7786       padding
    7887
    79    * manalysis/Makefile
    80                AnalysisLinkDef.h
     88   * manalysis/Makefile, manalysis/AnalysisLinkDef.h
    8189     - add MMakePadHistograms
    8290
     
    8492     - add member function ReadPadHistograms() 
    8593
    86    * mfilter/MFSelBasic.[h,cc]
    87              MFSelStandard.[h,cc]
    88              MFSelFinal.[h,cc]
     94   * mfilter/MFSelBasic.[h,cc], mfilter/MFSelStandard.[h,cc],
     95     mfilter/MFSelFinal.[h,cc]:
    8996     - move printout of cut values from SetCuts() to PreProcess()
    9097
    9198   * mimage/MImgCleanStd.[h,cc]
    9299     - print name of MPedPhotCam container in PreProcess()
     100
    93101
    94102
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.cc

    r5373 r5449  
    566566Bool_t MExtractTimeAndChargeDigitalFilter::ReadWeightsFile(TString filename)
    567567{
     568    // This is a fix for TEnv files edited with windows editors
     569    filename.ReplaceAll("\015", "");
     570
    568571    fAmpWeightsHiGain .Set(fBinningResolutionHiGain*fWindowSizeHiGain);
    569572    fAmpWeightsLoGain .Set(fBinningResolutionLoGain*fWindowSizeLoGain);
     
    689692
    690693    *fLog << inf << " File contains " << fWindowSizeHiGain << " hi-gain slices ";
    691     *fLog << "and with a resolution of " << fBinningResolutionHiGain << endl;
     694    *fLog << "with a resolution of " << fBinningResolutionHiGain << endl;
    692695
    693696    *fLog << inf << " File contains " << fWindowSizeLoGain << " lo-gain slices ";
    694     *fLog << "and with a resolution of " << fBinningResolutionLoGain << endl;
     697    *fLog << "with a resolution of " << fBinningResolutionLoGain << endl;
    695698
    696699    return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.