Changeset 7558 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
03/01/06 18:12:55 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7557 r7558  
    6464       they are not yet tested.
    6565
     66   * datacenter/macros/plotstat.C:
     67     - the periods were wrong by one -- fixed.
     68
    6669
    6770
  • trunk/MagicSoft/Mars/datacenter/macros/plotstat.C

    r7542 r7558  
    337337    MTime from;
    338338
    339     while (past<now)
     339    while (1)
    340340    {
    341341        if (past.GetMagicPeriod()!=period)
     
    343343            period = past.GetMagicPeriod();
    344344
    345             if (period>=first && period<=last)
     345            if (period>first && period-1<=last)
    346346            {
    347347                TString a = from.GetSqlDateTime();
     
    349349
    350350                for (int i=0; i<8; i++)
    351                     h[i].Fill(period, GetTime(serv, query[i], a, b));
     351                    h[i].Fill(period-1, GetTime(serv, query[i], a, b));
    352352            }
     353
     354            if (past>now)
     355                break;
    353356
    354357            from = past;
  • trunk/MagicSoft/Mars/mpointing/MHSrcPosCam.cc

    r7553 r7558  
    7171    fHist.SetDirectory(NULL);
    7272    fHist.UseCurrentStyle();
     73    fHist.GetXaxis()->CenterTitle();
     74    fHist.GetYaxis()->CenterTitle();
     75    fHist.SetContour(99);
     76
    7377
    7478    MBinning bins;
    75     bins.SetEdges(51, -0.2499, 0.2499);
     79    bins.SetEdges(51, -0.2499, 0.2499); // bin=0.01ø  ~0.5SE
    7680
    7781    MH::SetBinning(&fHist, &bins, &bins);
     
    153157}
    154158
     159void MHSrcPosCam::Paint(Option_t *)
     160{
     161    MH::SetPalette("glow1");
     162}
     163
    155164// --------------------------------------------------------------------------
    156165//
     
    162171    pad->SetBorderMode(0);
    163172
    164     AppendPad();
    165 
    166173    //pad->Divide(2,2);
    167174
     
    172179    gPad->SetGridy();
    173180
    174     MH::SetPalette("glow1");
    175181    fHist.Draw("colz");
     182
     183    AppendPad();
    176184}
    177185
  • trunk/MagicSoft/Mars/mpointing/MHSrcPosCam.h

    r7553 r7558  
    4848
    4949    // TObject
     50    void Paint(Option_t *option="");
    5051    void Draw(Option_t *option="");
    5152
Note: See TracChangeset for help on using the changeset viewer.