Ignore:
Timestamp:
03/01/06 18:12:55 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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;
Note: See TracChangeset for help on using the changeset viewer.