Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:38:30

0001 #!/bin/bash
0002 
0003 
0004 DIRBASE="$CMSSW_BASE/src/Alignment/APEEstimation"
0005 
0006 mv $DIRBASE/hists/plots/ideal/ $DIRBASE/hists/plots/ideal_old/
0007 mv $DIRBASE/hists/plots/data/ $DIRBASE/hists/plots/data_old/
0008 
0009 mkdir $DIRBASE/hists/plots/
0010 mkdir $DIRBASE/hists/plots/ideal/
0011 mkdir $DIRBASE/hists/plots/data/
0012 
0013 
0014 root -l -b $DIRBASE/macros/commandsApeOverview.C
0015 
0016 ps2pdf $DIRBASE/hists/plots/test1.ps $DIRBASE/hists/plots/test1.pdf
0017 ps2pdf $DIRBASE/hists/plots/test2.ps $DIRBASE/hists/plots/test2.pdf
0018 ps2pdf $DIRBASE/hists/plots/test3.ps $DIRBASE/hists/plots/test3.pdf
0019 ps2pdf $DIRBASE/hists/plots/testSummary.ps $DIRBASE/hists/plots/testSummary.pdf
0020 
0021 rm $DIRBASE/hists/plots/*.ps
0022 
0023 mv $DIRBASE/hists/plots/test*.pdf $DIRBASE/hists/plots/ideal/.
0024 
0025 
0026 
0027 root -l -b $DIRBASE/macros/commandsApeOverviewData.C
0028 
0029 ps2pdf $DIRBASE/hists/plots/test1.ps $DIRBASE/hists/plots/test1.pdf
0030 ps2pdf $DIRBASE/hists/plots/test2.ps $DIRBASE/hists/plots/test2.pdf
0031 ps2pdf $DIRBASE/hists/plots/test3.ps $DIRBASE/hists/plots/test3.pdf
0032 ps2pdf $DIRBASE/hists/plots/testSummary.ps $DIRBASE/hists/plots/testSummary.pdf
0033 
0034 rm $DIRBASE/hists/plots/*.ps
0035 
0036 mv $DIRBASE/hists/plots/test*.pdf $DIRBASE/hists/plots/data/.
0037 
0038 
0039