Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:27

0001 #!/bin/csh
0002 
0003 set WebDir='/afs/cern.ch/cms/CAF/CMSALCA/ALCA_HCALCALIB/HCALMONITORING/RDMweb'
0004 
0005 ls ${WebDir} | grep LED_ | sort -r > currentlist
0006 foreach i (`cat currentlist`)
0007 ls ${WebDir}/${i}/*.png > /dev/null
0008 if(${status} == "0") then
0009 foreach k (`ls ${WebDir}/${i}/*.html`)
0010 set j=`basename ${k}`
0011 echo ${j}
0012 cat ${k} | sed 's#cms-cpt-software.web.cern.ch\/cms-cpt-software\/General\/Validation\/SVSuite#cms-conddb-dev.cern.ch\/eosweb\/hcal#g'> ${j}.n
0013 cmsStage -f ${j}.n /store/group/dpg_hcal/comm_hcal/www/HcalRemoteMonitoring/RMT/${i}/${j}
0014 rm ${j}.n
0015 end
0016 endif
0017 end
0018 rm currentlist