Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-05-02 05:09:29

0001 #!/bin/bash
0002 
0003 ############################################################################################################
0004 ### HLT STEP in a different release
0005 
0006 conditions=$1
0007 era=$2
0008 hlt=$3
0009 
0010 echo ">>> Running HLT:${hlt} step in " $CMSSW_BASE
0011 
0012 config_name=hlt_"$(echo "$hlt" | tr ':' _ | tr '@' _ )".py
0013 cmsDriver.py  --python_filename $config_name --eventcontent RAWSIM \
0014 --customise Configuration/DataProcessing/Utils.addMonitoring \
0015 --datatier GEN-SIM-RAW --fileout file:step3.root \
0016 --conditions $conditions \
0017 --customise_commands 'process.source.bypassVersionCheck = cms.untracked.bool(True)' \
0018 --step 'HLT:'$hlt --geometry DB:Extended --filein file:step2.root --era $era --mc -n -1 --no_exec
0019 
0020 if [ $? -ne 0 ]; then
0021     exit 1;
0022 fi
0023 
0024 cmsRun $config_name
0025 
0026 if [ $? -ne 0 ]; then
0027     exit 1;
0028 fi
0029 
0030 ############################################################################################################