Changeset 4704 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
08/23/04 13:11:40 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHFalseSource.cc

    r4358 r4704  
    344344
    345345            // Source dependant hillas parameters
    346             if (!hsrc.Calc(hil))
     346            if (!hsrc.Calc(*hil))
    347347            {
    348348                *fLog << warn << "Calculation of MHillasSrc failed for x=" << cx[ix] << " y=" << cy[iy] << endl;
     
    566566
    567567    // Create catalog...
    568     MAstroCatalog stars;
    569     stars.SetLimMag(9);
    570     stars.SetGuiActive(kFALSE);
    571     stars.SetRadiusFOV(maxr);
    572     stars.SetRaDec(fRa*TMath::DegToRad()*15, fDec*TMath::DegToRad());
    573     stars.ReadBSC("bsc5.dat");
    574 
    575     TObject *o = (MAstroCatalog*)stars.Clone();
    576     o->SetBit(kCanDelete);
    577 
    578     return o;
     568    MAstroCatalog *stars = new MAstroCatalog;
     569    stars->SetLimMag(9);
     570    stars->SetGuiActive(kFALSE);
     571    stars->SetRadiusFOV(maxr);
     572    stars->SetRaDec(fRa*TMath::DegToRad()*15, fDec*TMath::DegToRad());
     573    stars->ReadBSC("bsc5.dat");
     574
     575    *fLog << err << "FIXME - The catalog will never be deleted, because this crashes!" << endl;
     576
     577    stars->SetBit(kCanDelete);
     578
     579    return stars;
    579580}
    580581
     
    591592
    592593    pad->Divide(1, 2, 0, 0.03);
     594
     595    *fLog << err << "FIXME - Plotting the catalog is broken!" << endl;
    593596
    594597    TObject *catalog = GetCatalog();
     
    610613    h3->Draw("colz");
    611614    h3->SetBit(kCanDelete);
    612     catalog->Draw("mirror same");
     615    catalog->Draw("mirror same *");
    613616
    614617    // PAD #2
     
    624627    h4->Draw("colz");
    625628    h4->SetBit(kCanDelete);
    626     catalog->Draw("mirror same");
     629    catalog->Draw("mirror same *");
    627630
    628631    // PAD #3
     
    636639    h2->Draw("colz");
    637640    h2->SetBit(kCanDelete);
    638     catalog->Draw("mirror same");
     641    catalog->Draw("mirror same *");
    639642
    640643    // Initialize lower part
     
    663666    h5->Draw("colz");
    664667    h5->SetBit(kCanDelete);
    665     catalog->Draw("mirror same");
     668    catalog->Draw("mirror same *");
    666669
    667670    // PAD #6
     
    674677    h0->Draw("colz");
    675678    h0->SetBit(kCanDelete);
    676     catalog->Draw("mirror same");
     679    catalog->Draw("mirror same *");
    677680}
    678681
     
    961964    hists->Draw("colz");
    962965    hists->SetBit(kCanDelete);
    963     catalog->Draw("mirror same");
     966    catalog->Draw("mirror same *");
    964967    c->cd(2);
    965968    gPad->SetBorderMode(0);
    966969    hist->Draw("colz");
    967970    hist->SetBit(kCanDelete);
    968     catalog->Draw("mirror same");
     971    catalog->Draw("mirror same *");
    969972    c->cd(3);
    970973    gPad->SetBorderMode(0);
    971974    histb->Draw("colz");
    972975    histb->SetBit(kCanDelete);
    973     catalog->Draw("mirror same");
     976    catalog->Draw("mirror same *");
    974977    c->cd(4);
    975978    gPad->Divide(1,3, 0, 0);
Note: See TracChangeset for help on using the changeset viewer.