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": 999999,
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():
194 if len( [step
for step
in s[3]
if "HARVESTGEN" in step] )>0:
195 chainDict[
'TimePerEvent']=0.01
196 thisLabel=thisLabel+
"_gen"
201 if 'INPUT' in step
or (
not isinstance(s[2][index],str)):
202 nextHasDSInput=s[2][index]
210 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
212 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
215 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=
'RelVal'+s[1].
split(
'+')[0]
216 if not '--relval' in s[2][index]:
217 print 'Impossible to create task from scratch without splitting information with --relval'
220 arg=s[2][index].
split()
221 ns=
map(int,arg[arg.index(
'--relval')+1].
split(
','))
222 chainDict[
'nowmTasklist'][-1][
'RequestNumEvents'] = ns[0]
223 chainDict[
'nowmTasklist'][-1][
'EventsPerJob'] = ns[1]
224 if 'FASTSIM' in s[2][index]
or '--fast' in s[2][index]:
225 thisLabel+=
'_FastSim'
226 if 'lhe' in s[2][index]
in s[2][index]:
227 chainDict[
'nowmTasklist'][-1][
'LheInputFiles'] =
True
232 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
234 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
236 chainDict[
'nowmTasklist'][-1][
'InputDataset']=nextHasDSInput.dataSet
237 splitForThisWf=nextHasDSInput.split
238 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=splitForThisWf
240 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=wmsplit[step]
242 if len(nextHasDSInput.run):
243 chainDict[
'nowmTasklist'][-1][
'RunWhitelist']=nextHasDSInput.run
245 if '--data' in s[2][index]
and nextHasDSInput.label:
246 thisLabel+=
'_RelVal_%s'%nextHasDSInput.label
247 if 'filter' in chainDict[
'nowmTasklist'][-1][
'nowmIO']:
248 print "This has an input DS and a filter sequence: very likely to be the PyQuen sample"
249 processStrPrefix=
'PU_'
250 setPrimaryDs =
'RelVal'+s[1].
split(
'+')[0]
252 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=setPrimaryDs
258 chainDict[
'nowmTasklist'][-1][
'nowmIO']=json.loads(open(
'%s/%s.io'%(dir,step)).
read())
260 print "Failed to find",
'%s/%s.io'%(dir,step),
".The workflows were probably not run on cfg not created"
263 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=splitForThisWf
265 chainDict[
'nowmTasklist'][-1][
'LumisPerJob']=wmsplit[step]
268 chainDict[
'nowmTasklist'][-1][
'TaskName']=step
270 chainDict[
'nowmTasklist'][-1][
'PrimaryDataset']=setPrimaryDs
271 chainDict[
'nowmTasklist'][-1][
'ConfigCacheID']=
'%s/%s.py'%(dir,step)
272 chainDict[
'nowmTasklist'][-1][
'GlobalTag']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'GT']
273 chainDict[
'GlobalTag']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'GT']
274 if 'pileup' in chainDict[
'nowmTasklist'][-1][
'nowmIO']:
275 chainDict[
'nowmTasklist'][-1][
'MCPileup']=chainDict[
'nowmTasklist'][-1][
'nowmIO'][
'pileup']
276 if '--pileup ' in s[2][index]:
277 processStrPrefix=
'PU_'
279 processStrPrefix=
'PU25ns_'
281 processStrPrefix=
'PU50ns_'
282 if 'DIGIPREMIX_S2' in s[2][index] :
284 processStrPrefix=
'PUpmx25ns_'
285 elif s[2][index].
split()[ s[2][index].
split().
index(
'--pileup_input')+1 ].
find(
'50ns') > 0 :
286 processStrPrefix=
'PUpmx50ns_'
290 chainDict[
'AcquisitionEra'][step]=chainDict[
'CMSSWVersion']
291 chainDict[
'ProcessingString'][step]=processStrPrefix+chainDict[
'nowmTasklist'][-1][
'GlobalTag'].
replace(
'::All',
'')+thisLabel
294 chainDict[
'nowmTasklist'][-1][
'AcquisitionEra']=chainDict[
'CMSSWVersion']
295 chainDict[
'nowmTasklist'][-1][
'ProcessingString']=processStrPrefix+chainDict[
'nowmTasklist'][-1][
'GlobalTag'].
replace(
'::All',
'')+thisLabel
299 chainDict[
'RequestString']=
'RV'+chainDict[
'CMSSWVersion']+s[1].
split(
'+')[0]
300 if processStrPrefix
or thisLabel:
301 chainDict[
'RequestString']+=
'_'+processStrPrefix+thisLabel
310 for i_second
in reversed(range(len(chainDict[
'nowmTasklist']))):
311 t_second=chainDict[
'nowmTasklist'][i_second]
313 if 'primary' in t_second[
'nowmIO']:
315 primary=t_second[
'nowmIO'][
'primary'][0].
replace(
'file:',
'')
316 for i_input
in reversed(range(0,i_second)):
317 t_input=chainDict[
'nowmTasklist'][i_input]
318 for (om,o)
in t_input[
'nowmIO'].items():
321 t_second[
'InputTask'] = t_input[
'TaskName']
322 t_second[
'InputFromOutputModule'] = om
324 if t_second[
'TaskName'].startswith(
'HARVEST'):
326 chainDict[
'DQMConfigCacheID']=t_second[
'ConfigCacheID']
336 chainDict[
'AcquisitionEra'] = chainDict[
'AcquisitionEra'].
values()[0]
342 if type(i)==int
and i < len(chainDict[
'nowmTasklist']):
343 chainDict[
'nowmTasklist'][i][
'KeepOutput']=
True
344 for (i,t)
in enumerate(chainDict[
'nowmTasklist']):
345 if t[
'TaskName'].startswith(
'HARVEST'):
349 elif t[
'TaskName']
in self.
keep:
353 chainDict[
'Task%d'%(itask)]=t
360 chainDict[
'TaskChain']=itask
362 chainDict.pop(
'nowmTasklist')
369 labelInCouch=self.
label+
'_'+label
370 cacheName=filePath.split(
'/')[-1]
373 print '\tFake upload of',filePath,
'to couch with label',labelInCouch
377 from modules.wma
import upload_to_couch,DATABASE_NAME
379 print '\n\tUnable to find wmcontrol modules. Please include it in your python path\n'
384 print "Not re-uploading",filePath,
"to",where,
"for",label
387 print "Loading",filePath,
"to",where,
"for",label
389 pool = multiprocessing.Pool(1)
390 cacheIds = pool.map( upload_to_couch_oneArg, [(filePath,labelInCouch,self.
user,self.
group,where)] )
391 cacheId = cacheIds[0]
396 for (n,d)
in self.chainDicts.items():
398 if it.startswith(
"Task")
and it!=
'TaskChain':
400 couchID=self.
uploadConf(d[it][
'ConfigCacheID'],
401 str(n)+d[it][
'TaskName'],
404 print d[it][
'ConfigCacheID'],
" uploaded to couchDB for",str(n),
"with ID",couchID
405 d[it][
'ConfigCacheID']=couchID
406 if it ==
'DQMConfigCacheID':
407 couchID=self.
uploadConf(d[
'DQMConfigCacheID'],
411 print d[
'DQMConfigCacheID'],
"uploaded to couchDB for",str(n),
"with ID",couchID
412 d[
'DQMConfigCacheID']=couchID
417 from modules.wma
import makeRequest,approveRequest
418 from wmcontrol
import random_sleep
419 print '\n\tFound wmcontrol\n'
421 print '\n\tUnable to find wmcontrol modules. Please include it in your python path\n'
427 for (n,d)
in self.chainDicts.items():
429 print "Only viewing request",n
430 print pprint.pprint(d)
433 print "For eyes before submitting",n
434 print pprint.pprint(d)
435 print "Submitting",n,
"..........."
436 workFlow=makeRequest(self.
wmagent,d,encodeDict=
True)
437 approveRequest(self.
wmagent,workFlow)
438 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