Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:28

0001 #!/bin/tcsh
0002 rm -f condor_*
0003 # $j inner cone radius 
0004 # $k outer cone radius 
0005 # $i pT hat bin
0006 # 4th argument is run number (in this case 25)
0007 
0008 foreach j (0.5)
0009         foreach k (1.0) 
0010                 foreach i (0_15 15_20 20_30 30_50 50_80 80_120 120_170 170_230 230_300 300_380 380_470 470_600 600_800 800_1000 1000_1400 1400_1800 1800_2200 2200_2600 2600_3000 3000_3500 3500_inf)
0011 
0012                         ./condor-submit-diJetAnalysis.csh $i $j $k 25
0013                         /bin/sleep 2
0014                 end
0015         end
0016 end