Changeset 7646 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/21/06 19:29:58 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7645 r7646  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/04/21 Daniel Hoehne
     22
     23   * datacenter/scripts/doqualityplots.C, dowebplots.C:
     24     - fixed bug in usage of pstoimg
     25
     26
    2027
    2128 2006/04/13 Thomas Bretz
  • trunk/MagicSoft/Mars/datacenter/scripts/doqualityplots

    r7501 r7646  
    7373mv -v $name.{root,ps} $webpath  >> $scriptlog 2>&1
    7474
     75echo "creating temporary dir for pstoimg..." >> $scriptlog 2>&1
     76tempwebplotspath=$webpath/tempqualityplots
     77makedir $tempwebplotspath >> $scriptlog 2>&1
     78
    7579echo "producing png files: " >> $scriptlog 2>&1
    76 pstoimg -antialias -flip r270 -density 100 -type png -multipage $psfile >> $scriptlog 2>&1
     80pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage $psfile >> $scriptlog 2>&1
    7781
     82echo "removing temporary dir..." >> $scriptlog 2>&1
     83rmdir -v $tempwebplotspath >> $scriptlog 2>&1
    7884
    7985# second part
  • trunk/MagicSoft/Mars/datacenter/scripts/dowebplots

    r7569 r7646  
    126126   ./showplot -b --save-as-ps=$psfile $rootfile >> $scriptlog 2>&1
    127127
     128   echo "creating temporary dir for pstoimg..." >> $scriptlog 2>&1
     129   temppath=`dirname $rootfile`
     130   tempwebplotspath=$temppath/tempwebplots
     131   makedir $tempwebplotspath >> $scriptlog 2>&1
     132
    128133   echo "converting plots to png..." >> $scriptlog 2>&1
    129    pstoimg -antialias -flip r270 -density 100 -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
     134   pstoimg -antialias -flip r270 -density 100 -tmp $tempwebplotspath -type png -multipage -out=$tabfile $psfile >> $scriptlog 2>&1
     135   
     136   echo "removing temporary dir..." >> $scriptlog 2>&1
     137   rmdir -v $tempwebplotspath >> $scriptlog 2>&1
    130138done
    131139
Note: See TracChangeset for help on using the changeset viewer.