ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/rootEWKanalyzer/submitAllJobs.py
Revision: 1.3
Committed: Mon Sep 20 14:23:15 2010 UTC (14 years, 7 months ago) by jueugste
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +11 -11 lines
Log Message:
Update (plus EWK and HWW analysis added)

File Contents

# Content
1 #! /usr/bin/python
2
3 import os
4
5 name = [##"Data",
6 "QCDem2030","QCDem3080", "QCDem80170",
7 "QCDbc2e2030",
8 "QCDbc2e3080",
9 "QCDbc2e80170",
10 "GJ1520", "GJ2030", "GJ30",
11 ## "QCD15",
12 "Wenu",
13 "TTbar",
14 "Wtaunu",
15 "Zee", "Ztautau",
16 ## "Data_Commissioning",
17 ## "Data_Run2010A-Jun14th",
18 ## "Data_Run2010A-PromptReco",
19 ## "Data_Run2010A-PromptReco_JSON_139347-139459"
20 ]
21 number = [#10,
22 19, 6, 10, # QCD
23 8,
24 11,
25 11, # QCD
26 11, 9, 8, # GJ
27 # 100, # QCD 15
28 50, # Wenu
29 12, # TT bar
30 30, # Wtaunu
31 50, 31, # Zee, Ztautau
32 ## 10,
33 ## 7,
34 ## 8,
35 ## 9
36 ]
37
38 for i in range(len(name)):
39 os.system('echo rm '+name[i]+'/log/'+name[i]+'_*')
40 os.system('rm '+name[i]+'/log/'+name[i]+'_*')
41 for j in range(number[i]):
42 ##for j in range(10):
43 os.system('qsub '+name[i]+'/src/submit_'+str(j)+'.src')
44 os.system('echo qsub '+name[i]+'/src/submit_'+str(j)+'.src')
45