/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/SiStrip/test/test_Timing.sh
143 строки
4 KB
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
#!/bin/sh function write_dbconfigurationOrconXML() { [ -e ${2} ] && rm -f ${2} echo "<?xml version=\"1.0\" ?>" > ${2} echo "<dbconfiguration>" >> ${2} echo "<detector name='STRIP' offline_connect='$1'>">> ${2} echo "<poolsetup mappingdir='src/CondFormats/SiStripObjects/xml' mappingfile='*.xml' library='CondFormatsSiStripObjects' />">> ${2} echo "</detector>">> ${2} echo "</dbconfiguration>">> ${2} } function test_db() { [ $# = 0 ] && echo -e "usage: test_db -mode<write/read> -what<gain,ped,noise,pednoise,modulehv,badstrip,threshold> -stream<blob,noblob> <-debug>\n" mode="" [ `echo $@ | grep -c "\-write[ ]*"` = 1 ] && mode=write [ `echo $@ | grep -c "\-read[ ]*"` = 1 ] && mode=read [ "$mode" != "write" ] && [ "$mode" != "read" ] && return blobflag=noblob [ `echo $@ | grep -c "\-blob[ ]*"` = 1 ] && blobflag=blob [ `echo $@ | grep -c "\-badstrip[ ]*"` = 1 ] && module=badstrip [ `echo $@ | grep -c "\-threshold[ ]*"` = 1 ] && module=threshold [ `echo $@ | grep -c "\-modulehv[ ]*"` = 1 ] && module=modulehv [ `echo $@ | grep -c "\-gain[ ]*"` = 1 ] && module=gain [ `echo $@ | grep -c "\-ped[ ]*"` = 1 ] && module=ped [ `echo $@ | grep -c "\-noise[ ]*"` = 1 ] && module=noise debugflag="false" [ `echo $@ | grep -c "\-debug[ ]*"` = 1 ] && debugflag=debug logfile=${mode}_${module}_${blobflag}.log dbfile=${workdir}/${module}_${blobflag}.db dbcatalog=${workdir}/${module}_${blobflag}.xml cfgfile=${workdir}/${mode}_${module}_${blobflag}.cfg eval `scramv1 runtime -sh` SealPluginRefresh if [ ${blobflag} == "blob" ] && [ "${mode}" == "write" ]; then #cp dbfile.db ${dbfile} [ -e ${dbfile} ] && rm -f ${dbfile} #echo "cmscond_bootstrap_detector.pl --offline_connect sqlite_file:$dbfile --auth ${CORAL_AUTH_PATH}/authentication.xml STRIP " dbconfigurationOrconXML="./dbconfiguration-orcon.xml" #cmscond_bootstrap_detector.pl --offline_connect sqlite_file:$dbfile --auth ${CORAL_AUTH_PATH}/authentication.xml STRIP write_dbconfigurationOrconXML sqlite_file:$dbfile $dbconfigurationOrconXML cmscond_bootstrap_detector -P ~/conddb -D STRIP -f ./dbconfiguration-orcon.xml -b $CMSSW_BASE [ -e ${dbconfigurationOrconXML} ] && rm -f ${dbconfigurationOrconXML} echo " " fi cat template_Timing_${mode}.cfg | sed \ -e "s@insert_workdir@${workdir}@" \ -e "s@insert_logfile@${logfile}@" \ -e "s@insert_dbfile@${dbfile}@" \ -e "s@insert_dbcatalog@${dbcatalog}@" \ -e "s@\#${blobflag}@@" \ -e "s@\#${debugflag}[ ]* @@g" \ -e "s@\#${module}[ ]* @@g" \ > ${cfgfile} echo -e "\ncmsRun ${cfgfile} | tee ${workdir}/out \n" cmsRun ${cfgfile} | tee ${workdir}/out export timereport=`grep "Time report complete in" ${workdir}/out | awk '{print $6}'` } function setEnvironment(){ [ -n "$setEnvironment" ] && return setEnvironment=1 echo -e "Creating sqlite db schema from custom mapping" export workdir=/tmp/$USER/$$ export CORAL_AUTH_USER="me" export CORAL_AUTH_PASSWORD="me" if [ ! -n "$CORAL_AUTH_PATH" ]; then export CORAL_AUTH_PATH=/afs/cern.ch/cms/DB/conddb echo -e "\nWARNING: CORAL_AUTH_PATH environment variable is not defined in your shell\n default value will be used CORAL_AUTH_PATH=$CORAL_AUTH_PATH" fi echo -e "workdir $workdir\n" [ -e ${workdir} ] && rm -rf ${workdir} mkdir ${workdir} } #%%%%%%%%%%%%%%%%%%%% # Main #%%%%%%%%%%%%%%%%%%%% setEnvironment if [ "$1" == "doLoop" ]; then i=0 for stream in blob noblob; do for mode in write read; do for what in badstrip gain ped noise threshold; do echo -e "\n\n$mode $what with $stream on geometry ideal\n\n" test_db -$mode -$what -$stream timeis[$i]=$timereport let i++ done done done echo -e "\n\nTime Report\n\n" i=0 for stream in blob noblob; do for mode in write read; do for what in modulehv badstrip gain ped noise threshold; do echo -e "$mode \t$what \twith $stream on geometry ideal \t\t" ${timeis[$i]} let i++ done done done else echo -e "\n[usage]: " echo -e "\n\ttest_Timing.sh doLoop" echo -e "OR\n\tgo to bash\n\t. ./test_Timing.sh \n\t test_db -mode<write/read> -what<modulehv, badstrip,gain,ped,noise,threshold> -stream<blob,noblob> <-debug>\n" fi