File indexing completed on 2024-04-06 12:32:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 @ bcrstart=-5
0016 @ bcrend=3
0017 @ i=$bcrstart
0018
0019 while ( $i <= $bcrend )
0020 echo "===================> Step1: executing EDProducer (MixingModule) for bcr $i"
0021
0022 /bin/rm /tmp/testsuite1_{$i}_cfg.py >& /dev/null
0023 sed "s/12345/$i/" testsuite1_cfg.py >/tmp/testsuite1_{$i}_cfg.py
0024 cmsRun /tmp/testsuite1_{$i}_cfg.py
0025
0026 echo "===================> Step2: executing EDAnalyser (TestSuite) to create histos for bcr $i"
0027 /bin/rm /tmp/testsuite2_{$i}_cfg.py > &/dev/null
0028 sed "s/12345/$i/" testsuite2_cfg.py | sed "s/23456/$bcrstart/" | sed "s/34567/$bcrend/" >/tmp/testsuite2_{$i}_cfg.py
0029 cmsRun /tmp/testsuite2_{$i}_cfg.py
0030
0031 echo "===================> Step2a: histogram comparison"
0032 root -b -p -q DoCompare.C\(\"histos\",\"../data/MMValHistos_$i\"\)
0033 @ i++
0034 end
0035
0036 echo "===================> Step3: Global comparisons "
0037 cmsRun globalTest1_cfg.py
0038 cmsRun globalTest2_cfg.py
0039
0040 root -b -p -q DoCompare.C\(\"GlobalHistos\",\"../data/GlobalHistos\"\)
0041
0042 echo "===================> MM Validation finished "