ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/VHbb/python/submitThem.py
(Generate patch)

Comparing UserCode/VHbb/python/submitThem.py (file contents):
Revision 1.12 by peller, Mon Oct 1 09:16:34 2012 UTC vs.
Revision 1.28 by peller, Fri Feb 8 14:36:00 2013 UTC

# Line 1 | Line 1
1   #! /usr/bin/env python
2 import os,shutil,sys,pickle,subprocess,ROOT
2   from optparse import OptionParser
3 < from BetterConfigParser import BetterConfigParser
4 < from samplesclass import sample
5 < import getpass
3 > import sys
4 > import time
5 > import os
6 > import shutil
7  
8   parser = OptionParser()
9   parser.add_option("-T", "--tag", dest="tag", default="",
10                        help="Tag to run the analysis with, example '8TeV' uses config8TeV and pathConfig8TeV to run the analysis")
11   parser.add_option("-J", "--task", dest="task", default="",
12 <                      help="Task to be done, i.e. 'dc' for Datacards, 'prep' for preparation of Trees, 'plot' to produce plots or 'eval' to write the MVA output or 'sys' to write regression and systematics. ")
12 >                      help="Task to be done, i.e. 'dc' for Datacards, 'prep' for preparation of Trees, 'plot' to produce plots or 'eval' to write the MVA output or 'sys' to write regression and systematics (or 'syseval' for both). ")
13   parser.add_option("-M", "--mass", dest="mass", default="125",
14                        help="Mass for DC or Plots, 110...135")
15   parser.add_option("-S","--samples",dest="samples",default="",
16                        help="samples you want to run on")
17 + parser.add_option("-F", "--folderTag", dest="ftag", default="",
18 +                      help="Creats a new folder structure for outputs or uses an existing one with the given name")
19 + (opts, args) = parser.parse_args(sys.argv)
20  
21 + import os,shutil,pickle,subprocess,ROOT
22 + ROOT.gROOT.SetBatch(True)
23 + from myutils import BetterConfigParser, Sample, ParseInfo
24 + import getpass
25  
19 (opts, args) = parser.parse_args(sys.argv)
26   if opts.tag == "":
27          print "Please provide tag to run the analysis with, example '-T 8TeV' uses config8TeV and pathConfig8TeV to run the analysis."
28          sys.exit(123)
# Line 25 | Line 31 | if opts.task == "":
31      print "Please provide a task.\n-J prep:\tpreparation of Trees\n-J sys:\t\twrite regression and systematics\n-J eval:\tcreate MVA output\n-J plot:\tproduce Plots\n-J dc:\t\twrite workspaces and datacards"
32      sys.exit(123)
33  
34 +
35 + en = opts.tag
36 +
37   #create the list with the samples to run over
38   samplesList=opts.samples.split(",")
39  
40 < en = opts.tag
41 < configs = ['config%s'%(en),'pathConfig%s'%(en)]
42 <        
40 > timestamp = time.asctime().replace(' ','_').replace(':','-')
41 >
42 > configs = ['%sconfig/general'%(en),'%sconfig/paths'%(en),'%sconfig/plots'%(en),'%sconfig/training'%(en),'%sconfig/datacards'%(en),'%sconfig/cuts'%(en)]
43 >
44 > pathconfig = BetterConfigParser()
45 > pathconfig.read('%sconfig/paths'%(en))
46 >
47 > if not opts.ftag == '':
48 >    tagDir = pathconfig.get('Directories','tagDir')
49 >    DirStruct={'tagDir':tagDir,'ftagdir':'%s/%s/'%(tagDir,opts.ftag),'logpath':'%s/%s/%s/'%(tagDir,opts.ftag,'Logs'),'plotpath':'%s/%s/%s/'%(tagDir,opts.ftag,'Plots'),'limitpath':'%s/%s/%s/'%(tagDir,opts.ftag,'Limits'),'confpath':'%s/%s/%s/'%(tagDir,opts.ftag,'config') }
50 >
51 >    for keys in ['tagDir','ftagdir','logpath','plotpath','limitpath','confpath']:
52 >        try:
53 >            os.stat(DirStruct[keys])
54 >        except:
55 >            os.mkdir(DirStruct[keys])
56 >
57 >    pathfile = open('%sconfig/paths'%(en))
58 >    buffer = pathfile.readlines()
59 >    pathfile.close()
60 >    os.rename('%sconfig/paths'%(en),'%sconfig/paths.bkp'%(en))
61 >    pathfile = open('%sconfig/paths'%(en),'w')
62 >    for line in buffer:
63 >        if line.startswith('plotpath'):
64 >            line = 'plotpath: %s\n'%DirStruct['plotpath']
65 >        elif line.startswith('logpath'):
66 >            line = 'logpath: %s\n'%DirStruct['logpath']
67 >        elif line.startswith('limits'):
68 >            line = 'limits: %s\n'%DirStruct['limitpath']
69 >        pathfile.write(line)
70 >    pathfile.close()
71 >
72 >    #copy config files
73 >    for item in configs:
74 >        shutil.copyfile(item,'%s/%s/%s'%(tagDir,opts.ftag,item.strip(en)))
75 >
76 >
77   print configs
78   config = BetterConfigParser()
79   config.read(configs)
80 +
81   btagLibrary = config.get('BTagReshaping','library')
82   submitDir = os.getcwd()
83   os.chdir(os.path.dirname(btagLibrary))
# Line 43 | Line 87 | shutil.copyfile(os.path.basename(btagLib
87   shutil.copyfile('/scratch/%s/%s'%(getpass.getuser(),os.path.basename(btagLibrary)),btagLibrary)
88   os.chdir(submitDir)
89   logPath = config.get("Directories","logpath")
90 < repDict = {'en':en,'logpath':logPath,'job':''}
90 > #check if the logPath exist. If not exit
91 > if( not os.path.isdir(logPath) ):
92 >        print 'ERROR: ' + logPath + ': dir not found.'
93 >        print 'ERROR: Create it before submitting '
94 >        print 'Exit'
95 >        sys.exit(-1)
96 >
97 > repDict = {'en':en,'logpath':logPath,'job':'','task':opts.task,'queue': 'all.q','timestamp':timestamp}
98   def submit(job,repDict):
99          repDict['job'] = job
100 <        command = 'qsub -V -cwd -q all.q -N %(job)s_%(en)s -o %(logpath)s/%(job)s_%(en)s.out -e %(logpath)s/%(job)s_%(en)s.err runAll.sh %(job)s %(en)s ' %(repDict) + opts.task
100 >        command = 'qsub -V -cwd -q %(queue)s -l h_vmem=6G -N %(job)s_%(en)s%(task)s -o %(logpath)s/%(timestamp)s_%(job)s_%(en)s_%(task)s.out -e %(logpath)s/%(timestamp)s_%(job)s_%(en)s_%(task)s.err runAll.sh %(job)s %(en)s ' %(repDict) + opts.task
101          print command
102          subprocess.call([command], shell=True)
103  
104   if opts.task == 'dc':
105 <    DC_vars = config.items('Limit')
105 >    #DC_vars = config.items('Limit')
106 >    DC_vars= (config.get('LimitGeneral','List')).split(',')
107 >    print DC_vars
108 >
109   if opts.task == 'plot':
110 <    Plot_vars= config.items('Plot')
110 >    Plot_vars= (config.get('Plot_general','List')).split(',')
111  
112   if not opts.task == 'prep':
113      path = config.get("Directories","samplepath")
114 <    infofile = open(path+'/env/samples.info','r')
115 <    info = pickle.load(infofile)
62 <    infofile.close()
63 <
114 >    samplesinfo = config.get("Directories","samplesinfo")
115 >    info = ParseInfo(samplesinfo,path)
116  
117   if opts.task == 'plot':
118 +    repDict['queue'] = 'all.q'
119      for item in Plot_vars:
120 <        if 'ZH%s'%opts.mass in item[0]:
68 <            submit(item[0],repDict)
69 <        elif opts.mass == '' and 'ZH' in item[0]:
70 <            submit(item[0],repDict)
120 >        submit(item,repDict)
121  
122   elif opts.task == 'dc':
123 +    repDict['queue'] = 'all.q'
124      for item in DC_vars:
125 <        if 'ZH%s'%opts.mass in item[0] and opts.tag in item[0]:
126 <            submit(item[0],repDict)
127 <        elif 'ZH' in item[0] and opts.tag in item[0] and opts.mass == '*':
128 <            submit(item[0],repDict)
125 >        if 'ZH%s'%opts.mass in item:
126 >            submit(item,repDict)
127 >        elif 'ZH' in item and opts.mass == 'all':
128 >            submit(item,repDict)
129 >            
130   elif opts.task == 'prep':
131      submit('prepare',repDict)
132  
133 < elif opts.task == 'eval' or opts.task == 'sys':
133 > elif opts.task == 'eval' or opts.task == 'sys' or opts.task == 'syseval':
134      if ( opts.samples == ""):
135          for job in info:
136              submit(job.name,repDict)
137      else:
138          for sample in samplesList:
139              submit(sample,repDict)
140 <            
140 >
141 > os.system('qstat')
142 > os.system('./qstat.py')

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines