9 print 'Not injecting to wmagent in --show mode. Need to run the worklfows.'
11 if opt.wmcontrol==
'init':
14 if opt.wmcontrol==
'test':
17 if opt.wmcontrol==
'submit' and opt.nThreads==0:
18 print 'Not injecting to wmagent in -j 0 mode. Need to run the worklfows.'
20 if opt.wmcontrol==
'force':
21 print "This is an expert setting, you'd better know what you're doing"
25 from modules.wma
import upload_to_couch
26 (filePath,labelInCouch,user,group,where) = arguments
27 cacheId=upload_to_couch(filePath,
43 for k
in options.split(
','):
44 if k.startswith(
'dqm:'):
45 self.
dqmgui=k.split(
':',1)[-1]
46 elif k.startswith(
'wma:'):
49 self.
testMode=((mode!=
'submit')
and (mode!=
'force'))
55 self.
wmagent=os.getenv(
'WMAGENT_REQMGR')
60 self.
dqmgui=
"https://cmsweb.cern.ch/dqm/relval"
65 self.
user = os.getenv(
'USER')
73 if not os.getenv(
'WMCORE_ROOT'):
74 print '\n\twmclient is not setup properly. Will not be able to upload or submit requests.\n'
79 print '\n\tFound wmclient\n'
82 "RequestType" :
"TaskChain",
83 "SubRequestType" :
"RelVal",
84 "RequestPriority": 500000,
85 "Requestor": self.
user,
87 "CMSSWVersion": os.getenv(
'CMSSW_VERSION'),
88 "Campaign": os.getenv(
'CMSSW_VERSION'),
89 "ScramArch": os.getenv(
'SCRAM_ARCH'),
90 "ProcessingVersion": self.
version,
92 "CouchURL": self.
couch,
93 "ConfigCacheURL": self.
couch,
94 "DbsUrl":
"https://cmsweb.cern.ch/dbs/prod/global/DBSReader",
99 "unmergedLFNBase" :
"/store/unmerged",
100 "mergedLFNBase" :
"/store/relval",
101 "dashboardActivity" :
"relval",
103 "SizePerEvent" : 1234,
108 "EnableHarvesting" :
"True",
109 "DQMUploadUrl" : self.
dqmgui,
110 "DQMConfigCacheID" :
None
115 "ConfigCacheID" :
None,
117 "SplittingAlgo" :
"EventBased",
118 "EventsPerJob" :
None,
119 "RequestNumEvents" :
None,
120 "Seeding" :
"AutomaticSeeding",
121 "PrimaryDataset" :
None,
126 "TaskName" :
"DigiHLT",
127 "ConfigCacheID" :
None,
129 "InputDataset" :
None,
130 "SplittingAlgo" :
"LumiBased",
138 "InputFromOutputModule" :
None,
139 "ConfigCacheID" :
None,
141 "SplittingAlgo" :
"LumiBased",
150 def prepare(self,mReader, directories, mode='init'):
157 wmsplit[
'RECODreHLT']=2
161 wmsplit[
'DIGIUP15_PU50']=1
162 wmsplit[
'RECOUP15_PU50']=1
163 wmsplit[
'DIGIUP15_PU25']=1
164 wmsplit[
'RECOUP15_PU25']=1
165 wmsplit[
'DIGIHISt3']=5
166 wmsplit[
'RECODSplit']=1
167 wmsplit[
'SingleMuPt10_ID']=1
170 wmsplit[
'TTbar_ID']=1
171 wmsplit[
'SingleMuPt10FS_ID']=1
172 wmsplit[
'TTbarFS_ID']=1
177 print "Not set up for step splitting"
181 for (n,dir)
in directories.items():
183 print "inspecting",dir
185 for (x,s)
in mReader.workFlowSteps.items():
198 if 'INPUT' in step
or (
not isinstance(s[2][index],str)):
199 nextHasDSInput=s[2][index]
207 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
209 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
212 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=
'RelVal'+s[1].
split(
'+')[0]
213 if not '--relval' in s[2][index]:
214 print 'Impossible to create task from scratch without splitting information with --relval'
217 arg=s[2][index].
split()
218 ns=
map(int,arg[arg.index(
'--relval')+1].
split(
','))
219 chainDict[
'nowmTasklist'][-1][
'RequestNumEvents'] = ns[0]
220 chainDict[
'nowmTasklist'][-1][
'EventsPerJob'] = ns[1]
221 if 'FASTSIM' in s[2][index]
or '--fast' in s[2][index]:
222 thisLabel+=
'_FastSim'
223 if 'lhe' in s[2][index]
in s[2][index]:
224 chainDict[
'nowmTasklist'][-1][
'LheInputFiles'] =
True
229 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
231 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
233 chainDict[
'nowmTasklist'][-1][
'InputDataset']=nextHasDSInput.dataSet
234 splitForThisWf=nextHasDSInput.split
235 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=splitForThisWf
237 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=wmsplit[step]
239 if len(nextHasDSInput.run):
240 chainDict[
'nowmTasklist'][-1][
'RunWhitelist']=nextHasDSInput.run
242 if '--data' in s[2][index]
and nextHasDSInput.label:
243 thisLabel+=
'_RelVal_%s'%nextHasDSInput.label
244 if 'filter' in chainDict[
'nowmTasklist'][-1][
'nowmIO']:
245 print "This has an input DS and a filter sequence: very likely to be the PyQuen sample"
246 processStrPrefix=
'PU_'
247 setPrimaryDs =
'RelVal'+s[1].
split(
'+')[0]
249 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=setPrimaryDs
255 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
257 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
260 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=splitForThisWf
262 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=wmsplit[step]
265 chainDict[
'nowmTasklist'][-1][
'TaskName']=step
267 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=setPrimaryDs
268 chainDict[
'nowmTasklist'][-1][
'ConfigCacheID']=
'%s/%s.py'%(dir,step)
269 chainDict[
'nowmTasklist'][-1][
'GlobalTag']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'GT']
270 chainDict[
'GlobalTag']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'GT']
271 if 'pileup' in chainDict[
'nowmTasklist'][-1][
'nowmIO']:
272 chainDict[
'nowmTasklist'][-1][
'MCPileup']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'pileup']
273 if '--pileup ' in s[2][index]:
274 processStrPrefix=
'PU_'
276 processStrPrefix=
'PU25ns_'
278 processStrPrefix=
'PU50ns_'
279 if 'DIGIPREMIX_S2' in s[2][index] :
281 processStrPrefix=
'PUpmx25ns_'
282 elif s[2][index].
split()[ s[2][index].
split().
index(
'--pileup_input')+1 ].
find(
'50ns') > 0 :
283 processStrPrefix=
'PUpmx50ns_'
287 chainDict[
'AcquisitionEra'][step]=chainDict[
'CMSSWVersion']
288 chainDict[
'ProcessingString'][step]=processStrPrefix+chainDict[
'nowmTasklist'][-1][
'GlobalTag'].
replace(
'::All',
'')+thisLabel
291 chainDict[
'nowmTasklist'][-1][
'AcquisitionEra']=chainDict[
'CMSSWVersion']
292 chainDict[
'nowmTasklist'][-1][
'ProcessingString']=processStrPrefix+chainDict[
'nowmTasklist'][-1][
'GlobalTag'].
replace(
'::All',
'')+thisLabel
296 chainDict[
'RequestString']=
'RV'+chainDict[
'CMSSWVersion']+s[1].
split(
'+')[0]
297 if processStrPrefix
or thisLabel:
298 chainDict[
'RequestString']+=
'_'+processStrPrefix+thisLabel
307 for i_second
in reversed(range(len(chainDict[
'nowmTasklist']))):
308 t_second=chainDict[
'nowmTasklist'][i_second]
310 if 'primary' in t_second[
'nowmIO']:
312 primary=t_second[
'nowmIO'][
'primary'][0].
replace(
'file:',
'')
313 for i_input
in reversed(range(0,i_second)):
314 t_input=chainDict[
'nowmTasklist'][i_input]
315 for (om,o)
in t_input[
'nowmIO'].items():
318 t_second[
'InputTask'] = t_input[
'TaskName']
319 t_second[
'InputFromOutputModule'] = om
321 if t_second[
'TaskName'].startswith(
'HARVEST'):
323 chainDict[
'DQMConfigCacheID']=t_second[
'ConfigCacheID']
333 chainDict[
'AcquisitionEra'] = chainDict[
'AcquisitionEra'].
values()[0]
339 if type(i)==int
and i < len(chainDict[
'nowmTasklist']):
340 chainDict[
'nowmTasklist'][i][
'KeepOutput']=
True
341 for (i,t)
in enumerate(chainDict[
'nowmTasklist']):
342 if t[
'TaskName'].startswith(
'HARVEST'):
346 elif t[
'TaskName']
in self.
keep:
350 chainDict[
'Task%d'%(itask)]=t
357 chainDict[
'TaskChain']=itask
359 chainDict.pop(
'nowmTasklist')
366 labelInCouch=self.
label+
'_'+label
367 cacheName=filePath.split(
'/')[-1]
370 print '\tFake upload of',filePath,
'to couch with label',labelInCouch
374 from modules.wma
import upload_to_couch,DATABASE_NAME
376 print '\n\tUnable to find wmcontrol modules. Please include it in your python path\n'
381 print "Not re-uploading",filePath,
"to",where,
"for",label
384 print "Loading",filePath,
"to",where,
"for",label
386 pool = multiprocessing.Pool(1)
387 cacheIds = pool.map( upload_to_couch_oneArg, [(filePath,labelInCouch,self.
user,self.
group,where)] )
388 cacheId = cacheIds[0]
393 for (n,d)
in self.chainDicts.items():
395 if it.startswith(
"Task")
and it!=
'TaskChain':
397 couchID=self.
uploadConf(d[it][
'ConfigCacheID'],
398 str(n)+d[it][
'TaskName'],
401 print d[it][
'ConfigCacheID'],
" uploaded to couchDB for",str(n),
"with ID",couchID
402 d[it][
'ConfigCacheID']=couchID
403 if it ==
'DQMConfigCacheID':
404 couchID=self.
uploadConf(d[
'DQMConfigCacheID'],
408 print d[
'DQMConfigCacheID'],
"uploaded to couchDB for",str(n),
"with ID",couchID
409 d[
'DQMConfigCacheID']=couchID
414 from modules.wma
import makeRequest,approveRequest
415 from wmcontrol
import random_sleep
416 print '\n\tFound wmcontrol\n'
418 print '\n\tUnable to find wmcontrol modules. Please include it in your python path\n'
424 for (n,d)
in self.chainDicts.items():
426 print "Only viewing request",n
427 print pprint.pprint(d)
430 print "For eyes before submitting",n
431 print pprint.pprint(d)
432 print "Submitting",n,
"..........."
433 workFlow=makeRequest(self.
wmagent,d,encodeDict=
True)
434 approveRequest(self.
wmagent,workFlow)
435 print "...........",n,
"submitted"
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
def performInjectionOptionTest
def upload_to_couch_oneArg