Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:38

0001 #!/bin/bash
0002 function die { echo $1: status $2; exit $2; }
0003 
0004 echo -e "Content of the current directory is: "`ls .`
0005 INPUTFILE=alignments_MP.db
0006 
0007 # Check if the file exists
0008 if [ ! -f "$INPUTFILE" ]; then
0009     echo "Error: $INPUTFILE does not exist."
0010     exit 1
0011 fi
0012 
0013 (cmsRun ${SCRAM_TEST_PATH}/AlignmentRcdChecker_cfg.py inputSqliteFile=${INPUTFILE}) || die 'failed running AlignmentRcdChecker' $?
0014 rm $INPUTFILE