Changeset 9044
- Timestamp:
- 07/27/08 15:09:59 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9041 r9044 19 19 -*-*- END OF LINE -*-*- 20 20 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 21 49 2008/07/25 Thomas Bretz 22 50 … … 40 68 * mtools/MTFillMatrix.[h,cc]: 41 69 - added a maximum number the eventloop is running over 70 71 * mjobs/MSequence.cc: 72 - replaced gFile by gDirectory 42 73 43 74 -
trunk/MagicSoft/Mars/NEWS
r9038 r9044 5 5 ;general 6 6 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) 8 10 9 11 * Sequences and Datasets are now stored as "MDataSet" and "MSequence" -
trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots
r8482 r9044 77 77 78 78 echo "producing png files: " >> $scriptlog 2>&1 79 pstoimg -antialias - flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&179 pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1 80 80 81 81 echo "removing temporary dir..." >> $scriptlog 2>&1 -
trunk/MagicSoft/Mars/datacenter/scripts/dowebplots
r8482 r9044 123 123 124 124 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>&1125 pstoimg -antialias -aaliastext -interlaced -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1 126 126 127 127 echo "removing temporary dir..." >> $scriptlog 2>&1 -
trunk/MagicSoft/Mars/mbase/MThread.h
r8842 r9044 30 30 31 31 MThread *th = (MThread*)arg; 32 return (void*)th->Thread();32 return reinterpret_cast<void*>(th->Thread()); 33 33 } 34 34 -
trunk/MagicSoft/Mars/mhbase/MH3.h
r8893 r9044 152 152 void SetTitle(const char *title); 153 153 154 const char *GetTitle() const { return fHist ? fHist->GetTitle() : static_cast<const char *>(fTitle); } 155 const TString &GetFullTitle() const { return fTitle; } 156 154 157 void Draw(Option_t *opt=NULL); 155 158 void Paint(Option_t *opt="");
Note:
See TracChangeset
for help on using the changeset viewer.