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 NRUNS=$#argv
0005 
0006 echo ${NRUNS}
0007 set i=2
0008 while( ${i} <= ${NRUNS} )
0009 set NRUN=$argv[${i}]
0010 set list=`ls ${DIR}/Global_${NRUN}_*.root`
0011 echo ${list}
0012 hadd Global_${NRUN}.root ${list}
0013 @ i = ${i} + "1"
0014 end
0015