1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
numev=20
tnum=11
DQMSEQUENCE=DQM
step=a
eval `scramv1 r -sh`
#cmsDriver.py test_${tnum}_${step}_1 -s RAW2DIGI,RECO,${DQMSEQUENCE} -n ${numev} --eventcontent DQM --datatier DQMIO --conditions auto:com10 --filein file:/afs/cern.ch/cms/CAF/CMSCOMM/COMM_DQM/DQMTest/MinimumBias__RAW__v1__165633__1CC420EE-B686-E011-A788-0030487CD6E8.root --data --customise DQMServices/Components/test/customDQM.py --no_exec --python_filename=test_${tnum}_${step}_1.py
cmsDriver.py test_${tnum}_${step}_1 -s RAW2DIGI,RECO,${DQMSEQUENCE} -n ${numev} --eventcontent DQM --datatier DQMIO --conditions 91X_dataRun2_v3 --era Run2_2016 --filein file:/eos/uscms/store/user/wangz/data/RAW_singleElectron.root --data --no_exec --python_filename=test_${tnum}_${step}_1.py
cmsRun -e test_${tnum}_${step}_1.py 2>&1 | tee p${tnum}.1.log
if [ $? -ne 0 ]; then
return 1
fi
mv FrameworkJobReport{,_${tnum}_${step}_1}.xml
|