Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #!/bin/tcsh
0002 
0003 set DIR=${1}
0004 set LIST=${2}
0005 
0006 foreach i (`cat ${LIST}`)
0007 set NRUN=${i}
0008 set list=`ls ${DIR}/Global_${NRUN}_*.root`
0009 echo ${list}
0010 hadd Global_${NRUN}.root ${list}
0011 @ i = ${i} + "1"
0012 end
0013