/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MillePedeAlignmentAlgorithm/test/test_payload_sanity.sh
14 строк
404 B
mmusich
improve test_payload_sanity
11 фев 2024, 19:19
11 фев 2024, 19:19
3cc467e
Код
Авторство
О чём код?
#!/bin/bash function die { echo $1: status $2; exit $2; } echo -e "Content of the current directory is: "`ls .` INPUTFILE=alignments_MP.db # Check if the file exists if [ ! -f "$INPUTFILE" ]; then echo "Error: $INPUTFILE does not exist." exit 1 fi (cmsRun ${SCRAM_TEST_PATH}/AlignmentRcdChecker_cfg.py inputSqliteFile=${INPUTFILE}) || die 'failed running AlignmentRcdChecker' $? rm $INPUTFILE