Ignore:
Timestamp:
12/11/06 11:43:32 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpedestal/MHPedestalCor.cc

    r8152 r8218  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1.1 2006-10-24 08:09:26 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MHPedestalCor.cc,v 1.2 2006-12-11 11:43:32 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    9696
    9797    MBinning binsx(15, -0.5, 14.5);
    98     MH::SetBinning(&fProf,  &binsx);
     98    MH::SetBinning(&fProf, &binsx);
    9999}
    100100
     
    119119
    120120    Int_t fCheckWinFirst = 0;
    121     Int_t fCheckWinLast  = (ns-1)+1;
     121    Int_t fCheckWinLast  = ns;
    122122
    123123    Int_t fExtractWinFirst = 17;
    124     Int_t fExtractWinLast  = (ns-1)+1;
     124    Int_t fExtractWinLast  = ns;
    125125
    126126    Float_t fMaxSignalVar = 40;
     
    135135
    136136        // 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++)
    138138        {
    139139            if (*slice > max)
     
    227227    pad->SetFrameBorderMode(0);
    228228
    229     pad->Divide(2, 2, 0.001, 0.001);
     229    //pad->Divide(2, 2, 0.001, 0.001);
    230230
    231231    AppendPad();
     
    253253
    254254    pad->cd(4);*/
     255
    255256    gPad->SetBorderMode(0);
    256257    gPad->SetFrameBorderMode(0);
Note: See TracChangeset for help on using the changeset viewer.