File indexing completed on 2024-04-06 12:32:29
0001
0002
0003
0004 if ($?CMSSW_BASE != 1) then
0005 echo "CMS environment not set up"
0006
0007 endif
0008
0009
0010 if ($
0011 echo "Script needs 2 input variable"
0012
0013 endif
0014
0015 set NEW_VERS=$1
0016 set OLD_VERS=$2
0017
0018
0019
0020
0021
0022
0023
0024
0025 set harvest=11
0026
0027
0028 if (-d ${NEW_VERS}_vs_${OLD_VERS}_RelVal) then
0029 echo "Directory already exists"
0030 exit
0031 endif
0032
0033
0034 mkdir ${NEW_VERS}_vs_${OLD_VERS}_RelVal
0035 cd ${NEW_VERS}_vs_${OLD_VERS}_RelVal
0036
0037 cp ../html_indices/TopLevelRelVal.html index.html
0038
0039
0040 mkdir MinBias
0041 mkdir MinBias/SimHits
0042 cp ../html_indices/RelVal_Simhits.html MinBias/SimHits/index.html
0043
0044
0045
0046
0047 cd ../
0048
0049
0050 root -b -q 'RelValMacro.C("'${OLD_VERS}_Startup'","'${NEW_VERS}_Startup'","'DQM_V0001_R000000002__HcalValidation__Harvesting__${OLD_VERS}.root'","'DQM_V0001_R000000002__HcalValidation__Harvesting__${NEW_VERS}.root'","InputRelVal_Low.txt",'${harvest}')'
0051
0052 mv *.gif ${NEW_VERS}_vs_${OLD_VERS}_RelVal/MinBias/SimHits
0053 c
0054
0055
0056 exit