Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:43

0001 #!/bin/bash
0002 
0003 from=120000
0004 
0005 for f in `bash -c "python contentValuesFiles.py --from=$from 2>contentValuesFiles.err"`; do
0006 
0007   python contentValuesToDBS.py --url http://pccmsdqm04.cern.ch:1099 -f "('.*','DQM OFFLINE','Summary')" $f -d
0008 
0009   shift='online'
0010   if [ "`echo $f | grep '/Online/'`" == "" ]; then
0011     shift='offline'
0012   fi
0013   python contentValuesToRR.py  --url http://pccmsdqm04.cern.ch/runregistry/xmlrpc -s $shift $f -d
0014 
0015 done