Changeset 6364


Ignore:
Timestamp:
02/10/05 19:26:37 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6361 r6364  
    7171
    7272   * mimage/MHillas.h:
    73      - added new Getter GetDeist0 returning the distance to the
     73     - added new Getter GetDist0 returning the distance to the
    7474       camera center
     75
     76   * mhflux/MHFalseSource.cc:
     77     - the scaling in Paint() was nonsense in case we are looking
     78       at on/off-data. Fixed.
    7579
    7680
  • trunk/MagicSoft/Mars/mhflux/MHFalseSource.cc

    r6031 r6364  
    606606                fHistOff->ProjectionZ("AlphaOff_z", maxx, maxx, maxy, maxy);
    607607
    608                 const Int_t f = h0->GetXaxis()->FindFixBin(fBgMean-fAlphaCut/2);
    609                 const Int_t l = h0->GetXaxis()->FindFixBin(fAlphaCut)+f-1;
     608                const Int_t f = h0->GetXaxis()->FindFixBin(fBgMean-1.5*fAlphaCut);
     609                const Int_t l = h0->GetXaxis()->FindFixBin(fAlphaCut*3)+f-1;
    610610                h0->Scale(h1->Integral(f, l)/h0->Integral(f, l));
    611611                //h0->Scale(h1->GetEntries()/h0->GetEntries());
Note: See TracChangeset for help on using the changeset viewer.