/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/L1Trigger/test/bootstrap.com
25 строк
678 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
#!/bin/sh lflag=0 while getopts 'lh' OPTION do case $OPTION in l) lflag=1 ;; h) echo "Usage: [-l]" echo " -l: use mapping xml files in local CMSSW area" exit ;; esac done if [ ${lflag} -eq 0 ] then echo "Setting up sqlite_file:l1config.db with xml files from $CMSSW_RELEASE_BASE" cmscond_bootstrap_detector -D L1T -f $CMSSW_RELEASE_BASE/src/CondTools/L1Trigger/test/dbconfiguration.xml -b $CMSSW_RELEASE_BASE else echo "Setting up sqlite_file:l1config.db with xml files from $CMSSW_BASE" cmscond_bootstrap_detector -D L1T -f $CMSSW_BASE/src/CondTools/L1Trigger/test/dbconfiguration.xml -b $CMSSW_BASE fi exit