Changeset 9044 for trunk/MagicSoft


Ignore:
Timestamp:
07/27/08 15:09:59 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9041 r9044  
    1919                                                 -*-*- END OF LINE -*-*-
    2020
     21 2008/07/27 Thomas Bretz
     22
     23   * merpp.cc:
     24     - added include of TClass to work with root 5.20
     25
     26   * mbase/MParEmulated.[h,cc]:
     27     - for root 5.20/00 we have to use TVirtualStreamer instead
     28       of TStremaer
     29
     30   * mbase/MStatusDisplay.cc:
     31     - the workaround had to be fixed because since we don't change
     32       gPad for printing anymore all following line and text drawings
     33       reffered to the wrong gPad
     34
     35   * datacenter/scripts/doqualityplots, datacenter/scripts/dowebplots:
     36     - also antialias text
     37     - save as interlaced png
     38
     39   * mbase/MThread.h:
     40     - use a reinterpret_cast when returning the Thresd's result
     41       (this gave a correct warning on 32bit systems)
     42
     43   * mhbase/MH3.h:
     44     - when available return the histogram title as title (without axis)
     45     - implemented GetFullTitle member function to return the full title
     46
     47
     48
    2149 2008/07/25 Thomas Bretz
    2250
     
    4068   * mtools/MTFillMatrix.[h,cc]:
    4169     - added a maximum number the eventloop is running over
     70
     71   * mjobs/MSequence.cc:
     72     - replaced gFile by gDirectory
    4273
    4374
  • trunk/MagicSoft/Mars/NEWS

    r9038 r9044  
    55 ;general
    66
    7    * should work now with root 5.20/00
     7   * should work now with root 5.20/00 (please note that root 5.20/00
     8     we encounter crahses in the status display which are ot yet
     9     understood)
    810
    911   * Sequences and Datasets are now stored as "MDataSet" and "MSequence"
  • trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots

    r8482 r9044  
    7777
    7878echo "producing png files: " >> $scriptlog 2>&1
    79 pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
     79pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
    8080
    8181echo "removing temporary dir..." >> $scriptlog 2>&1
  • trunk/MagicSoft/Mars/datacenter/scripts/dowebplots

    r8482 r9044  
    123123
    124124   echo "converting plots to png..." >> $scriptlog 2>&1
    125    pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
     125   pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
    126126   
    127127   echo "removing temporary dir..." >> $scriptlog 2>&1
  • trunk/MagicSoft/Mars/mbase/MThread.h

    r8842 r9044  
    3030
    3131        MThread *th = (MThread*)arg;
    32         return (void*)th->Thread();
     32        return reinterpret_cast<void*>(th->Thread());
    3333    }
    3434
  • trunk/MagicSoft/Mars/mhbase/MH3.h

    r8893 r9044  
    152152    void SetTitle(const char *title);
    153153
     154    const char *GetTitle() const { return fHist ? fHist->GetTitle() : static_cast<const char *>(fTitle); }
     155    const TString &GetFullTitle() const { return fTitle; }
     156
    154157    void Draw(Option_t *opt=NULL);
    155158    void Paint(Option_t *opt="");
Note: See TracChangeset for help on using the changeset viewer.