/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/Integration/scripts/contentValuesWriter.sh
15 строк
427 B
federico de guio
DQM/Integration package added back to CMSSW
24 июн 2014, 00:42
24 июн 2014, 00:42
2d7e34e
Код
Авторство
О чём код?
#!/bin/bash from=120000 for f in `bash -c "python contentValuesFiles.py --from=$from 2>contentValuesFiles.err"`; do python contentValuesToDBS.py --url http://pccmsdqm04.cern.ch:1099 -f "('.*','DQM OFFLINE','Summary')" $f -d shift='online' if [ "`echo $f | grep '/Online/'`" == "" ]; then shift='offline' fi python contentValuesToRR.py --url http://pccmsdqm04.cern.ch/runregistry/xmlrpc -s $shift $f -d done