Ignore:
Timestamp:
05/08/03 18:00:03 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mimage
Files:
2 edited

Legend:

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

    r2062 r2098  
    242242Bool_t MHHillas::Fill(const MParContainer *par, const Stat_t w)
    243243{
     244    if (!par)
     245    {
     246        *fLog << err << "MHHillas::Fill: Pointer (!=NULL) expected." << endl;
     247        return kFALSE;
     248    }
     249
    244250    const MHillas &h = *(MHillas*)par;
    245251
     
    247253    const Double_t scale = fUseMmScale ? 1 : fMm2Deg;
    248254
    249     fLength ->Fill(scale*h.GetLength(), w);
    250     fWidth  ->Fill(scale*h.GetWidth(), w);
    251     fDistC  ->Fill(scale*d, w);
    252     fCenter ->Fill(scale*h.GetMeanX(), scale*h.GetMeanY(), w);
    253     fDelta  ->Fill(kRad2Deg*h.GetDelta(), w);
    254     fSize   ->Fill(h.GetSize(), w);
     255    fLength->Fill(scale*h.GetLength(), w);
     256    fWidth ->Fill(scale*h.GetWidth(), w);
     257    fDistC ->Fill(scale*d, w);
     258    fCenter->Fill(scale*h.GetMeanX(), scale*h.GetMeanY(), w);
     259    fDelta ->Fill(kRad2Deg*h.GetDelta(), w);
     260    fSize  ->Fill(h.GetSize(), w);
    255261
    256262    return kTRUE;
  • trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc

    r2043 r2098  
    130130Bool_t MHHillasSrc::Fill(const MParContainer *par, const Stat_t w)
    131131{
     132    if (!par)
     133    {
     134        *fLog << err << "MHHillasSrc::Fill: Pointer (!=NULL) expected." << endl;
     135        return kFALSE;
     136    }
     137
    132138    const MHillasSrc &h = *(MHillasSrc*)par;
    133139
     
    211217    pad->cd(4);
    212218    gPad->SetBorderMode(0);
    213     gPad->SetLogy();
     219    //gPad->SetLogy();
    214220    fCosDA->Draw();
    215221
    216222    pad->Modified();
    217223    pad->Update();
     224}
     225
     226void MHHillasSrc::Paint(Option_t *opt)
     227{
     228    if (fCosDA->GetEntries()==0)
     229        return;
     230
     231    TVirtualPad *savepad = gPad;
     232    gPad->cd(4);
     233    gPad->SetLogy();
     234    gPad = savepad;
    218235}
    219236
Note: See TracChangeset for help on using the changeset viewer.