Changeset 8218 for trunk/MagicSoft/Mars/mpedestal
- Timestamp:
- 12/11/06 11:43:32 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpedestal/MHPedestalCor.cc
r8152 r8218 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1. 1 2006-10-24 08:09:26tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1.2 2006-12-11 11:43:32 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 96 96 97 97 MBinning binsx(15, -0.5, 14.5); 98 MH::SetBinning(&fProf, 98 MH::SetBinning(&fProf, &binsx); 99 99 } 100 100 … … 119 119 120 120 Int_t fCheckWinFirst = 0; 121 Int_t fCheckWinLast = (ns-1)+1;121 Int_t fCheckWinLast = ns; 122 122 123 123 Int_t fExtractWinFirst = 17; 124 Int_t fExtractWinLast = (ns-1)+1;124 Int_t fExtractWinLast = ns; 125 125 126 126 Float_t fMaxSignalVar = 40; … … 135 135 136 136 // Find the maximum and minimum signal per slice in the high gain window 137 for (Byte_t *slice=slices+fCheckWinFirst; slice< =slices+fCheckWinLast; slice++)137 for (Byte_t *slice=slices+fCheckWinFirst; slice<slices+fCheckWinLast; slice++) 138 138 { 139 139 if (*slice > max) … … 227 227 pad->SetFrameBorderMode(0); 228 228 229 pad->Divide(2, 2, 0.001, 0.001);229 //pad->Divide(2, 2, 0.001, 0.001); 230 230 231 231 AppendPad(); … … 253 253 254 254 pad->cd(4);*/ 255 255 256 gPad->SetBorderMode(0); 256 257 gPad->SetFrameBorderMode(0);
Note:
See TracChangeset
for help on using the changeset viewer.