Changeset 4834 for trunk/MagicSoft


Ignore:
Timestamp:
09/02/04 15:33:16 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mimage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/MHImagePar.cc

    r4710 r4834  
    8888    MBinning bins;
    8989
    90     bins.SetEdges(75, 0, 150);
     90    bins.SetEdges(61, 0, 60);
    9191    bins.Apply(fHistSatHi);
    9292    bins.Apply(fHistSatHi);
     
    134134}
    135135
     136void MHImagePar::Paint(Option_t *)
     137{
     138    TVirtualPad *savepad = gPad;
     139    if (fHistSatHi.GetEntries()>0)
     140    {
     141        gPad->cd(1);
     142        gPad->SetLogy();
     143    }
     144    gPad = savepad;
     145}
     146
    136147// --------------------------------------------------------------------------
    137148//
     
    151162    pad->cd(1);
    152163    gPad->SetBorderMode(0);
    153     /*
    154      gPad->SetLogy();
    155      TAxis &x = *fHistSatHi.GetXaxis();
    156      x.SetRangeUser(0.0, x.GetXmax());
    157      fHistSatHi.SetMinimum(0.1);
    158      fHistSatLo.SetMinimum(0.1);
    159      fHistSatHi.SetMaximum(0.1);
    160      fHistSatLo.SetMaximum(0.1);
    161      */
    162164    MH::DrawSame(fHistSatHi, fHistSatLo, "Saturating Pixels");
     165
     166    fHistSatHi.SetMinimum(-1111); // switch off to allow log-scale
     167    fHistSatLo.SetMinimum(-1111); // switch off to allow log-scale
     168    fHistSatLo.SetMaximum(0.1);   // dummy value to allow log-scale
    163169
    164170    pad->cd(2);
  • trunk/MagicSoft/Mars/mimage/MHImagePar.h

    r4710 r4834  
    3232    TH1F &GetHistIslands() { return fHistIslands; }
    3333
    34     void Draw(Option_t *opt=NULL);
     34    void Paint(Option_t *opt="");
     35    void Draw(Option_t *opt="");
    3536
    3637    ClassDef(MHImagePar, 1) // Histograms of image parameters
Note: See TracChangeset for help on using the changeset viewer.