Changeset 5449
- Timestamp:
- 11/22/04 13:22:10 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5448 r5449 21 21 -*-*- END OF LINE -*-*- 22 22 23 2004/11/22: Thomas Bretz 24 25 * msignal/MExtractTimeAndChargeDigitalFilter.cc: 26 - added check for \015 character in filename 27 28 29 23 30 2004/11/22: Abelardo Moralejo 24 31 … … 45 52 46 53 54 47 55 2004/11/18: Hendrik Bartko 48 56 49 57 * msignal/MC_weights_2GSamples.dat: 50 58 - new weights file for MC simulations of the 2 GSamples FADCs 59 51 60 52 61 … … 77 86 padding 78 87 79 * manalysis/Makefile 80 AnalysisLinkDef.h 88 * manalysis/Makefile, manalysis/AnalysisLinkDef.h 81 89 - add MMakePadHistograms 82 90 … … 84 92 - add member function ReadPadHistograms() 85 93 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]: 89 96 - move printout of cut values from SetCuts() to PreProcess() 90 97 91 98 * mimage/MImgCleanStd.[h,cc] 92 99 - print name of MPedPhotCam container in PreProcess() 100 93 101 94 102 -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilter.cc
r5373 r5449 566 566 Bool_t MExtractTimeAndChargeDigitalFilter::ReadWeightsFile(TString filename) 567 567 { 568 // This is a fix for TEnv files edited with windows editors 569 filename.ReplaceAll("\015", ""); 570 568 571 fAmpWeightsHiGain .Set(fBinningResolutionHiGain*fWindowSizeHiGain); 569 572 fAmpWeightsLoGain .Set(fBinningResolutionLoGain*fWindowSizeLoGain); … … 689 692 690 693 *fLog << inf << " File contains " << fWindowSizeHiGain << " hi-gain slices "; 691 *fLog << " andwith a resolution of " << fBinningResolutionHiGain << endl;694 *fLog << "with a resolution of " << fBinningResolutionHiGain << endl; 692 695 693 696 *fLog << inf << " File contains " << fWindowSizeLoGain << " lo-gain slices "; 694 *fLog << " andwith a resolution of " << fBinningResolutionLoGain << endl;697 *fLog << "with a resolution of " << fBinningResolutionLoGain << endl; 695 698 696 699 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.