CMS 3D CMS Logo

Config.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 
4 from __future__ import print_function
5 from __future__ import absolute_import
6 import six
7 import os
8 from .Options import Options
9 options = Options()
10 
11 
12 
13 import sys
14 from .Mixins import PrintOptions,_ParameterTypeBase,_SimpleParameterTypeBase, _Parameterizable, _ConfigureComponent, _TypedParameterizable, _Labelable, _Unlabelable, _ValidatingListBase, _modifyParametersFromDict
15 from .Mixins import *
16 from .Types import *
17 from .Modules import *
18 from .Modules import _Module
19 from .SequenceTypes import *
20 from .SequenceTypes import _ModuleSequenceType, _Sequenceable #extend needs it
21 from .SequenceVisitors import PathValidator, EndPathValidator, ScheduleTaskValidator, NodeVisitor, CompositeVisitor, ModuleNamesFromGlobalsVisitor
22 from . import DictTypes
23 
24 from .ExceptionHandling import *
25 
26 #when building RECO paths we have hit the default recursion limit
27 if sys.getrecursionlimit()<5000:
28  sys.setrecursionlimit(5000)
29 
30 def checkImportPermission(minLevel = 2, allowedPatterns = []):
31  """
32  Raise an exception if called by special config files. This checks
33  the call or import stack for the importing file. An exception is raised if
34  the importing module is not in allowedPatterns and if it is called too deeply:
35  minLevel = 2: inclusion by top lvel cfg only
36  minLevel = 1: No inclusion allowed
37  allowedPatterns = ['Module1','Module2/SubModule1'] allows import
38  by any module in Module1 or Submodule1
39  """
40 
41  import inspect
42  import os
43 
44  ignorePatterns = ['FWCore/ParameterSet/Config.py','<string>','<frozen ']
45  CMSSWPath = [os.environ['CMSSW_BASE'],os.environ['CMSSW_RELEASE_BASE']]
46 
47  # Filter the stack to things in CMSSWPath and not in ignorePatterns
48  trueStack = []
49  for item in inspect.stack():
50  inPath = False
51  ignore = False
52 
53  for pattern in CMSSWPath:
54  if item[1].find(pattern) != -1:
55  inPath = True
56  break
57  if item[1].find('/') == -1: # The base file, no path
58  inPath = True
59 
60  for pattern in ignorePatterns:
61  if item[1].find(pattern) != -1:
62  ignore = True
63  break
64 
65  if inPath and not ignore:
66  trueStack.append(item[1])
67 
68  importedFile = trueStack[0]
69  importedBy = ''
70  if len(trueStack) > 1:
71  importedBy = trueStack[1]
72 
73  for pattern in allowedPatterns:
74  if importedBy.find(pattern) > -1:
75  return True
76 
77  if len(trueStack) <= minLevel: # Imported directly
78  return True
79 
80  raise ImportError("Inclusion of %s is allowed only by cfg or specified cfi files."
81  % importedFile)
82 
83 def findProcess(module):
84  """Look inside the module and find the Processes it contains"""
85  class Temp(object):
86  pass
87  process = None
88  if isinstance(module,dict):
89  if 'process' in module:
90  p = module['process']
91  module = Temp()
92  module.process = p
93  if hasattr(module,'process'):
94  if isinstance(module.process,Process):
95  process = module.process
96  else:
97  raise RuntimeError("The attribute named 'process' does not inherit from the Process class")
98  else:
99  raise RuntimeError("no 'process' attribute found in the module, please add one")
100  return process
101 
103  """Root class for a CMS configuration process"""
104  def __init__(self,name,*Mods):
105  """The argument 'name' will be the name applied to this Process
106  Can optionally pass as additional arguments cms.Modifier instances
107  that will be used to modify the Process as it is built
108  """
109  self.__dict__['_Process__name'] = name
110  if not name.isalnum():
111  raise RuntimeError("Error: The process name is an empty string or contains non-alphanumeric characters")
112  self.__dict__['_Process__filters'] = {}
113  self.__dict__['_Process__producers'] = {}
114  self.__dict__['_Process__switchproducers'] = {}
115  self.__dict__['_Process__source'] = None
116  self.__dict__['_Process__looper'] = None
117  self.__dict__['_Process__subProcesses'] = []
118  self.__dict__['_Process__schedule'] = None
119  self.__dict__['_Process__analyzers'] = {}
120  self.__dict__['_Process__outputmodules'] = {}
121  self.__dict__['_Process__paths'] = DictTypes.SortedKeysDict() # have to keep the order
122  self.__dict__['_Process__endpaths'] = DictTypes.SortedKeysDict() # of definition
123  self.__dict__['_Process__sequences'] = {}
124  self.__dict__['_Process__tasks'] = {}
125  self.__dict__['_Process__services'] = {}
126  self.__dict__['_Process__essources'] = {}
127  self.__dict__['_Process__esproducers'] = {}
128  self.__dict__['_Process__esprefers'] = {}
129  self.__dict__['_Process__aliases'] = {}
130  self.__dict__['_Process__psets']={}
131  self.__dict__['_Process__vpsets']={}
132  self.__dict__['_cloneToObjectDict'] = {}
133  # policy switch to avoid object overwriting during extend/load
134  self.__dict__['_Process__InExtendCall'] = False
135  self.__dict__['_Process__partialschedules'] = {}
136  self.__isStrict = False
137  self.__dict__['_Process__modifiers'] = Mods
138  self.options = Process.defaultOptions_()
139  self.maxEvents = Process.defaultMaxEvents_()
140  self.maxLuminosityBlocks = Process.defaultMaxLuminosityBlocks_()
141  for m in self.__modifiers:
142  m._setChosen()
143 
144  def setStrict(self, value):
145  self.__isStrict = value
146  _Module.__isStrict__ = True
147 
148  # some user-friendly methods for command-line browsing
149  def producerNames(self):
150  """Returns a string containing all the EDProducer labels separated by a blank"""
151  return ' '.join(self.producers_().keys())
153  """Returns a string containing all the SwitchProducer labels separated by a blank"""
154  return ' '.join(self.switchProducers_().keys())
155  def analyzerNames(self):
156  """Returns a string containing all the EDAnalyzer labels separated by a blank"""
157  return ' '.join(self.analyzers_().keys())
158  def filterNames(self):
159  """Returns a string containing all the EDFilter labels separated by a blank"""
160  return ' '.join(self.filters_().keys())
161  def pathNames(self):
162  """Returns a string containing all the Path names separated by a blank"""
163  return ' '.join(self.paths_().keys())
164 
165  def __setstate__(self, pkldict):
166  """
167  Unpickling hook.
168 
169  Since cloneToObjectDict stores a hash of objects by their
170  id() it needs to be updated when unpickling to use the
171  new object id values instantiated during the unpickle.
172 
173  """
174  self.__dict__.update(pkldict)
175  tmpDict = {}
176  for value in self._cloneToObjectDict.values():
177  tmpDict[id(value)] = value
178  self.__dict__['_cloneToObjectDict'] = tmpDict
179 
180 
181 
182  def filters_(self):
183  """returns a dict of the filters that have been added to the Process"""
184  return DictTypes.FixedKeysDict(self.__filters)
185  filters = property(filters_, doc="dictionary containing the filters for the process")
186  def name_(self):
187  return self.__name
188  def setName_(self,name):
189  if not name.isalnum():
190  raise RuntimeError("Error: The process name is an empty string or contains non-alphanumeric characters")
191  self.__dict__['_Process__name'] = name
192  process = property(name_,setName_, doc="name of the process")
193  def producers_(self):
194  """returns a dict of the producers that have been added to the Process"""
195  return DictTypes.FixedKeysDict(self.__producers)
196  producers = property(producers_,doc="dictionary containing the producers for the process")
197  def switchProducers_(self):
198  """returns a dict of the SwitchProducers that have been added to the Process"""
199  return DictTypes.FixedKeysDict(self.__switchproducers)
200  switchProducers = property(switchProducers_,doc="dictionary containing the SwitchProducers for the process")
201  def source_(self):
202  """returns the source that has been added to the Process or None if none have been added"""
203  return self.__source
204  def setSource_(self,src):
205  self._placeSource('source',src)
206  source = property(source_,setSource_,doc='the main source or None if not set')
207  def looper_(self):
208  """returns the looper that has been added to the Process or None if none have been added"""
209  return self.__looper
210  def setLooper_(self,lpr):
211  self._placeLooper('looper',lpr)
212  looper = property(looper_,setLooper_,doc='the main looper or None if not set')
213  @staticmethod
215  return untracked.PSet(numberOfThreads = untracked.uint32(1),
216  numberOfStreams = untracked.uint32(0),
217  numberOfConcurrentRuns = untracked.uint32(1),
218  numberOfConcurrentLuminosityBlocks = untracked.uint32(1),
219  eventSetup = untracked.PSet(
220  numberOfConcurrentIOVs = untracked.uint32(1),
221  forceNumberOfConcurrentIOVs = untracked.PSet(
222  allowAnyLabel_ = required.untracked.uint32
223  )
224  ),
225  wantSummary = untracked.bool(False),
226  fileMode = untracked.string('FULLMERGE'),
227  forceEventSetupCacheClearOnNewRun = untracked.bool(False),
228  throwIfIllegalParameter = untracked.bool(True),
229  printDependencies = untracked.bool(False),
230  sizeOfStackForThreadsInKB = optional.untracked.uint32,
231  Rethrow = untracked.vstring(),
232  SkipEvent = untracked.vstring(),
233  FailPath = untracked.vstring(),
234  IgnoreCompletely = untracked.vstring(),
235  canDeleteEarly = untracked.vstring(),
236  allowUnscheduled = obsolete.untracked.bool,
237  emptyRunLumiMode = obsolete.untracked.string,
238  makeTriggerResults = obsolete.untracked.bool
239  )
240  def __updateOptions(self,opt):
241  newOpts = self.defaultOptions_()
242  if isinstance(opt,dict):
243  for k,v in six.iteritems(opt):
244  setattr(newOpts,k,v)
245  else:
246  for p in opt.parameters_():
247  setattr(newOpts, p, getattr(opt,p))
248  return newOpts
249  @staticmethod
251  return untracked.PSet(input=optional.untracked.int32,
252  output=optional.untracked.allowed(int32,PSet))
253  def __updateMaxEvents(self,ps):
254  newMax = self.defaultMaxEvents_()
255  if isinstance(ps,dict):
256  for k,v in six.iteritems(ps):
257  setattr(newMax,k,v)
258  else:
259  for p in ps.parameters_():
260  setattr(newMax, p, getattr(ps,p))
261  return newMax
262  @staticmethod
264  return untracked.PSet(input=untracked.int32(-1))
265  def subProcesses_(self):
266  """returns a list of the subProcesses that have been added to the Process"""
267  return self.__subProcesses
268  subProcesses = property(subProcesses_,doc='the SubProcesses that have been added to the Process')
269  def analyzers_(self):
270  """returns a dict of the analyzers that have been added to the Process"""
271  return DictTypes.FixedKeysDict(self.__analyzers)
272  analyzers = property(analyzers_,doc="dictionary containing the analyzers for the process")
273  def outputModules_(self):
274  """returns a dict of the output modules that have been added to the Process"""
275  return DictTypes.FixedKeysDict(self.__outputmodules)
276  outputModules = property(outputModules_,doc="dictionary containing the output_modules for the process")
277  def paths_(self):
278  """returns a dict of the paths that have been added to the Process"""
279  return DictTypes.SortedAndFixedKeysDict(self.__paths)
280  paths = property(paths_,doc="dictionary containing the paths for the process")
281  def endpaths_(self):
282  """returns a dict of the endpaths that have been added to the Process"""
283  return DictTypes.SortedAndFixedKeysDict(self.__endpaths)
284  endpaths = property(endpaths_,doc="dictionary containing the endpaths for the process")
285  def sequences_(self):
286  """returns a dict of the sequences that have been added to the Process"""
287  return DictTypes.FixedKeysDict(self.__sequences)
288  sequences = property(sequences_,doc="dictionary containing the sequences for the process")
289  def tasks_(self):
290  """returns a dict of the tasks that have been added to the Process"""
291  return DictTypes.FixedKeysDict(self.__tasks)
292  tasks = property(tasks_,doc="dictionary containing the tasks for the process")
293  def schedule_(self):
294  """returns the schedule that has been added to the Process or None if none have been added"""
295  return self.__schedule
296  def setPartialSchedule_(self,sch,label):
297  if label == "schedule":
298  self.setSchedule_(sch)
299  else:
300  self._place(label, sch, self.__partialschedules)
301  def setSchedule_(self,sch):
302  # See if every path and endpath has been inserted into the process
303  index = 0
304  try:
305  for p in sch:
306  p.label_()
307  index +=1
308  except:
309  raise RuntimeError("The path at index "+str(index)+" in the Schedule was not attached to the process.")
310  self.__dict__['_Process__schedule'] = sch
311  schedule = property(schedule_,setSchedule_,doc='the schedule or None if not set')
312  def services_(self):
313  """returns a dict of the services that have been added to the Process"""
314  return DictTypes.FixedKeysDict(self.__services)
315  services = property(services_,doc="dictionary containing the services for the process")
316  def es_producers_(self):
317  """returns a dict of the esproducers that have been added to the Process"""
318  return DictTypes.FixedKeysDict(self.__esproducers)
319  es_producers = property(es_producers_,doc="dictionary containing the es_producers for the process")
320  def es_sources_(self):
321  """returns a the es_sources that have been added to the Process"""
322  return DictTypes.FixedKeysDict(self.__essources)
323  es_sources = property(es_sources_,doc="dictionary containing the es_sources for the process")
324  def es_prefers_(self):
325  """returns a dict of the es_prefers that have been added to the Process"""
326  return DictTypes.FixedKeysDict(self.__esprefers)
327  es_prefers = property(es_prefers_,doc="dictionary containing the es_prefers for the process")
328  def aliases_(self):
329  """returns a dict of the aliases that have been added to the Process"""
330  return DictTypes.FixedKeysDict(self.__aliases)
331  aliases = property(aliases_,doc="dictionary containing the aliases for the process")
332  def psets_(self):
333  """returns a dict of the PSets that have been added to the Process"""
334  return DictTypes.FixedKeysDict(self.__psets)
335  psets = property(psets_,doc="dictionary containing the PSets for the process")
336  def vpsets_(self):
337  """returns a dict of the VPSets that have been added to the Process"""
338  return DictTypes.FixedKeysDict(self.__vpsets)
339  vpsets = property(vpsets_,doc="dictionary containing the PSets for the process")
340 
341  def isUsingModifier(self,mod):
342  """returns True if the Modifier is in used by this Process"""
343  if mod._isChosen():
344  for m in self.__modifiers:
345  if m._isOrContains(mod):
346  return True
347  return False
348 
349  def __setObjectLabel(self, object, newLabel) :
350  if not object.hasLabel_() :
351  object.setLabel(newLabel)
352  return
353  if newLabel == object.label_() :
354  return
355  if newLabel is None :
356  object.setLabel(None)
357  return
358  if (hasattr(self, object.label_()) and id(getattr(self, object.label_())) == id(object)) :
359  msg100 = "Attempting to change the label of an attribute of the Process\n"
360  msg101 = "Old label = "+object.label_()+" New label = "+newLabel+"\n"
361  msg102 = "Type = "+str(type(object))+"\n"
362  msg103 = "Some possible solutions:\n"
363  msg104 = " 1. Clone modules instead of using simple assignment. Cloning is\n"
364  msg105 = " also preferred for other types when possible.\n"
365  msg106 = " 2. Declare new names starting with an underscore if they are\n"
366  msg107 = " for temporaries you do not want propagated into the Process. The\n"
367  msg108 = " underscore tells \"from x import *\" and process.load not to import\n"
368  msg109 = " the name.\n"
369  msg110 = " 3. Reorganize so the assigment is not necessary. Giving a second\n"
370  msg111 = " name to the same object usually causes confusion and problems.\n"
371  msg112 = " 4. Compose Sequences: newName = cms.Sequence(oldName)\n"
372  raise ValueError(msg100+msg101+msg102+msg103+msg104+msg105+msg106+msg107+msg108+msg109+msg110+msg111+msg112)
373  object.setLabel(None)
374  object.setLabel(newLabel)
375 
376  def __setattr__(self,name,value):
377  # check if the name is well-formed (only _ and alphanumerics are allowed)
378  if not name.replace('_','').isalnum():
379  raise ValueError('The label '+name+' contains forbiden characters')
380 
381  if name == 'options':
382  value = self.__updateOptions(value)
383  if name == 'maxEvents':
384  value = self.__updateMaxEvents(value)
385 
386  # private variable exempt from all this
387  if name.startswith('_Process__'):
388  self.__dict__[name]=value
389  return
390  if not isinstance(value,_ConfigureComponent):
391  raise TypeError("can only assign labels to an object that inherits from '_ConfigureComponent'\n"
392  +"an instance of "+str(type(value))+" will not work - requested label is "+name)
393  if not isinstance(value,_Labelable) and not isinstance(value,Source) and not isinstance(value,Looper) and not isinstance(value,Schedule):
394  if name == value.type_():
395  # Only Services get handled here
396  self.add_(value)
397  return
398  else:
399  raise TypeError("an instance of "+str(type(value))+" can not be assigned the label '"+name+"'.\n"+
400  "Please either use the label '"+value.type_()+" or use the 'add_' method instead.")
401  #clone the item
402  if self.__isStrict:
403  newValue =value.copy()
404  try:
405  newValue._filename = value._filename
406  except:
407  pass
408  value.setIsFrozen()
409  else:
410  newValue =value
411  if not self._okToPlace(name, value, self.__dict__):
412  newFile='top level config'
413  if hasattr(value,'_filename'):
414  newFile = value._filename
415  oldFile='top level config'
416  oldValue = getattr(self,name)
417  if hasattr(oldValue,'_filename'):
418  oldFile = oldValue._filename
419  msg = "Trying to override definition of process."+name
420  msg += "\n new object defined in: "+newFile
421  msg += "\n existing object defined in: "+oldFile
422  raise ValueError(msg)
423  # remove the old object of the name (if there is one)
424  if hasattr(self,name) and not (getattr(self,name)==newValue):
425  # Complain if items in sequences or tasks from load() statements have
426  # degenerate names, but if the user overwrites a name in the
427  # main config, replace it everywhere
428  if newValue._isTaskComponent():
429  if not self.__InExtendCall:
430  self._replaceInTasks(name, newValue)
431  self._replaceInSchedule(name, newValue)
432  else:
433  if not isinstance(newValue, Task):
434  #should check to see if used in task before complaining
435  newFile='top level config'
436  if hasattr(value,'_filename'):
437  newFile = value._filename
438  oldFile='top level config'
439  oldValue = getattr(self,name)
440  if hasattr(oldValue,'_filename'):
441  oldFile = oldValue._filename
442  msg1 = "Trying to override definition of "+name+" while it is used by the task "
443  msg2 = "\n new object defined in: "+newFile
444  msg2 += "\n existing object defined in: "+oldFile
445  s = self.__findFirstUsingModule(self.tasks,oldValue)
446  if s is not None:
447  raise ValueError(msg1+s.label_()+msg2)
448 
449  if isinstance(newValue, _Sequenceable) or newValue._isTaskComponent():
450  if not self.__InExtendCall:
451  self._replaceInSequences(name, newValue)
452  else:
453  #should check to see if used in sequence before complaining
454  newFile='top level config'
455  if hasattr(value,'_filename'):
456  newFile = value._filename
457  oldFile='top level config'
458  oldValue = getattr(self,name)
459  if hasattr(oldValue,'_filename'):
460  oldFile = oldValue._filename
461  msg1 = "Trying to override definition of "+name+" while it is used by the "
462  msg2 = "\n new object defined in: "+newFile
463  msg2 += "\n existing object defined in: "+oldFile
464  s = self.__findFirstUsingModule(self.sequences,oldValue)
465  if s is not None:
466  raise ValueError(msg1+"sequence "+s.label_()+msg2)
467  s = self.__findFirstUsingModule(self.paths,oldValue)
468  if s is not None:
469  raise ValueError(msg1+"path "+s.label_()+msg2)
470  s = self.__findFirstUsingModule(self.endpaths,oldValue)
471  if s is not None:
472  raise ValueError(msg1+"endpath "+s.label_()+msg2)
473 
474  # In case of EDAlias, raise Exception always to avoid surprises
475  if isinstance(newValue, EDAlias):
476  oldValue = getattr(self, name)
477  #should check to see if used in task/sequence before complaining
478  newFile='top level config'
479  if hasattr(value,'_filename'):
480  newFile = value._filename
481  oldFile='top level config'
482  if hasattr(oldValue,'_filename'):
483  oldFile = oldValue._filename
484  msg1 = "Trying to override definition of "+name+" with an EDAlias while it is used by the "
485  msg2 = "\n new object defined in: "+newFile
486  msg2 += "\n existing object defined in: "+oldFile
487  s = self.__findFirstUsingModule(self.tasks,oldValue)
488  if s is not None:
489  raise ValueError(msg1+"task "+s.label_()+msg2)
490  s = self.__findFirstUsingModule(self.sequences,oldValue)
491  if s is not None:
492  raise ValueError(msg1+"sequence "+s.label_()+msg2)
493  s = self.__findFirstUsingModule(self.paths,oldValue)
494  if s is not None:
495  raise ValueError(msg1+"path "+s.label_()+msg2)
496  s = self.__findFirstUsingModule(self.endpaths,oldValue)
497  if s is not None:
498  raise ValueError(msg1+"endpath "+s.label_()+msg2)
499 
500  self._delattrFromSetattr(name)
501  self.__dict__[name]=newValue
502  if isinstance(newValue,_Labelable):
503  self.__setObjectLabel(newValue, name)
504  self._cloneToObjectDict[id(value)] = newValue
505  self._cloneToObjectDict[id(newValue)] = newValue
506  #now put in proper bucket
507  newValue._place(name,self)
508  def __findFirstUsingModule(self, seqsOrTasks, mod):
509  """Given a container of sequences or tasks, find the first sequence or task
510  containing mod and return it. If none is found, return None"""
511  from FWCore.ParameterSet.SequenceTypes import ModuleNodeVisitor
512  l = list()
513  for seqOrTask in six.itervalues(seqsOrTasks):
514  l[:] = []
515  v = ModuleNodeVisitor(l)
516  seqOrTask.visit(v)
517  if mod in l:
518  return seqOrTask
519  return None
520 
521  def _delHelper(self,name):
522  if not hasattr(self,name):
523  raise KeyError('process does not know about '+name)
524  elif name.startswith('_Process__'):
525  raise ValueError('this attribute cannot be deleted')
526 
527  # we have to remove it from all dictionaries/registries
528  dicts = [item for item in self.__dict__.values() if (isinstance(item, dict) or isinstance(item, DictTypes.SortedKeysDict))]
529  for reg in dicts:
530  if name in reg: del reg[name]
531  # if it was a labelable object, the label needs to be removed
532  obj = getattr(self,name)
533  if isinstance(obj,_Labelable):
534  obj.setLabel(None)
535  if isinstance(obj,Service):
536  obj._inProcess = False
537 
538  def __delattr__(self,name):
539  self._delHelper(name)
540  obj = getattr(self,name)
541  if not obj is None:
542  if not isinstance(obj, Sequence) and not isinstance(obj, Task):
543  # For modules, ES modules and services we can also remove
544  # the deleted object from Sequences, Paths, EndPaths, and
545  # Tasks. Note that for Sequences and Tasks that cannot be done
546  # reliably as the places where the Sequence or Task was used
547  # might have been expanded so we do not even try. We considered
548  # raising an exception if a Sequences or Task was explicitly
549  # deleted, but did not because when done carefully deletion
550  # is sometimes OK (for example in the prune function where it
551  # has been checked that the deleted Sequence is not used).
552  if obj._isTaskComponent():
553  self._replaceInTasks(name, None)
554  self._replaceInSchedule(name, None)
555  if isinstance(obj, _Sequenceable) or obj._isTaskComponent():
556  self._replaceInSequences(name, None)
557  # now remove it from the process itself
558  try:
559  del self.__dict__[name]
560  except:
561  pass
562 
563  def _delattrFromSetattr(self,name):
564  """Similar to __delattr__ but we need different behavior when called from __setattr__"""
565  self._delHelper(name)
566  # now remove it from the process itself
567  try:
568  del self.__dict__[name]
569  except:
570  pass
571 
572  def add_(self,value):
573  """Allows addition of components that do not have to have a label, e.g. Services"""
574  if not isinstance(value,_ConfigureComponent):
575  raise TypeError
576  if not isinstance(value,_Unlabelable):
577  raise TypeError
578  #clone the item
579  #clone the item
580  if self.__isStrict:
581  newValue =value.copy()
582  value.setIsFrozen()
583  else:
584  newValue =value
585  newValue._place('',self)
586 
587  def _okToPlace(self, name, mod, d):
588  if not self.__InExtendCall:
589  # if going
590  return True
591  elif not self.__isStrict:
592  return True
593  elif name in d:
594  # if there's an old copy, and the new one
595  # hasn't been modified, we're done. Still
596  # not quite safe if something has been defined twice.
597  # Need to add checks
598  if mod._isModified:
599  if d[name]._isModified:
600  return False
601  else:
602  return True
603  else:
604  return True
605  else:
606  return True
607 
608  def _place(self, name, mod, d):
609  if self._okToPlace(name, mod, d):
610  if self.__isStrict and isinstance(mod, _ModuleSequenceType):
611  d[name] = mod._postProcessFixup(self._cloneToObjectDict)
612  else:
613  d[name] = mod
614  if isinstance(mod,_Labelable):
615  self.__setObjectLabel(mod, name)
616  def _placeOutputModule(self,name,mod):
617  self._place(name, mod, self.__outputmodules)
618  def _placeProducer(self,name,mod):
619  self._place(name, mod, self.__producers)
620  def _placeSwitchProducer(self,name,mod):
621  self._place(name, mod, self.__switchproducers)
622  def _placeFilter(self,name,mod):
623  self._place(name, mod, self.__filters)
624  def _placeAnalyzer(self,name,mod):
625  self._place(name, mod, self.__analyzers)
626  def _placePath(self,name,mod):
627  self._validateSequence(mod, name)
628  try:
629  self._place(name, mod, self.__paths)
630  except ModuleCloneError as msg:
631  context = format_outerframe(4)
632  raise Exception("%sThe module %s in path %s is unknown to the process %s." %(context, msg, name, self._Process__name))
633  def _placeEndPath(self,name,mod):
634  self._validateSequence(mod, name)
635  try:
636  self._place(name, mod, self.__endpaths)
637  except ModuleCloneError as msg:
638  context = format_outerframe(4)
639  raise Exception("%sThe module %s in endpath %s is unknown to the process %s." %(context, msg, name, self._Process__name))
640  def _placeSequence(self,name,mod):
641  self._validateSequence(mod, name)
642  self._place(name, mod, self.__sequences)
643  def _placeESProducer(self,name,mod):
644  self._place(name, mod, self.__esproducers)
645  def _placeESPrefer(self,name,mod):
646  self._place(name, mod, self.__esprefers)
647  def _placeESSource(self,name,mod):
648  self._place(name, mod, self.__essources)
649  def _placeTask(self,name,task):
650  self._validateTask(task, name)
651  self._place(name, task, self.__tasks)
652  def _placeAlias(self,name,mod):
653  self._place(name, mod, self.__aliases)
654  def _placePSet(self,name,mod):
655  self._place(name, mod, self.__psets)
656  def _placeVPSet(self,name,mod):
657  self._place(name, mod, self.__vpsets)
658  def _placeSource(self,name,mod):
659  """Allow the source to be referenced by 'source' or by type name"""
660  if name != 'source':
661  raise ValueError("The label '"+name+"' can not be used for a Source. Only 'source' is allowed.")
662  if self.__dict__['_Process__source'] is not None :
663  del self.__dict__[self.__dict__['_Process__source'].type_()]
664  self.__dict__['_Process__source'] = mod
665  self.__dict__[mod.type_()] = mod
666  def _placeLooper(self,name,mod):
667  if name != 'looper':
668  raise ValueError("The label '"+name+"' can not be used for a Looper. Only 'looper' is allowed.")
669  self.__dict__['_Process__looper'] = mod
670  self.__dict__[mod.type_()] = mod
671  def _placeSubProcess(self,name,mod):
672  self.__dict__['_Process__subProcess'] = mod
673  self.__dict__[mod.type_()] = mod
674  def addSubProcess(self,mod):
675  self.__subProcesses.append(mod)
676  def _placeService(self,typeName,mod):
677  self._place(typeName, mod, self.__services)
678  if typeName in self.__dict__:
679  self.__dict__[typeName]._inProcess = False
680  self.__dict__[typeName]=mod
681  def load(self, moduleName):
682  moduleName = moduleName.replace("/",".")
683  module = __import__(moduleName)
684  self.extend(sys.modules[moduleName])
685  def extend(self,other,items=()):
686  """Look in other and find types that we can use"""
687  # enable explicit check to avoid overwriting of existing objects
688  self.__dict__['_Process__InExtendCall'] = True
689 
690  seqs = dict()
691  tasksToAttach = dict()
692  mods = []
693  for name in dir(other):
694  #'from XX import *' ignores these, and so should we.
695  if name.startswith('_'):
696  continue
697  item = getattr(other,name)
698  if name == "source" or name == "looper":
699  # In these cases 'item' could be None if the specific object was not defined
700  if item is not None:
701  self.__setattr__(name,item)
702  elif isinstance(item,_ModuleSequenceType):
703  seqs[name]=item
704  elif isinstance(item,Task):
705  tasksToAttach[name] = item
706  elif isinstance(item,_Labelable):
707  self.__setattr__(name,item)
708  if not item.hasLabel_() :
709  item.setLabel(name)
710  elif isinstance(item,Schedule):
711  self.__setattr__(name,item)
712  elif isinstance(item,_Unlabelable):
713  self.add_(item)
714  elif isinstance(item,ProcessModifier):
715  mods.append(item)
716  elif isinstance(item,ProcessFragment):
717  self.extend(item)
718 
719  #now create a sequence that uses the newly made items
720  for name,seq in six.iteritems(seqs):
721  if id(seq) not in self._cloneToObjectDict:
722  self.__setattr__(name,seq)
723  else:
724  newSeq = self._cloneToObjectDict[id(seq)]
725  self.__dict__[name]=newSeq
726  self.__setObjectLabel(newSeq, name)
727  #now put in proper bucket
728  newSeq._place(name,self)
729 
730  for name, task in six.iteritems(tasksToAttach):
731  self.__setattr__(name, task)
732 
733  #apply modifiers now that all names have been added
734  for item in mods:
735  item.apply(self)
736 
737  self.__dict__['_Process__InExtendCall'] = False
738 
739  def _dumpConfigNamedList(self,items,typeName,options):
740  returnValue = ''
741  for name,item in items:
742  returnValue +=options.indentation()+typeName+' '+name+' = '+item.dumpConfig(options)
743  return returnValue
744 
745  def _dumpConfigUnnamedList(self,items,typeName,options):
746  returnValue = ''
747  for name,item in items:
748  returnValue +=options.indentation()+typeName+' = '+item.dumpConfig(options)
749  return returnValue
750 
751  def _dumpConfigOptionallyNamedList(self,items,typeName,options):
752  returnValue = ''
753  for name,item in items:
754  if name == item.type_():
755  name = ''
756  returnValue +=options.indentation()+typeName+' '+name+' = '+item.dumpConfig(options)
757  return returnValue
758 
759  def dumpConfig(self, options=PrintOptions()):
760  """return a string containing the equivalent process defined using the old configuration language"""
761  config = "process "+self.__name+" = {\n"
762  options.indent()
763  if self.source_():
764  config += options.indentation()+"source = "+self.source_().dumpConfig(options)
765  if self.looper_():
766  config += options.indentation()+"looper = "+self.looper_().dumpConfig(options)
767 
768  config+=self._dumpConfigNamedList(self.subProcesses_(),
769  'subProcess',
770  options)
771  config+=self._dumpConfigNamedList(six.iteritems(self.producers_()),
772  'module',
773  options)
774  config+=self._dumpConfigNamedList(six.iteritems(self.switchProducers_()),
775  'module',
776  options)
777  config+=self._dumpConfigNamedList(six.iteritems(self.filters_()),
778  'module',
779  options)
780  config+=self._dumpConfigNamedList(six.iteritems(self.analyzers_()),
781  'module',
782  options)
783  config+=self._dumpConfigNamedList(six.iteritems(self.outputModules_()),
784  'module',
785  options)
786  config+=self._dumpConfigNamedList(six.iteritems(self.sequences_()),
787  'sequence',
788  options)
789  config+=self._dumpConfigNamedList(six.iteritems(self.paths_()),
790  'path',
791  options)
792  config+=self._dumpConfigNamedList(six.iteritems(self.endpaths_()),
793  'endpath',
794  options)
795  config+=self._dumpConfigUnnamedList(six.iteritems(self.services_()),
796  'service',
797  options)
798  config+=self._dumpConfigNamedList(six.iteritems(self.aliases_()),
799  'alias',
800  options)
801  config+=self._dumpConfigOptionallyNamedList(
802  six.iteritems(self.es_producers_()),
803  'es_module',
804  options)
805  config+=self._dumpConfigOptionallyNamedList(
806  six.iteritems(self.es_sources_()),
807  'es_source',
808  options)
809  config += self._dumpConfigESPrefers(options)
810  for name,item in six.iteritems(self.psets):
811  config +=options.indentation()+item.configTypeName()+' '+name+' = '+item.configValue(options)
812  for name,item in six.iteritems(self.vpsets):
813  config +=options.indentation()+'VPSet '+name+' = '+item.configValue(options)
814  if self.schedule:
815  pathNames = [p.label_() for p in self.schedule]
816  config +=options.indentation()+'schedule = {'+','.join(pathNames)+'}\n'
817 
818 # config+=self._dumpConfigNamedList(six.iteritems(self.vpsets),
819 # 'VPSet',
820 # options)
821  config += "}\n"
822  options.unindent()
823  return config
824 
825  def _dumpConfigESPrefers(self, options):
826  result = ''
827  for item in six.itervalues(self.es_prefers_()):
828  result +=options.indentation()+'es_prefer '+item.targetLabel_()+' = '+item.dumpConfig(options)
829  return result
830 
831  def _dumpPythonSubProcesses(self, l, options):
832  returnValue = ''
833  for item in l:
834  returnValue += item.dumpPython(options)+'\n\n'
835  return returnValue
836 
837  def _dumpPythonList(self, d, options):
838  returnValue = ''
839  if isinstance(d, DictTypes.SortedKeysDict):
840  for name,item in d.items():
841  returnValue +='process.'+name+' = '+item.dumpPython(options)+'\n\n'
842  else:
843  for name,item in sorted(d.items()):
844  returnValue +='process.'+name+' = '+item.dumpPython(options)+'\n\n'
845  return returnValue
846 
847  def _splitPythonList(self, subfolder, d, options):
848  parts = DictTypes.SortedKeysDict()
849  for name, item in d.items() if isinstance(d, DictTypes.SortedKeysDict) else sorted(d.items()):
850  code = ''
851  dependencies = item.directDependencies()
852  for module_subfolder, module in dependencies:
853  module = module + '_cfi'
854  if options.useSubdirectories and module_subfolder:
855  module = module_subfolder + '.' + module
856  if options.targetDirectory is not None:
857  if options.useSubdirectories and subfolder:
858  module = '..' + module
859  else:
860  module = '.' + module
861  code += 'from ' + module + ' import *\n'
862  if dependencies:
863  code += '\n'
864  code += name + ' = ' + item.dumpPython(options)
865  parts[name] = subfolder, code
866  return parts
867 
868  def _validateSequence(self, sequence, label):
869  # See if every module has been inserted into the process
870  try:
871  l = set()
872  visitor = NodeNameVisitor(l)
873  sequence.visit(visitor)
874  except:
875  raise RuntimeError("An entry in sequence "+label + ' has no label')
876 
877  def _validateTask(self, task, label):
878  # See if every module and service has been inserted into the process
879  try:
880  l = set()
881  visitor = NodeNameVisitor(l)
882  task.visit(visitor)
883  except:
884  raise RuntimeError("An entry in task " + label + ' has not been attached to the process')
885 
886  def _itemsInDependencyOrder(self, processDictionaryOfItems):
887  # The items can be Sequences or Tasks and the input
888  # argument should either be the dictionary of sequences
889  # or the dictionary of tasks from the process.
890 
891  returnValue=DictTypes.SortedKeysDict()
892 
893  # For each item, see what other items it depends upon
894  # For our purpose here, an item depends on the items it contains.
895  dependencies = {}
896  for label,item in six.iteritems(processDictionaryOfItems):
897  containedItems = []
898  if isinstance(item, Task):
899  v = TaskVisitor(containedItems)
900  else:
901  v = SequenceVisitor(containedItems)
902  try:
903  item.visit(v)
904  except RuntimeError:
905  if isinstance(item, Task):
906  raise RuntimeError("Failed in a Task visitor. Probably " \
907  "a circular dependency discovered in Task with label " + label)
908  else:
909  raise RuntimeError("Failed in a Sequence visitor. Probably a " \
910  "circular dependency discovered in Sequence with label " + label)
911  for containedItem in containedItems:
912  # Check for items that both have labels and are not in the process.
913  # This should not normally occur unless someone explicitly assigns a
914  # label without putting the item in the process (which should not ever
915  # be done). We check here because this problem could cause the code
916  # in the 'while' loop below to go into an infinite loop.
917  if containedItem.hasLabel_():
918  testItem = processDictionaryOfItems.get(containedItem.label_())
919  if testItem is None or containedItem != testItem:
920  if isinstance(item, Task):
921  raise RuntimeError("Task has a label, but using its label to get an attribute" \
922  " from the process yields a different object or None\n"+
923  "label = " + containedItem.label_())
924  else:
925  raise RuntimeError("Sequence has a label, but using its label to get an attribute" \
926  " from the process yields a different object or None\n"+
927  "label = " + containedItem.label_())
928  dependencies[label]=[dep.label_() for dep in containedItems if dep.hasLabel_()]
929 
930  # keep looping until we get rid of all dependencies
931  while dependencies:
932  oldDeps = dict(dependencies)
933  for label,deps in six.iteritems(oldDeps):
934  if len(deps)==0:
935  returnValue[label]=processDictionaryOfItems[label]
936  #remove this as a dependency for all other tasks
937  del dependencies[label]
938  for lb2,deps2 in six.iteritems(dependencies):
939  while deps2.count(label):
940  deps2.remove(label)
941  return returnValue
942 
943  def _dumpPython(self, d, options):
944  result = ''
945  for name, value in sorted(six.iteritems(d)):
946  result += value.dumpPythonAs(name,options)+'\n'
947  return result
948 
949  def _splitPython(self, subfolder, d, options):
950  result = {}
951  for name, value in sorted(six.iteritems(d)):
952  result[name] = subfolder, value.dumpPythonAs(name, options) + '\n'
953  return result
954 
955  def dumpPython(self, options=PrintOptions()):
956  """return a string containing the equivalent process defined using python"""
957  specialImportRegistry._reset()
958  header = "import FWCore.ParameterSet.Config as cms"
959  result = "process = cms.Process(\""+self.__name+"\")\n\n"
960  if self.source_():
961  result += "process.source = "+self.source_().dumpPython(options)
962  if self.looper_():
963  result += "process.looper = "+self.looper_().dumpPython()
964  result+=self._dumpPythonList(self.psets, options)
965  result+=self._dumpPythonList(self.vpsets, options)
966  result+=self._dumpPythonSubProcesses(self.subProcesses_(), options)
967  result+=self._dumpPythonList(self.producers_(), options)
968  result+=self._dumpPythonList(self.switchProducers_(), options)
969  result+=self._dumpPythonList(self.filters_() , options)
970  result+=self._dumpPythonList(self.analyzers_(), options)
971  result+=self._dumpPythonList(self.outputModules_(), options)
972  result+=self._dumpPythonList(self.services_(), options)
973  result+=self._dumpPythonList(self.es_producers_(), options)
974  result+=self._dumpPythonList(self.es_sources_(), options)
975  result+=self._dumpPython(self.es_prefers_(), options)
976  result+=self._dumpPythonList(self._itemsInDependencyOrder(self.tasks), options)
977  result+=self._dumpPythonList(self._itemsInDependencyOrder(self.sequences), options)
978  result+=self._dumpPythonList(self.paths_(), options)
979  result+=self._dumpPythonList(self.endpaths_(), options)
980  result+=self._dumpPythonList(self.aliases_(), options)
981  if not self.schedule_() == None:
982  result += 'process.schedule = ' + self.schedule.dumpPython(options)
983  imports = specialImportRegistry.getSpecialImports()
984  if len(imports) > 0:
985  header += "\n" + "\n".join(imports)
986  header += "\n\n"
987  return header+result
988 
989  def splitPython(self, options = PrintOptions()):
990  """return a map of file names to python configuration fragments"""
991  specialImportRegistry._reset()
992  # extract individual fragments
993  options.isCfg = False
994  header = "import FWCore.ParameterSet.Config as cms"
995  result = ''
996  parts = {}
997  files = {}
998 
999  result = 'process = cms.Process("' + self.__name + '")\n\n'
1000 
1001  if self.source_():
1002  parts['source'] = (None, 'source = ' + self.source_().dumpPython(options))
1003 
1004  if self.looper_():
1005  parts['looper'] = (None, 'looper = ' + self.looper_().dumpPython())
1006 
1007  parts.update(self._splitPythonList('psets', self.psets, options))
1008  parts.update(self._splitPythonList('psets', self.vpsets, options))
1009  # FIXME
1010  #parts.update(self._splitPythonSubProcesses(self.subProcesses_(), options))
1011  if len(self.subProcesses_()):
1012  sys.stderr.write("error: subprocesses are not supported yet\n\n")
1013  parts.update(self._splitPythonList('modules', self.producers_(), options))
1014  parts.update(self._splitPythonList('modules', self.switchProducers_(), options))
1015  parts.update(self._splitPythonList('modules', self.filters_() , options))
1016  parts.update(self._splitPythonList('modules', self.analyzers_(), options))
1017  parts.update(self._splitPythonList('modules', self.outputModules_(), options))
1018  parts.update(self._splitPythonList('services', self.services_(), options))
1019  parts.update(self._splitPythonList('eventsetup', self.es_producers_(), options))
1020  parts.update(self._splitPythonList('eventsetup', self.es_sources_(), options))
1021  parts.update(self._splitPython('eventsetup', self.es_prefers_(), options))
1022  parts.update(self._splitPythonList('tasks', self._itemsInDependencyOrder(self.tasks), options))
1023  parts.update(self._splitPythonList('sequences', self._itemsInDependencyOrder(self.sequences), options))
1024  parts.update(self._splitPythonList('paths', self.paths_(), options))
1025  parts.update(self._splitPythonList('paths', self.endpaths_(), options))
1026  parts.update(self._splitPythonList('modules', self.aliases_(), options))
1027 
1028  if options.targetDirectory is not None:
1029  files[options.targetDirectory + '/__init__.py'] = ''
1030 
1031  if options.useSubdirectories:
1032  for sub in 'psets', 'modules', 'services', 'eventsetup', 'tasks', 'sequences', 'paths':
1033  if options.targetDirectory is not None:
1034  sub = options.targetDirectory + '/' + sub
1035  files[sub + '/__init__.py'] = ''
1036 
1037  for (name, (subfolder, code)) in six.iteritems(parts):
1038  filename = name + '_cfi'
1039  if options.useSubdirectories and subfolder:
1040  filename = subfolder + '/' + filename
1041  if options.targetDirectory is not None:
1042  filename = options.targetDirectory + '/' + filename
1043  result += 'process.load("%s")\n' % filename
1044  files[filename + '.py'] = header + '\n\n' + code
1045 
1046  if self.schedule_() is not None:
1047  options.isCfg = True
1048  result += 'process.schedule = ' + self.schedule.dumpPython(options)
1049 
1050  imports = specialImportRegistry.getSpecialImports()
1051  if len(imports) > 0:
1052  header += '\n' + '\n'.join(imports)
1053  files['-'] = header + '\n\n' + result
1054  return files
1055 
1056  def _replaceInSequences(self, label, new):
1057  old = getattr(self,label)
1058  #TODO - replace by iterator concatenation
1059  #to ovoid dependency problems between sequences, first modify
1060  # process known sequences to do a non-recursive change. Then do
1061  # a recursive change to get cases where a sub-sequence unknown to
1062  # the process has the item to be replaced
1063  for sequenceable in six.itervalues(self.sequences):
1064  sequenceable._replaceIfHeldDirectly(old,new)
1065  for sequenceable in six.itervalues(self.sequences):
1066  sequenceable.replace(old,new)
1067  for sequenceable in six.itervalues(self.paths):
1068  sequenceable.replace(old,new)
1069  for sequenceable in six.itervalues(self.endpaths):
1070  sequenceable.replace(old,new)
1071  def _replaceInTasks(self, label, new):
1072  old = getattr(self,label)
1073  for task in six.itervalues(self.tasks):
1074  task.replace(old, new)
1075  def _replaceInSchedule(self, label, new):
1076  if self.schedule_() == None:
1077  return
1078  old = getattr(self,label)
1079  for task in self.schedule_()._tasks:
1080  task.replace(old, new)
1081  def globalReplace(self,label,new):
1082  """ Replace the item with label 'label' by object 'new' in the process and all sequences/paths/tasks"""
1083  if not hasattr(self,label):
1084  raise LookupError("process has no item of label "+label)
1085  setattr(self,label,new)
1086  def _insertInto(self, parameterSet, itemDict):
1087  for name,value in six.iteritems(itemDict):
1088  value.insertInto(parameterSet, name)
1089  def _insertOneInto(self, parameterSet, label, item, tracked):
1090  vitems = []
1091  if not item == None:
1092  newlabel = item.nameInProcessDesc_(label)
1093  vitems = [newlabel]
1094  item.insertInto(parameterSet, newlabel)
1095  parameterSet.addVString(tracked, label, vitems)
1096  def _insertManyInto(self, parameterSet, label, itemDict, tracked):
1097  l = []
1098  for name,value in six.iteritems(itemDict):
1099  value.appendToProcessDescList_(l, name)
1100  value.insertInto(parameterSet, name)
1101  # alphabetical order is easier to compare with old language
1102  l.sort()
1103  parameterSet.addVString(tracked, label, l)
1104  def _insertSwitchProducersInto(self, parameterSet, labelModules, labelAliases, itemDict, tracked):
1105  modules = parameterSet.getVString(tracked, labelModules)
1106  aliases = parameterSet.getVString(tracked, labelAliases)
1107  for name,value in six.iteritems(itemDict):
1108  value.appendToProcessDescLists_(modules, aliases, name)
1109  value.insertInto(parameterSet, name)
1110  modules.sort()
1111  aliases.sort()
1112  parameterSet.addVString(tracked, labelModules, modules)
1113  parameterSet.addVString(tracked, labelAliases, aliases)
1114  def _insertSubProcessesInto(self, parameterSet, label, itemList, tracked):
1115  l = []
1116  subprocs = []
1117  for value in itemList:
1118  name = value.getProcessName()
1119  newLabel = value.nameInProcessDesc_(name)
1120  l.append(newLabel)
1121  pset = value.getSubProcessPSet(parameterSet)
1122  subprocs.append(pset)
1123  # alphabetical order is easier to compare with old language
1124  l.sort()
1125  parameterSet.addVString(tracked, label, l)
1126  parameterSet.addVPSet(False,"subProcesses",subprocs)
1127  def _insertPaths(self, processPSet, nodeVisitor):
1128  scheduledPaths = []
1129  triggerPaths = []
1130  endpaths = []
1131  if self.schedule_() == None:
1132  # make one from triggerpaths & endpaths
1133  for name in self.paths_():
1134  scheduledPaths.append(name)
1135  triggerPaths.append(name)
1136  for name in self.endpaths_():
1137  scheduledPaths.append(name)
1138  endpaths.append(name)
1139  else:
1140  for path in self.schedule_():
1141  pathname = path.label_()
1142  scheduledPaths.append(pathname)
1143  if pathname in self.endpaths_():
1144  endpaths.append(pathname)
1145  else:
1146  triggerPaths.append(pathname)
1147  for task in self.schedule_()._tasks:
1148  task.resolve(self.__dict__)
1149  scheduleTaskValidator = ScheduleTaskValidator()
1150  task.visit(scheduleTaskValidator)
1151  task.visit(nodeVisitor)
1152  processPSet.addVString(True, "@end_paths", endpaths)
1153  processPSet.addVString(True, "@paths", scheduledPaths)
1154  # trigger_paths are a little different
1155  p = processPSet.newPSet()
1156  p.addVString(True, "@trigger_paths", triggerPaths)
1157  processPSet.addPSet(True, "@trigger_paths", p)
1158  # add all these paths
1159  pathValidator = PathValidator()
1160  endpathValidator = EndPathValidator()
1161  decoratedList = []
1162  lister = DecoratedNodeNameVisitor(decoratedList)
1163  pathCompositeVisitor = CompositeVisitor(pathValidator, nodeVisitor, lister)
1164  endpathCompositeVisitor = CompositeVisitor(endpathValidator, nodeVisitor, lister)
1165  for triggername in triggerPaths:
1166  iPath = self.paths_()[triggername]
1167  iPath.resolve(self.__dict__)
1168  pathValidator.setLabel(triggername)
1169  lister.initialize()
1170  iPath.visit(pathCompositeVisitor)
1171  iPath.insertInto(processPSet, triggername, decoratedList)
1172  for endpathname in endpaths:
1173  iEndPath = self.endpaths_()[endpathname]
1174  iEndPath.resolve(self.__dict__)
1175  endpathValidator.setLabel(endpathname)
1176  lister.initialize()
1177  iEndPath.visit(endpathCompositeVisitor)
1178  iEndPath.insertInto(processPSet, endpathname, decoratedList)
1179  processPSet.addVString(False, "@filters_on_endpaths", endpathValidator.filtersOnEndpaths)
1180 
1181  def resolve(self,keepUnresolvedSequencePlaceholders=False):
1182  for x in six.itervalues(self.paths):
1183  x.resolve(self.__dict__,keepUnresolvedSequencePlaceholders)
1184  for x in six.itervalues(self.endpaths):
1185  x.resolve(self.__dict__,keepUnresolvedSequencePlaceholders)
1186  if not self.schedule_() == None:
1187  for task in self.schedule_()._tasks:
1188  task.resolve(self.__dict__,keepUnresolvedSequencePlaceholders)
1189 
1190  def prune(self,verbose=False,keepUnresolvedSequencePlaceholders=False):
1191  """ Remove clutter from the process that we think is unnecessary:
1192  tracked PSets, VPSets and unused modules and sequences. If a Schedule has been set, then Paths and EndPaths
1193  not in the schedule will also be removed, along with an modules and sequences used only by
1194  those removed Paths and EndPaths. The keepUnresolvedSequencePlaceholders keeps also unresolved TaskPlaceholders."""
1195 # need to update this to only prune psets not on refToPSets
1196 # but for now, remove the delattr
1197 # for name in self.psets_():
1198 # if getattr(self,name).isTracked():
1199 # delattr(self, name)
1200  for name in self.vpsets_():
1201  delattr(self, name)
1202  #first we need to resolve any SequencePlaceholders being used
1203  self.resolve(keepUnresolvedSequencePlaceholders)
1204  usedModules = set()
1205  unneededPaths = set()
1206  tasks = list()
1207  tv = TaskVisitor(tasks)
1208  if self.schedule_():
1209  usedModules=set(self.schedule_().moduleNames())
1210  #get rid of unused paths
1211  schedNames = set(( x.label_() for x in self.schedule_()))
1212  names = set(self.paths)
1213  names.update(set(self.endpaths))
1214  unneededPaths = names - schedNames
1215  for n in unneededPaths:
1216  delattr(self,n)
1217  for t in self.schedule_().tasks():
1218  tv.enter(t)
1219  t.visit(tv)
1220  tv.leave(t)
1221  else:
1222  pths = list(six.itervalues(self.paths))
1223  pths.extend(six.itervalues(self.endpaths))
1224  temp = Schedule(*pths)
1225  usedModules=set(temp.moduleNames())
1226  unneededModules = self._pruneModules(self.producers_(), usedModules)
1227  unneededModules.update(self._pruneModules(self.switchProducers_(), usedModules))
1228  unneededModules.update(self._pruneModules(self.filters_(), usedModules))
1229  unneededModules.update(self._pruneModules(self.analyzers_(), usedModules))
1230  #remove sequences and tasks that do not appear in remaining paths and endpaths
1231  seqs = list()
1232  sv = SequenceVisitor(seqs)
1233  for p in six.itervalues(self.paths):
1234  p.visit(sv)
1235  p.visit(tv)
1236  for p in six.itervalues(self.endpaths):
1237  p.visit(sv)
1238  p.visit(tv)
1239  def removeUnneeded(seqOrTasks, allSequencesOrTasks):
1240  _keepSet = set(( s for s in seqOrTasks if s.hasLabel_()))
1241  _availableSet = set(six.itervalues(allSequencesOrTasks))
1242  _unneededSet = _availableSet-_keepSet
1243  _unneededLabels = []
1244  for s in _unneededSet:
1245  _unneededLabels.append(s.label_())
1246  delattr(self,s.label_())
1247  return _unneededLabels
1248  unneededSeqLabels = removeUnneeded(seqs, self.sequences)
1249  unneededTaskLabels = removeUnneeded(tasks, self.tasks)
1250  if verbose:
1251  print("prune removed the following:")
1252  print(" modules:"+",".join(unneededModules))
1253  print(" tasks:"+",".join(unneededTaskLabels))
1254  print(" sequences:"+",".join(unneededSeqLabels))
1255  print(" paths/endpaths:"+",".join(unneededPaths))
1256  def _pruneModules(self, d, scheduledNames):
1257  moduleNames = set(d.keys())
1258  junk = moduleNames - scheduledNames
1259  for name in junk:
1260  delattr(self, name)
1261  return junk
1262 
1263  def fillProcessDesc(self, processPSet):
1264  """Used by the framework to convert python to C++ objects"""
1265  class ServiceInjectorAdaptor(object):
1266  def __init__(self,ppset,thelist):
1267  self.__thelist = thelist
1268  self.__processPSet = ppset
1269  def addService(self,pset):
1270  self.__thelist.append(pset)
1271  def newPSet(self):
1272  return self.__processPSet.newPSet()
1273  #This adaptor is used to 'add' the method 'getTopPSet_'
1274  # to the ProcessDesc and PythonParameterSet C++ classes.
1275  # This method is needed for the PSet refToPSet_ functionality.
1276  class TopLevelPSetAcessorAdaptor(object):
1277  def __init__(self,ppset,process):
1278  self.__ppset = ppset
1279  self.__process = process
1280  def __getattr__(self,attr):
1281  return getattr(self.__ppset,attr)
1282  def getTopPSet_(self,label):
1283  return getattr(self.__process,label)
1284  def newPSet(self):
1285  return TopLevelPSetAcessorAdaptor(self.__ppset.newPSet(),self.__process)
1286  def addPSet(self,tracked,name,ppset):
1287  return self.__ppset.addPSet(tracked,name,self.__extractPSet(ppset))
1288  def addVPSet(self,tracked,name,vpset):
1289  return self.__ppset.addVPSet(tracked,name,[self.__extractPSet(x) for x in vpset])
1290  def __extractPSet(self,pset):
1291  if isinstance(pset,TopLevelPSetAcessorAdaptor):
1292  return pset.__ppset
1293  return pset
1294 
1295  self.validate()
1296  processPSet.addString(True, "@process_name", self.name_())
1297  all_modules = self.producers_().copy()
1298  all_modules.update(self.filters_())
1299  all_modules.update(self.analyzers_())
1300  all_modules.update(self.outputModules_())
1301  adaptor = TopLevelPSetAcessorAdaptor(processPSet,self)
1302  self._insertInto(adaptor, self.psets_())
1303  self._insertInto(adaptor, self.vpsets_())
1304  self._insertOneInto(adaptor, "@all_sources", self.source_(), True)
1305  self._insertOneInto(adaptor, "@all_loopers", self.looper_(), True)
1306  self._insertSubProcessesInto(adaptor, "@all_subprocesses", self.subProcesses_(), False)
1307  self._insertManyInto(adaptor, "@all_esprefers", self.es_prefers_(), True)
1308  self._insertManyInto(adaptor, "@all_aliases", self.aliases_(), True)
1309  # This will visit all the paths and endpaths that are scheduled to run,
1310  # as well as the Tasks associated to them and the schedule. It remembers
1311  # the modules, ESSources, ESProducers, and services it visits.
1312  nodeVisitor = NodeVisitor()
1313  self._insertPaths(adaptor, nodeVisitor)
1314  all_modules_onTasksOrScheduled = { key:value for key, value in six.iteritems(all_modules) if value in nodeVisitor.modules }
1315  self._insertManyInto(adaptor, "@all_modules", all_modules_onTasksOrScheduled, True)
1316  all_switches = self.switchProducers_().copy()
1317  all_switches_onTasksOrScheduled = {key:value for key, value in six.iteritems(all_switches) if value in nodeVisitor.modules }
1318  self._insertSwitchProducersInto(adaptor, "@all_modules", "@all_aliases", all_switches_onTasksOrScheduled, True)
1319  # Same as nodeVisitor except this one visits all the Tasks attached
1320  # to the process.
1321  processNodeVisitor = NodeVisitor()
1322  for pTask in six.itervalues(self.tasks):
1323  pTask.visit(processNodeVisitor)
1324  esProducersToEnable = {}
1325  for esProducerName, esProducer in six.iteritems(self.es_producers_()):
1326  if esProducer in nodeVisitor.esProducers or not (esProducer in processNodeVisitor.esProducers):
1327  esProducersToEnable[esProducerName] = esProducer
1328  self._insertManyInto(adaptor, "@all_esmodules", esProducersToEnable, True)
1329  esSourcesToEnable = {}
1330  for esSourceName, esSource in six.iteritems(self.es_sources_()):
1331  if esSource in nodeVisitor.esSources or not (esSource in processNodeVisitor.esSources):
1332  esSourcesToEnable[esSourceName] = esSource
1333  self._insertManyInto(adaptor, "@all_essources", esSourcesToEnable, True)
1334  #handle services differently
1335  services = []
1336  for serviceName, serviceObject in six.iteritems(self.services_()):
1337  if serviceObject in nodeVisitor.services or not (serviceObject in processNodeVisitor.services):
1338  serviceObject.insertInto(ServiceInjectorAdaptor(adaptor,services))
1339  adaptor.addVPSet(False,"services",services)
1340  return processPSet
1341 
1342  def validate(self):
1343  # check if there's some input
1344  # Breaks too many unit tests for now
1345  #if self.source_() == None and self.looper_() == None:
1346  # raise RuntimeError("No input source was found for this process")
1347  pass
1348 
1349  def prefer(self, esmodule,*args,**kargs):
1350  """Prefer this ES source or producer. The argument can
1351  either be an object label, e.g.,
1352  process.prefer(process.juicerProducer) (not supported yet)
1353  or a name of an ESSource or ESProducer
1354  process.prefer("juicer")
1355  or a type of unnamed ESSource or ESProducer
1356  process.prefer("JuicerProducer")
1357  In addition, you can pass as a labelled arguments the name of the Record you wish to
1358  prefer where the type passed is a cms.vstring and that vstring can contain the
1359  name of the C++ types in the Record that are being preferred, e.g.,
1360  #prefer all data in record 'OrangeRecord' from 'juicer'
1361  process.prefer("juicer", OrangeRecord=cms.vstring())
1362  or
1363  #prefer only "Orange" data in "OrangeRecord" from "juicer"
1364  process.prefer("juicer", OrangeRecord=cms.vstring("Orange"))
1365  or
1366  #prefer only "Orange" data with label "ExtraPulp" in "OrangeRecord" from "juicer"
1367  ESPrefer("ESJuicerProd", OrangeRecord=cms.vstring("Orange/ExtraPulp"))
1368  """
1369  # see if this refers to a named ESProducer
1370  if isinstance(esmodule, ESSource) or isinstance(esmodule, ESProducer):
1371  raise RuntimeError("Syntax of process.prefer(process.esmodule) not supported yet")
1372  elif self._findPreferred(esmodule, self.es_producers_(),*args,**kargs) or \
1373  self._findPreferred(esmodule, self.es_sources_(),*args,**kargs):
1374  pass
1375  else:
1376  raise RuntimeError("Cannot resolve prefer for "+repr(esmodule))
1377 
1378  def _findPreferred(self, esname, d,*args,**kargs):
1379  # is esname a name in the dictionary?
1380  if esname in d:
1381  typ = d[esname].type_()
1382  if typ == esname:
1383  self.__setattr__( esname+"_prefer", ESPrefer(typ,*args,**kargs) )
1384  else:
1385  self.__setattr__( esname+"_prefer", ESPrefer(typ, esname,*args,**kargs) )
1386  return True
1387  else:
1388  # maybe it's an unnamed ESModule?
1389  found = False
1390  for name, value in six.iteritems(d):
1391  if value.type_() == esname:
1392  if found:
1393  raise RuntimeError("More than one ES module for "+esname)
1394  found = True
1395  self.__setattr__(esname+"_prefer", ESPrefer(d[esname].type_()) )
1396  return found
1397 
1398 
1400  def __init__(self, process):
1401  if isinstance(process, Process):
1402  self.__process = process
1403  elif isinstance(process, str):
1404  self.__process = Process(process)
1405  #make sure we do not override the defaults
1406  del self.__process.options
1407  del self.__process.maxEvents
1408  del self.__process.maxLuminosityBlocks
1409  else:
1410  raise TypeError('a ProcessFragment can only be constructed from an existig Process or from process name')
1411  def __dir__(self):
1412  return [ x for x in dir(self.__process) if isinstance(getattr(self.__process, x), _ConfigureComponent) ]
1413  def __getattribute__(self, name):
1414  if name == '_ProcessFragment__process':
1415  return object.__getattribute__(self, '_ProcessFragment__process')
1416  else:
1417  return getattr(self.__process, name)
1418  def __setattr__(self, name, value):
1419  if name == '_ProcessFragment__process':
1420  object.__setattr__(self, name, value)
1421  else:
1422  setattr(self.__process, name, value)
1423  def __delattr__(self, name):
1424  if name == '_ProcessFragment__process':
1425  pass
1426  else:
1427  return delattr(self.__process, name)
1428 
1429 
1430 class FilteredStream(dict):
1431  """a dictionary with fixed keys"""
1433  raise AttributeError("An FilteredStream defintion cannot be modified after creation.")
1434  _blocked_attribute = property(_blocked_attribute)
1435  __setattr__ = __delitem__ = __setitem__ = clear = _blocked_attribute
1436  pop = popitem = setdefault = update = _blocked_attribute
1437  def __new__(cls, *args, **kw):
1438  new = dict.__new__(cls)
1439  dict.__init__(new, *args, **kw)
1440  keys = sorted(kw.keys())
1441  if keys != ['content', 'dataTier', 'name', 'paths', 'responsible', 'selectEvents']:
1442  raise ValueError("The needed parameters are: content, dataTier, name, paths, responsible, selectEvents")
1443  if not isinstance(kw['name'],str):
1444  raise ValueError("name must be of type string")
1445  if not isinstance(kw['content'], vstring) and not isinstance(kw['content'],str):
1446  raise ValueError("content must be of type vstring or string")
1447  if not isinstance(kw['dataTier'], string):
1448  raise ValueError("dataTier must be of type string")
1449  if not isinstance(kw['selectEvents'], PSet):
1450  raise ValueError("selectEvents must be of type PSet")
1451  if not isinstance(kw['paths'],(tuple, Path)):
1452  raise ValueError("'paths' must be a tuple of paths")
1453  return new
1454  def __init__(self, *args, **kw):
1455  pass
1456  def __repr__(self):
1457  return "FilteredStream object: %s" %self["name"]
1458  def __getattr__(self,attr):
1459  return self[attr]
1460 
1462  """Allows embedding another process within a parent process. This allows one to
1463  chain processes together directly in one cmsRun job rather than having to run
1464  separate jobs that are connected via a temporary file.
1465  """
1466  def __init__(self,process, SelectEvents = untracked.PSet(), outputCommands = untracked.vstring()):
1467  """
1468  """
1469  if not isinstance(process, Process):
1470  raise ValueError("the 'process' argument must be of type cms.Process")
1471  if not isinstance(SelectEvents,PSet):
1472  raise ValueError("the 'SelectEvents' argument must be of type cms.untracked.PSet")
1473  if not isinstance(outputCommands,vstring):
1474  raise ValueError("the 'outputCommands' argument must be of type cms.untracked.vstring")
1475  self.__process = process
1476  self.__SelectEvents = SelectEvents
1477  self.__outputCommands = outputCommands
1478  def dumpPython(self, options=PrintOptions()):
1479  out = "parentProcess"+str(hash(self))+" = process\n"
1480  out += self.__process.dumpPython()
1481  out += "childProcess = process\n"
1482  out += "process = parentProcess"+str(hash(self))+"\n"
1483  out += "process.addSubProcess(cms.SubProcess(process = childProcess, SelectEvents = "+self.__SelectEvents.dumpPython(options) +", outputCommands = "+self.__outputCommands.dumpPython(options) +"))"
1484  return out
1485  def getProcessName(self):
1486  return self.__process.name_()
1487  def process(self):
1488  return self.__process
1489  def SelectEvents(self):
1490  return self.__SelectEvents
1491  def outputCommands(self):
1492  return self.__outputCommands
1493  def type_(self):
1494  return 'subProcess'
1495  def nameInProcessDesc_(self,label):
1496  return label
1497  def _place(self,label,process):
1498  process._placeSubProcess('subProcess',self)
1499  def getSubProcessPSet(self,parameterSet):
1500  topPSet = parameterSet.newPSet()
1501  self.__process.fillProcessDesc(topPSet)
1502  subProcessPSet = parameterSet.newPSet()
1503  self.__SelectEvents.insertInto(subProcessPSet,"SelectEvents")
1504  self.__outputCommands.insertInto(subProcessPSet,"outputCommands")
1505  subProcessPSet.addPSet(False,"process",topPSet)
1506  return subProcessPSet
1507 
1509  """Helper class for Modifier that takes key/value pairs and uses them to reset parameters of the object"""
1510  def __init__(self,args):
1511  self.__args = args
1512  def __call__(self,obj):
1513  params = {}
1514  for k in six.iterkeys(self.__args):
1515  if hasattr(obj,k):
1516  params[k] = getattr(obj,k)
1518  for k in six.iterkeys(self.__args):
1519  if k in params:
1520  setattr(obj,k,params[k])
1521  else:
1522  #the parameter must have been removed
1523  delattr(obj,k)
1524  @staticmethod
1526  raise KeyError("Unknown parameter name "+key+" specified while calling Modifier")
1527 
1529  """A helper base class for _AndModifier, _InvertModifier, and _OrModifier to contain the common code"""
1530  def __init__(self, lhs, rhs=None):
1531  self._lhs = lhs
1532  if rhs is not None:
1533  self._rhs = rhs
1534  def toModify(self,obj, func=None,**kw):
1535  Modifier._toModifyCheck(obj,func,**kw)
1536  if not self._isChosen():
1537  return
1538  Modifier._toModify(obj,func,**kw)
1539  def toReplaceWith(self,toObj,fromObj):
1540  Modifier._toReplaceWithCheck(toObj,fromObj)
1541  if not self._isChosen():
1542  return
1543  Modifier._toReplaceWith(toObj,fromObj)
1544  def makeProcessModifier(self,func):
1545  """This is used to create a ProcessModifer that can perform actions on the process as a whole.
1546  This takes as argument a callable object (e.g. function) that takes as its sole argument an instance of Process.
1547  In order to work, the value returned from this function must be assigned to a uniquely named variable."""
1548  return ProcessModifier(self,func)
1549  def __and__(self, other):
1550  return _AndModifier(self,other)
1551  def __invert__(self):
1552  return _InvertModifier(self)
1553  def __or__(self, other):
1554  return _OrModifier(self,other)
1555 
1557  """A modifier which only applies if multiple Modifiers are chosen"""
1558  def __init__(self, lhs, rhs):
1559  super(_AndModifier,self).__init__(lhs, rhs)
1560  def _isChosen(self):
1561  return self._lhs._isChosen() and self._rhs._isChosen()
1562 
1564  """A modifier which only applies if a Modifier is not chosen"""
1565  def __init__(self, lhs):
1566  super(_InvertModifier,self).__init__(lhs)
1567  def _isChosen(self):
1568  return not self._lhs._isChosen()
1569 
1571  """A modifier which only applies if at least one of multiple Modifiers is chosen"""
1572  def __init__(self, lhs, rhs):
1573  super(_OrModifier,self).__init__(lhs, rhs)
1574  def _isChosen(self):
1575  return self._lhs._isChosen() or self._rhs._isChosen()
1576 
1577 
1579  """This class is used to define standard modifications to a Process.
1580  An instance of this class is declared to denote a specific modification,e.g. era2017 could
1581  reconfigure items in a process to match our expectation of running in 2017. Once declared,
1582  these Modifier instances are imported into a configuration and items that need to be modified
1583  are then associated with the Modifier and with the action to do the modification.
1584  The registered modifications will only occur if the Modifier was passed to
1585  the cms.Process' constructor.
1586  """
1587  def __init__(self):
1589  self.__chosen = False
1590  def makeProcessModifier(self,func):
1591  """This is used to create a ProcessModifer that can perform actions on the process as a whole.
1592  This takes as argument a callable object (e.g. function) that takes as its sole argument an instance of Process.
1593  In order to work, the value returned from this function must be assigned to a uniquely named variable.
1594  """
1595  return ProcessModifier(self,func)
1596  @staticmethod
1597  def _toModifyCheck(obj,func,**kw):
1598  if func is not None and len(kw) != 0:
1599  raise TypeError("toModify takes either two arguments or one argument and key/value pairs")
1600  def toModify(self,obj, func=None,**kw):
1601  """This is used to register an action to be performed on the specific object. Two different forms are allowed
1602  Form 1: A callable object (e.g. function) can be passed as the second. This callable object is expected to take one argument
1603  that will be the object passed in as the first argument.
1604  Form 2: A list of parameter name, value pairs can be passed
1605  mod.toModify(foo, fred=cms.int32(7), barney = cms.double(3.14))
1606  This form can also be used to remove a parameter by passing the value of None
1607  #remove the parameter foo.fred
1608  mod.toModify(foo, fred = None)
1609  Additionally, parameters embedded within PSets can also be modified using a dictionary
1610  #change foo.fred.pebbles to 3 and foo.fred.friend to "barney"
1611  mod.toModify(foo, fred = dict(pebbles = 3, friend = "barney)) )
1612  """
1613  Modifier._toModifyCheck(obj,func,**kw)
1614  if not self._isChosen():
1615  return
1616  Modifier._toModify(obj,func,**kw)
1617  @staticmethod
1618  def _toModify(obj,func,**kw):
1619  if func is not None:
1620  func(obj)
1621  else:
1622  temp =_ParameterModifier(kw)
1623  temp(obj)
1624  @staticmethod
1625  def _toReplaceWithCheck(toObj,fromObj):
1626  if not isinstance(fromObj, type(toObj)):
1627  raise TypeError("toReplaceWith requires both arguments to be the same class type")
1628  def toReplaceWith(self,toObj,fromObj):
1629  """If the Modifier is chosen the internals of toObj will be associated with the internals of fromObj
1630  """
1631  Modifier._toReplaceWithCheck(toObj,fromObj)
1632  if not self._isChosen():
1633  return
1634  Modifier._toReplaceWith(toObj,fromObj)
1635  @staticmethod
1636  def _toReplaceWith(toObj,fromObj):
1637  if isinstance(fromObj,_ModuleSequenceType):
1638  toObj._seq = fromObj._seq
1639  toObj._tasks = fromObj._tasks
1640  elif isinstance(fromObj,Task):
1641  toObj._collection = fromObj._collection
1642  elif isinstance(fromObj,_Parameterizable):
1643  #clear old items just incase fromObj is not a complete superset of toObj
1644  for p in toObj.parameterNames_():
1645  delattr(toObj,p)
1646  for p in fromObj.parameterNames_():
1647  setattr(toObj,p,getattr(fromObj,p))
1648  if isinstance(fromObj,_TypedParameterizable):
1649  toObj._TypedParameterizable__type = fromObj._TypedParameterizable__type
1650 
1651  else:
1652  raise TypeError("toReplaceWith does not work with type "+str(type(toObj)))
1653 
1654  def _setChosen(self):
1655  """Should only be called by cms.Process instances"""
1656  self.__chosen = True
1657  def _isChosen(self):
1658  return self.__chosen
1659  def __and__(self, other):
1660  return _AndModifier(self,other)
1661  def __invert__(self):
1662  return _InvertModifier(self)
1663  def __or__(self, other):
1664  return _OrModifier(self,other)
1665  def _isOrContains(self, other):
1666  return self == other
1667 
1668 
1670  """A Modifier made up of a list of Modifiers
1671  """
1672  def __init__(self, *chainedModifiers):
1673  self.__chosen = False
1674  self.__chain = chainedModifiers
1675  def _applyNewProcessModifiers(self,process):
1676  """Should only be called by cms.Process instances
1677  applies list of accumulated changes to the process"""
1678  for m in self.__chain:
1679  m._applyNewProcessModifiers(process)
1680  def _setChosen(self):
1681  """Should only be called by cms.Process instances"""
1682  self.__chosen = True
1683  for m in self.__chain:
1684  m._setChosen()
1685  def _isChosen(self):
1686  return self.__chosen
1687  def copyAndExclude(self, toExclude):
1688  """Creates a new ModifierChain which is a copy of
1689  this ModifierChain but excludes any Modifier or
1690  ModifierChain in the list toExclude.
1691  The exclusion is done recursively down the chain.
1692  """
1693  newMods = []
1694  for m in self.__chain:
1695  if m not in toExclude:
1696  s = m
1697  if isinstance(m,ModifierChain):
1698  s = m.__copyIfExclude(toExclude)
1699  newMods.append(s)
1700  return ModifierChain(*newMods)
1701  def __copyIfExclude(self,toExclude):
1702  shouldCopy = False
1703  for m in toExclude:
1704  if self._isOrContains(m):
1705  shouldCopy = True
1706  break
1707  if shouldCopy:
1708  return self.copyAndExclude(toExclude)
1709  return self
1710  def _isOrContains(self, other):
1711  if self is other:
1712  return True
1713  for m in self.__chain:
1714  if m._isOrContains(other):
1715  return True
1716  return False
1717 
1719  """A class used by a Modifier to affect an entire Process instance.
1720  When a Process 'loads' a module containing a ProcessModifier, that
1721  ProcessModifier will be applied to the Process if and only if the
1722  Modifier passed to the constructor has been chosen.
1723  """
1724  def __init__(self, modifier, func):
1725  self.__modifier = modifier
1726  self.__func = func
1727  self.__seenProcesses = set()
1728  def apply(self,process):
1729  if self.__modifier._isChosen():
1730  if process not in self.__seenProcesses:
1731  self.__func(process)
1732  self.__seenProcesses.add(process)
1733 
1734 if __name__=="__main__":
1735  import unittest
1736  import copy
1737 
1738  def _lineDiff(newString, oldString):
1739  newString = ( x for x in newString.split('\n') if len(x) > 0)
1740  oldString = [ x for x in oldString.split('\n') if len(x) > 0]
1741  diff = []
1742  oldStringLine = 0
1743  for l in newString:
1744  if oldStringLine >= len(oldString):
1745  diff.append(l)
1746  continue
1747  if l == oldString[oldStringLine]:
1748  oldStringLine +=1
1749  continue
1750  diff.append(l)
1751  return "\n".join( diff )
1752 
1754  """Has same interface as the C++ object that creates PSets
1755  """
1756  def __init__(self):
1757  self.values = dict()
1758  def __insertValue(self,tracked,label,value):
1759  self.values[label]=(tracked,value)
1760  def __getValue(self,tracked,label):
1761  pair = self.values[label]
1762  if pair[0] != tracked:
1763  raise Exception("Asked for %s parameter '%s', but it is %s" % ("tracked" if tracked else "untracked",
1764  label,
1765  "tracked" if pair[0] else "untracked"))
1766  return pair[1]
1767  def addInt32(self,tracked,label,value):
1768  self.__insertValue(tracked,label,value)
1769  def addVInt32(self,tracked,label,value):
1770  self.__insertValue(tracked,label,value)
1771  def addUInt32(self,tracked,label,value):
1772  self.__insertValue(tracked,label,value)
1773  def addVUInt32(self,tracked,label,value):
1774  self.__insertValue(tracked,label,value)
1775  def addInt64(self,tracked,label,value):
1776  self.__insertValue(tracked,label,value)
1777  def addVInt64(self,tracked,label,value):
1778  self.__insertValue(tracked,label,value)
1779  def addUInt64(self,tracked,label,value):
1780  self.__insertValue(tracked,label,value)
1781  def addVUInt64(self,tracked,label,value):
1782  self.__insertValue(tracked,label,value)
1783  def addDouble(self,tracked,label,value):
1784  self.__insertValue(tracked,label,value)
1785  def addVDouble(self,tracked,label,value):
1786  self.__insertValue(tracked,label,value)
1787  def addBool(self,tracked,label,value):
1788  self.__insertValue(tracked,label,value)
1789  def addString(self,tracked,label,value):
1790  self.__insertValue(tracked,label,value)
1791  def addVString(self,tracked,label,value):
1792  self.__insertValue(tracked,label,value)
1793  def getVString(self,tracked,label):
1794  return self.__getValue(tracked, label)
1795  def addInputTag(self,tracked,label,value):
1796  self.__insertValue(tracked,label,value)
1797  def addVInputTag(self,tracked,label,value):
1798  self.__insertValue(tracked,label,value)
1799  def addESInputTag(self,tracked,label,value):
1800  self.__insertValue(tracked,label,value)
1801  def addVESInputTag(self,tracked,label,value):
1802  self.__insertValue(tracked,label,value)
1803  def addEventID(self,tracked,label,value):
1804  self.__insertValue(tracked,label,value)
1805  def addVEventID(self,tracked,label,value):
1806  self.__insertValue(tracked,label,value)
1807  def addLuminosityBlockID(self,tracked,label,value):
1808  self.__insertValue(tracked,label,value)
1809  def addLuminosityBlockID(self,tracked,label,value):
1810  self.__insertValue(tracked,label,value)
1811  def addEventRange(self,tracked,label,value):
1812  self.__insertValue(tracked,label,value)
1813  def addVEventRange(self,tracked,label,value):
1814  self.__insertValue(tracked,label,value)
1815  def addPSet(self,tracked,label,value):
1816  self.__insertValue(tracked,label,value)
1817  def addVPSet(self,tracked,label,value):
1818  self.__insertValue(tracked,label,value)
1819  def addFileInPath(self,tracked,label,value):
1820  self.__insertValue(tracked,label,value)
1821  def newPSet(self):
1822  return TestMakePSet()
1823 
1825  def __init__(self, **kargs):
1826  super(SwitchProducerTest,self).__init__(
1827  dict(
1828  test1 = lambda: (True, -10),
1829  test2 = lambda: (True, -9),
1830  test3 = lambda: (True, -8),
1831  test4 = lambda: (True, -7)
1832  ), **kargs)
1833  specialImportRegistry.registerSpecialImportForType(SwitchProducerTest, "from test import SwitchProducerTest")
1834 
1835  class TestModuleCommand(unittest.TestCase):
1836  def setUp(self):
1837  """Nothing to do """
1838  None
1840  p = _Parameterizable()
1841  self.assertEqual(len(p.parameterNames_()),0)
1842  p.a = int32(1)
1843  self.assertTrue('a' in p.parameterNames_())
1844  self.assertEqual(p.a.value(), 1)
1845  p.a = 10
1846  self.assertEqual(p.a.value(), 10)
1847  p.a = untracked(int32(1))
1848  self.assertEqual(p.a.value(), 1)
1849  self.assertFalse(p.a.isTracked())
1850  p.a = untracked.int32(1)
1851  self.assertEqual(p.a.value(), 1)
1852  self.assertFalse(p.a.isTracked())
1853  p = _Parameterizable(foo=int32(10), bar = untracked(double(1.0)))
1854  self.assertEqual(p.foo.value(), 10)
1855  self.assertEqual(p.bar.value(),1.0)
1856  self.assertFalse(p.bar.isTracked())
1857  self.assertRaises(TypeError,setattr,(p,'c',1))
1858  p = _Parameterizable(a=PSet(foo=int32(10), bar = untracked(double(1.0))))
1859  self.assertEqual(p.a.foo.value(),10)
1860  self.assertEqual(p.a.bar.value(),1.0)
1861  p.b = untracked(PSet(fii = int32(1)))
1862  self.assertEqual(p.b.fii.value(),1)
1863  self.assertFalse(p.b.isTracked())
1864  #test the fact that values can be shared
1865  v = int32(10)
1866  p=_Parameterizable(a=v)
1867  v.setValue(11)
1868  self.assertEqual(p.a.value(),11)
1869  p.a = 12
1870  self.assertEqual(p.a.value(),12)
1871  self.assertEqual(v.value(),12)
1873  p = _TypedParameterizable("blah", b=int32(1))
1874  #see if copy works deeply
1875  other = p.copy()
1876  other.b = 2
1877  self.assertNotEqual(p.b,other.b)
1878 
1880  p = Process("test")
1881  p.a = EDAnalyzer("MyAnalyzer")
1882  self.assertTrue( 'a' in p.analyzers_() )
1883  self.assertTrue( 'a' in p.analyzers)
1884  p.add_(Service("MessageLogger"))
1885  self.assertTrue('MessageLogger' in p.services_())
1886  self.assertEqual(p.MessageLogger.type_(), "MessageLogger")
1887  p.Tracer = Service("Tracer")
1888  self.assertTrue('Tracer' in p.services_())
1889  self.assertRaises(TypeError, setattr, *(p,'b',"this should fail"))
1890  self.assertRaises(TypeError, setattr, *(p,'bad',Service("MessageLogger")))
1891  self.assertRaises(ValueError, setattr, *(p,'bad',Source("PoolSource")))
1892  p.out = OutputModule("Outer")
1893  self.assertEqual(p.out.type_(), 'Outer')
1894  self.assertTrue( 'out' in p.outputModules_() )
1895 
1896  p.geom = ESSource("GeomProd")
1897  self.assertTrue('geom' in p.es_sources_())
1898  p.add_(ESSource("ConfigDB"))
1899  self.assertTrue('ConfigDB' in p.es_sources_())
1900 
1901  p.aliasfoo1 = EDAlias(foo1 = VPSet(PSet(type = string("Foo1"))))
1902  self.assertTrue('aliasfoo1' in p.aliases_())
1903 
1905  class FromArg(object):
1906  def __init__(self,*arg,**args):
1907  for name in six.iterkeys(args):
1908  self.__dict__[name]=args[name]
1909 
1910  a=EDAnalyzer("MyAnalyzer")
1911  t=EDAnalyzer("MyAnalyzer")
1912  t.setLabel("foo")
1913  s1 = Sequence(a)
1914  s2 = Sequence(s1)
1915  s3 = Sequence(s2)
1916  d = FromArg(
1917  a=a,
1918  b=Service("Full"),
1919  c=Path(a),
1920  d=s2,
1921  e=s1,
1922  f=s3,
1923  g=Sequence(s1+s2+s3)
1924  )
1925  p = Process("Test")
1926  p.extend(d)
1927  self.assertEqual(p.a.type_(),"MyAnalyzer")
1928  self.assertEqual(p.a.label_(),"a")
1929  self.assertRaises(AttributeError,getattr,p,'b')
1930  self.assertEqual(p.Full.type_(),"Full")
1931  self.assertEqual(str(p.c),'a')
1932  self.assertEqual(str(p.d),'a')
1933 
1934  z1 = FromArg(
1935  a=a,
1936  b=Service("Full"),
1937  c=Path(a),
1938  d=s2,
1939  e=s1,
1940  f=s3,
1941  s4=s3,
1942  g=Sequence(s1+s2+s3)
1943  )
1944 
1945  p1 = Process("Test")
1946  #p1.extend(z1)
1947  self.assertRaises(ValueError, p1.extend, z1)
1948 
1949  z2 = FromArg(
1950  a=a,
1951  b=Service("Full"),
1952  c=Path(a),
1953  d=s2,
1954  e=s1,
1955  f=s3,
1956  aaa=copy.deepcopy(a),
1957  s4=copy.deepcopy(s3),
1958  g=Sequence(s1+s2+s3),
1959  t=t
1960  )
1961  p2 = Process("Test")
1962  p2.extend(z2)
1963  #self.assertRaises(ValueError, p2.extend, z2)
1964  self.assertEqual(p2.s4.label_(),"s4")
1965  #p2.s4.setLabel("foo")
1966  self.assertRaises(ValueError, p2.s4.setLabel, "foo")
1967  p2.s4.setLabel("s4")
1968  p2.s4.setLabel(None)
1969  p2.s4.setLabel("foo")
1970  p2._Process__setObjectLabel(p2.s4, "foo")
1971  p2._Process__setObjectLabel(p2.s4, None)
1972  p2._Process__setObjectLabel(p2.s4, "bar")
1973 
1974 
1975  p = Process('test')
1976  p.a = EDProducer("MyProducer")
1977  p.t = Task(p.a)
1978  p.p = Path(p.t)
1979  self.assertRaises(ValueError, p.extend, FromArg(a = EDProducer("YourProducer")))
1980  self.assertRaises(ValueError, p.extend, FromArg(a = EDAlias()))
1981  self.assertRaises(ValueError, p.__setattr__, "a", EDAlias())
1982 
1983  p = Process('test')
1984  p.a = EDProducer("MyProducer")
1985  p.s = Sequence(p.a)
1986  p.p = Path(p.s)
1987  self.assertRaises(ValueError, p.extend, FromArg(a = EDProducer("YourProducer")))
1988  self.assertRaises(ValueError, p.extend, FromArg(a = EDAlias()))
1989  self.assertRaises(ValueError, p.__setattr__, "a", EDAlias())
1990 
1992  self.assertEqual(Process("test").dumpPython(),
1993 """import FWCore.ParameterSet.Config as cms
1994 
1995 process = cms.Process("test")
1996 
1997 process.maxEvents = cms.untracked.PSet(
1998  input = cms.optional.untracked.int32,
1999  output = cms.optional.untracked.allowed(cms.int32,cms.PSet)
2000 )
2001 
2002 process.maxLuminosityBlocks = cms.untracked.PSet(
2003  input = cms.untracked.int32(-1)
2004 )
2005 
2006 process.options = cms.untracked.PSet(
2007  FailPath = cms.untracked.vstring(),
2008  IgnoreCompletely = cms.untracked.vstring(),
2009  Rethrow = cms.untracked.vstring(),
2010  SkipEvent = cms.untracked.vstring(),
2011  allowUnscheduled = cms.obsolete.untracked.bool,
2012  canDeleteEarly = cms.untracked.vstring(),
2013  emptyRunLumiMode = cms.obsolete.untracked.string,
2014  eventSetup = cms.untracked.PSet(
2015  forceNumberOfConcurrentIOVs = cms.untracked.PSet(
2016  allowAnyLabel_=cms.required.untracked.uint32
2017  ),
2018  numberOfConcurrentIOVs = cms.untracked.uint32(1)
2019  ),
2020  fileMode = cms.untracked.string('FULLMERGE'),
2021  forceEventSetupCacheClearOnNewRun = cms.untracked.bool(False),
2022  makeTriggerResults = cms.obsolete.untracked.bool,
2023  numberOfConcurrentLuminosityBlocks = cms.untracked.uint32(1),
2024  numberOfConcurrentRuns = cms.untracked.uint32(1),
2025  numberOfStreams = cms.untracked.uint32(0),
2026  numberOfThreads = cms.untracked.uint32(1),
2027  printDependencies = cms.untracked.bool(False),
2028  sizeOfStackForThreadsInKB = cms.optional.untracked.uint32,
2029  throwIfIllegalParameter = cms.untracked.bool(True),
2030  wantSummary = cms.untracked.bool(False)
2031 )
2032 
2033 """)
2034  p = Process("test")
2035  p.a = EDAnalyzer("MyAnalyzer")
2036  p.p = Path(p.a)
2037  p.s = Sequence(p.a)
2038  p.r = Sequence(p.s)
2039  p.p2 = Path(p.s)
2040  p.schedule = Schedule(p.p2,p.p)
2041  d=p.dumpPython()
2042  self.assertEqual(_lineDiff(d,Process("test").dumpPython()),
2043 """process.a = cms.EDAnalyzer("MyAnalyzer")
2044 process.s = cms.Sequence(process.a)
2045 process.r = cms.Sequence(process.s)
2046 process.p = cms.Path(process.a)
2047 process.p2 = cms.Path(process.s)
2048 process.schedule = cms.Schedule(*[ process.p2, process.p ])""")
2049  #Reverse order of 'r' and 's'
2050  p = Process("test")
2051  p.a = EDAnalyzer("MyAnalyzer")
2052  p.p = Path(p.a)
2053  p.r = Sequence(p.a)
2054  p.s = Sequence(p.r)
2055  p.p2 = Path(p.r)
2056  p.schedule = Schedule(p.p2,p.p)
2057  p.b = EDAnalyzer("YourAnalyzer")
2058  d=p.dumpPython()
2059  self.assertEqual(_lineDiff(d,Process("test").dumpPython()),
2060 """process.a = cms.EDAnalyzer("MyAnalyzer")
2061 process.b = cms.EDAnalyzer("YourAnalyzer")
2062 process.r = cms.Sequence(process.a)
2063 process.s = cms.Sequence(process.r)
2064 process.p = cms.Path(process.a)
2065 process.p2 = cms.Path(process.r)
2066 process.schedule = cms.Schedule(*[ process.p2, process.p ])""")
2067  #use an anonymous sequence
2068  p = Process("test")
2069  p.a = EDAnalyzer("MyAnalyzer")
2070  p.p = Path(p.a)
2071  s = Sequence(p.a)
2072  p.r = Sequence(s)
2073  p.p2 = Path(p.r)
2074  p.schedule = Schedule(p.p2,p.p)
2075  d=p.dumpPython()
2076  self.assertEqual(_lineDiff(d,Process("test").dumpPython()),
2077 """process.a = cms.EDAnalyzer("MyAnalyzer")
2078 process.r = cms.Sequence((process.a))
2079 process.p = cms.Path(process.a)
2080 process.p2 = cms.Path(process.r)
2081 process.schedule = cms.Schedule(*[ process.p2, process.p ])""")
2082 
2083  # include some tasks
2084  p = Process("test")
2085  p.a = EDAnalyzer("MyAnalyzer")
2086  p.b = EDProducer("bProducer")
2087  p.c = EDProducer("cProducer")
2088  p.d = EDProducer("dProducer")
2089  p.e = EDProducer("eProducer")
2090  p.f = EDProducer("fProducer")
2091  p.g = EDProducer("gProducer")
2092  p.task5 = Task()
2093  p.task3 = Task()
2094  p.task2 = Task(p.c, p.task3)
2095  p.task4 = Task(p.f, p.task2)
2096  p.task1 = Task(p.task5)
2097  p.task3.add(p.task1)
2098  p.p = Path(p.a)
2099  s = Sequence(p.a)
2100  p.r = Sequence(s)
2101  p.p2 = Path(p.r, p.task1, p.task2)
2102  p.schedule = Schedule(p.p2,p.p,tasks=[p.task3,p.task4, p.task5])
2103  d=p.dumpPython()
2104  self.assertEqual(_lineDiff(d,Process("test").dumpPython()),
2105 """process.b = cms.EDProducer("bProducer")
2106 process.c = cms.EDProducer("cProducer")
2107 process.d = cms.EDProducer("dProducer")
2108 process.e = cms.EDProducer("eProducer")
2109 process.f = cms.EDProducer("fProducer")
2110 process.g = cms.EDProducer("gProducer")
2111 process.a = cms.EDAnalyzer("MyAnalyzer")
2112 process.task5 = cms.Task()
2113 process.task1 = cms.Task(process.task5)
2114 process.task3 = cms.Task(process.task1)
2115 process.task2 = cms.Task(process.c, process.task3)
2116 process.task4 = cms.Task(process.f, process.task2)
2117 process.r = cms.Sequence((process.a))
2118 process.p = cms.Path(process.a)
2119 process.p2 = cms.Path(process.r, process.task1, process.task2)
2120 process.schedule = cms.Schedule(*[ process.p2, process.p ], tasks=[process.task3, process.task4, process.task5])""")
2121  # only tasks
2122  p = Process("test")
2123  p.d = EDProducer("dProducer")
2124  p.e = EDProducer("eProducer")
2125  p.f = EDProducer("fProducer")
2126  p.g = EDProducer("gProducer")
2127  p.task1 = Task(p.d, p.e)
2128  task2 = Task(p.f, p.g)
2129  p.schedule = Schedule(tasks=[p.task1,task2])
2130  d=p.dumpPython()
2131  self.assertEqual(_lineDiff(d,Process("test").dumpPython()),
2132 """process.d = cms.EDProducer("dProducer")
2133 process.e = cms.EDProducer("eProducer")
2134 process.f = cms.EDProducer("fProducer")
2135 process.g = cms.EDProducer("gProducer")
2136 process.task1 = cms.Task(process.d, process.e)
2137 process.schedule = cms.Schedule(tasks=[cms.Task(process.f, process.g), process.task1])""")
2138  # empty schedule
2139  p = Process("test")
2140  p.schedule = Schedule()
2141  d=p.dumpPython()
2142  self.assertEqual(_lineDiff(d,Process('test').dumpPython()),
2143 """process.schedule = cms.Schedule()""")
2144 
2145  s = Sequence()
2146  a = EDProducer("A")
2147  s2 = Sequence(a)
2148  s2 += s
2149  process = Process("DUMP")
2150  process.a = a
2151  process.s2 = s2
2152  d=process.dumpPython()
2153  self.assertEqual(_lineDiff(d,Process('DUMP').dumpPython()),
2154 """process.a = cms.EDProducer("A")
2155 process.s2 = cms.Sequence(process.a)""")
2156  s = Sequence()
2157  s1 = Sequence(s)
2158  a = EDProducer("A")
2159  s3 = Sequence(a+a)
2160  s2 = Sequence(a+s3)
2161  s2 += s1
2162  process = Process("DUMP")
2163  process.a = a
2164  process.s2 = s2
2165  d=process.dumpPython()
2166  self.assertEqual(_lineDiff(d,Process('DUMP').dumpPython()),
2167 """process.a = cms.EDProducer("A")
2168 process.s2 = cms.Sequence(process.a+(process.a+process.a))""")
2169 
2170  def testSecSource(self):
2171  p = Process('test')
2172  p.a = SecSource("MySecSource")
2173  self.assertEqual(_lineDiff(p.dumpPython(),Process('test').dumpPython()),'process.a = cms.SecSource("MySecSource")')
2174 
2176  p = Process('test')
2177  p.a = EDAnalyzer("MyAnalyzer")
2178  old = p.a
2179  p.b = EDAnalyzer("YourAnalyzer")
2180  p.c = EDAnalyzer("OurAnalyzer")
2181  p.d = EDProducer("MyProducer")
2182  old2 = p.d
2183  p.t1 = Task(p.d)
2184  t2 = Task(p.d)
2185  t3 = Task(p.d)
2186  t4 = Task(p.d)
2187  t5 = Task(p.d)
2188  t6 = Task(p.d)
2189  s = Sequence(p.a*p.b)
2190  p.s4 = Sequence(p.a*p.b)
2191  s.associate(t2)
2192  p.s4.associate(t2)
2193  p.p = Path(p.c+s+p.a)
2194  p.p2 = Path(p.c+p.s4+p.a)
2195  p.e3 = EndPath(p.c+s+p.a)
2196  new = EDAnalyzer("NewAnalyzer")
2197  new2 = EDProducer("NewProducer")
2198  visitor1 = NodeVisitor()
2199  p.p.visit(visitor1)
2200  self.assertTrue(visitor1.modules == set([old,old2,p.b,p.c]))
2201  p.schedule = Schedule(tasks=[t6])
2202  p.globalReplace("a",new)
2203  p.globalReplace("d",new2)
2204  visitor2 = NodeVisitor()
2205  p.p.visit(visitor2)
2206  self.assertTrue(visitor2.modules == set([new,new2,p.b,p.c]))
2207  self.assertEqual(p.p.dumpPython()[:-1], "cms.Path(process.c+process.a+process.b+process.a, cms.Task(process.d))")
2208  visitor_p2 = NodeVisitor()
2209  p.p2.visit(visitor_p2)
2210  self.assertTrue(visitor_p2.modules == set([new,new2,p.b,p.c]))
2211  self.assertEqual(p.p2.dumpPython()[:-1], "cms.Path(process.c+process.s4+process.a)")
2212  visitor3 = NodeVisitor()
2213  p.e3.visit(visitor3)
2214  self.assertTrue(visitor3.modules == set([new,new2,p.b,p.c]))
2215  visitor4 = NodeVisitor()
2216  p.s4.visit(visitor4)
2217  self.assertTrue(visitor4.modules == set([new,new2,p.b]))
2218  self.assertEqual(p.s4.dumpPython()[:-1],"cms.Sequence(process.a+process.b, cms.Task(process.d))")
2219  visitor5 = NodeVisitor()
2220  p.t1.visit(visitor5)
2221  self.assertTrue(visitor5.modules == set([new2]))
2222  visitor6 = NodeVisitor()
2223  listOfTasks = list(p.schedule._tasks)
2224  listOfTasks[0].visit(visitor6)
2225  self.assertTrue(visitor6.modules == set([new2]))
2226 
2227  def testSequence(self):
2228  p = Process('test')
2229  p.a = EDAnalyzer("MyAnalyzer")
2230  p.b = EDAnalyzer("YourAnalyzer")
2231  p.c = EDAnalyzer("OurAnalyzer")
2232  p.s = Sequence(p.a*p.b)
2233  self.assertEqual(str(p.s),'a+b')
2234  self.assertEqual(p.s.label_(),'s')
2235  path = Path(p.c+p.s)
2236  self.assertEqual(str(path),'c+a+b')
2237  p._validateSequence(path, 'p1')
2238  notInProcess = EDAnalyzer('NotInProcess')
2239  p2 = Path(p.c+p.s*notInProcess)
2240  self.assertRaises(RuntimeError, p._validateSequence, p2, 'p2')
2241 
2242  def testSequence2(self):
2243  p = Process('test')
2244  p.a = EDAnalyzer("MyAnalyzer")
2245  p.b = EDAnalyzer("YourAnalyzer")
2246  p.c = EDAnalyzer("OurAnalyzer")
2247  testseq = Sequence(p.a*p.b)
2248  p.s = testseq
2249  #p.y = testseq
2250  self.assertRaises(ValueError, p.__setattr__, "y", testseq)
2251 
2253  service = Service("d")
2254  self.assertFalse(service._inProcess)
2255  process = Process("test")
2256  process.d = service
2257  self.assertTrue(service._inProcess)
2258  service2 = Service("d")
2259  process.d = service2
2260  self.assertFalse(service._inProcess)
2261  self.assertTrue(service2._inProcess)
2262  del process.d
2263  self.assertFalse(service2._inProcess)
2264 
2265  def testTask(self):
2266 
2267  # create some objects to use in tests
2268  edanalyzer = EDAnalyzer("a")
2269  edproducer = EDProducer("b")
2270  edproducer2 = EDProducer("b2")
2271  edproducer3 = EDProducer("b3")
2272  edproducer4 = EDProducer("b4")
2273  edproducer8 = EDProducer("b8")
2274  edproducer9 = EDProducer("b9")
2275  edfilter = EDFilter("c")
2276  service = Service("d")
2277  service3 = Service("d")
2278  essource = ESSource("e")
2279  esproducer = ESProducer("f")
2280  testTask2 = Task()
2281 
2282  # test adding things to Tasks
2283  testTask1 = Task(edproducer, edfilter)
2284  self.assertRaises(RuntimeError, testTask1.add, edanalyzer)
2285  testTask1.add(essource, service)
2286  testTask1.add(essource, esproducer)
2287  testTask1.add(testTask2)
2288  coll = testTask1._collection
2289  self.assertTrue(edproducer in coll)
2290  self.assertTrue(edfilter in coll)
2291  self.assertTrue(service in coll)
2292  self.assertTrue(essource in coll)
2293  self.assertTrue(esproducer in coll)
2294  self.assertTrue(testTask2 in coll)
2295  self.assertTrue(len(coll) == 6)
2296  self.assertTrue(len(testTask2._collection) == 0)
2297 
2298  taskContents = []
2299  for i in testTask1:
2300  taskContents.append(i)
2301  self.assertTrue(taskContents == [edproducer, edfilter, essource, service, esproducer, testTask2])
2302 
2303  # test attaching Task to Process
2304  process = Process("test")
2305 
2306  process.mproducer = edproducer
2307  process.mproducer2 = edproducer2
2308  process.mfilter = edfilter
2309  process.messource = essource
2310  process.mesproducer = esproducer
2311  process.d = service
2312 
2313  testTask3 = Task(edproducer, edproducer2)
2314  testTask1.add(testTask3)
2315  process.myTask1 = testTask1
2316 
2317  # test the validation that occurs when attaching a Task to a Process
2318  # first a case that passes, then one the fails on an EDProducer
2319  # then one that fails on a service
2320  l = set()
2321  visitor = NodeNameVisitor(l)
2322  testTask1.visit(visitor)
2323  self.assertTrue(l == set(['mesproducer', 'mproducer', 'mproducer2', 'mfilter', 'd', 'messource']))
2324  l2 = testTask1.moduleNames
2325  self.assertTrue(l == set(['mesproducer', 'mproducer', 'mproducer2', 'mfilter', 'd', 'messource']))
2326 
2327  testTask4 = Task(edproducer3)
2328  l.clear()
2329  self.assertRaises(RuntimeError, testTask4.visit, visitor)
2330  try:
2331  process.myTask4 = testTask4
2332  self.assertTrue(False)
2333  except RuntimeError:
2334  pass
2335 
2336  testTask5 = Task(service3)
2337  l.clear()
2338  self.assertRaises(RuntimeError, testTask5.visit, visitor)
2339  try:
2340  process.myTask5 = testTask5
2341  self.assertTrue(False)
2342  except RuntimeError:
2343  pass
2344 
2345  process.d = service3
2346  process.myTask5 = testTask5
2347 
2348  # test placement into the Process and the tasks property
2349  expectedDict = { 'myTask1' : testTask1, 'myTask5' : testTask5 }
2350  expectedFixedDict = DictTypes.FixedKeysDict(expectedDict);
2351  self.assertTrue(process.tasks == expectedFixedDict)
2352  self.assertTrue(process.tasks['myTask1'] == testTask1)
2353  self.assertTrue(process.myTask1 == testTask1)
2354 
2355  # test replacing an EDProducer in a Task when calling __settattr__
2356  # for the EDProducer on the Process.
2357  process.mproducer2 = edproducer4
2358  process.d = service
2359  l = list()
2360  visitor1 = ModuleNodeVisitor(l)
2361  testTask1.visit(visitor1)
2362  l.sort(key=lambda mod: mod.__str__())
2363  expectedList = sorted([edproducer,essource,esproducer,service,edfilter,edproducer,edproducer4],key=lambda mod: mod.__str__())
2364  self.assertTrue(expectedList == l)
2365  process.myTask6 = Task()
2366  process.myTask7 = Task()
2367  process.mproducer8 = edproducer8
2368  process.myTask8 = Task(process.mproducer8)
2369  process.myTask6.add(process.myTask7)
2370  process.myTask7.add(process.myTask8)
2371  process.myTask1.add(process.myTask6)
2372  process.myTask8.add(process.myTask5)
2373 
2374  testDict = process._itemsInDependencyOrder(process.tasks)
2375  expectedLabels = ["myTask5", "myTask8", "myTask7", "myTask6", "myTask1"]
2376  expectedTasks = [process.myTask5, process.myTask8, process.myTask7, process.myTask6, process.myTask1]
2377  index = 0
2378  for testLabel, testTask in testDict.items():
2379  self.assertTrue(testLabel == expectedLabels[index])
2380  self.assertTrue(testTask == expectedTasks[index])
2381  index += 1
2382 
2383  pythonDump = testTask1.dumpPython(PrintOptions())
2384 
2385 
2386  expectedPythonDump = 'cms.Task(process.d, process.mesproducer, process.messource, process.mfilter, process.mproducer, process.mproducer2, process.myTask6)\n'
2387  self.assertTrue(pythonDump == expectedPythonDump)
2388 
2389  process.myTask5 = Task()
2390  process.myTask100 = Task()
2391  process.mproducer9 = edproducer9
2392  sequence1 = Sequence(process.mproducer8, process.myTask1, process.myTask5, testTask2, testTask3)
2393  sequence2 = Sequence(process.mproducer8 + process.mproducer9)
2394  process.sequence3 = Sequence((process.mproducer8 + process.mfilter))
2395  sequence4 = Sequence()
2396  process.path1 = Path(process.mproducer+process.mproducer8+sequence1+sequence2+process.sequence3+sequence4)
2397  process.path1.associate(process.myTask1, process.myTask5, testTask2, testTask3)
2398  process.path11 = Path(process.mproducer+process.mproducer8+sequence1+sequence2+process.sequence3+ sequence4,process.myTask1, process.myTask5, testTask2, testTask3, process.myTask100)
2399  process.path2 = Path(process.mproducer)
2400  process.path3 = Path(process.mproducer9+process.mproducer8,testTask2)
2401 
2402  self.assertTrue(process.path1.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer+process.mproducer8+cms.Sequence(process.mproducer8, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask5)+(process.mproducer8+process.mproducer9)+process.sequence3, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask5)\n')
2403 
2404  self.assertTrue(process.path11.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer+process.mproducer8+cms.Sequence(process.mproducer8, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask5)+(process.mproducer8+process.mproducer9)+process.sequence3, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask100, process.myTask5)\n')
2405 
2406  # test NodeNameVisitor and moduleNames
2407  l = set()
2408  nameVisitor = NodeNameVisitor(l)
2409  process.path1.visit(nameVisitor)
2410  self.assertTrue(l == set(['mproducer', 'd', 'mesproducer', None, 'mproducer9', 'mproducer8', 'messource', 'mproducer2', 'mfilter']))
2411  self.assertTrue(process.path1.moduleNames() == set(['mproducer', 'd', 'mesproducer', None, 'mproducer9', 'mproducer8', 'messource', 'mproducer2', 'mfilter']))
2412 
2413  # test copy
2414  process.mproducer10 = EDProducer("b10")
2415  process.path21 = process.path11.copy()
2416  process.path21.replace(process.mproducer, process.mproducer10)
2417 
2418  self.assertTrue(process.path11.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer+process.mproducer8+cms.Sequence(process.mproducer8, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask5)+(process.mproducer8+process.mproducer9)+process.sequence3, cms.Task(), cms.Task(process.None, process.mproducer), process.myTask1, process.myTask100, process.myTask5)\n')
2419 
2420  # Some peculiarities of the way things work show up here. dumpPython sorts tasks and
2421  # removes duplication at the level of strings. The Task and Sequence objects themselves
2422  # remove duplicate tasks in their contents if the instances are the same (exact same python
2423  # object id which is not the same as the string representation being the same).
2424  # Also note that the mutating visitor replaces sequences and tasks that have
2425  # modified contents with their modified contents, it does not modify the sequence
2426  # or task itself.
2427  self.assertTrue(process.path21.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer10+process.mproducer8+process.mproducer8+(process.mproducer8+process.mproducer9)+process.sequence3, cms.Task(), cms.Task(process.None, process.mproducer10), cms.Task(process.d, process.mesproducer, process.messource, process.mfilter, process.mproducer10, process.mproducer2, process.myTask6), process.myTask100, process.myTask5)\n')
2428 
2429  process.path22 = process.path21.copyAndExclude([process.d, process.mesproducer, process.mfilter])
2430  self.assertTrue(process.path22.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer10+process.mproducer8+process.mproducer8+(process.mproducer8+process.mproducer9)+process.mproducer8, cms.Task(), cms.Task(process.None, process.mproducer10), cms.Task(process.messource, process.mproducer10, process.mproducer2, process.myTask6), process.myTask100, process.myTask5)\n')
2431 
2432  process.path23 = process.path22.copyAndExclude([process.messource, process.mproducer10])
2433  self.assertTrue(process.path23.dumpPython(PrintOptions()) == 'cms.Path(process.mproducer8+process.mproducer8+(process.mproducer8+process.mproducer9)+process.mproducer8, cms.Task(), cms.Task(process.None), cms.Task(process.mproducer2, process.myTask6), process.myTask100, process.myTask5)\n')
2434 
2435  process.a = EDAnalyzer("MyAnalyzer")
2436  process.b = OutputModule("MyOutputModule")
2437  process.c = EDFilter("MyFilter")
2438  process.d = EDProducer("MyProducer")
2439  process.e = ESProducer("MyESProducer")
2440  process.f = ESSource("MyESSource")
2441  process.g = ESProducer("g")
2442  process.path24 = Path(process.a+process.b+process.c+process.d)
2443  process.path25 = process.path24.copyAndExclude([process.a,process.b,process.c])
2444  self.assertTrue(process.path25.dumpPython() == 'cms.Path(process.d)\n')
2445  #print process.path3
2446  #print process.dumpPython()
2447 
2448  process.path200 = EndPath(Sequence(process.c,Task(process.e)))
2449  process.path200.replace(process.c,process.b)
2450  process.path200.replace(process.e,process.f)
2451  self.assertEqual(process.path200.dumpPython(), "cms.EndPath(process.b, cms.Task(process.f))\n")
2452  process.path200.replace(process.b,process.c)
2453  process.path200.replace(process.f,process.e)
2454  self.assertEqual(process.path200.dumpPython(), "cms.EndPath(process.c, cms.Task(process.e))\n")
2455  process.path200.replace(process.c,process.a)
2456  process.path200.replace(process.e,process.g)
2457  self.assertEqual(process.path200.dumpPython(), "cms.EndPath(process.a, cms.Task(process.g))\n")
2458  process.path200.replace(process.a,process.c)
2459  process.path200.replace(process.g,process.e)
2460  self.assertEqual(process.path200.dumpPython(), "cms.EndPath(process.c, cms.Task(process.e))\n")
2461 
2462 
2463  def testPath(self):
2464  p = Process("test")
2465  p.a = EDAnalyzer("MyAnalyzer")
2466  p.b = EDAnalyzer("YourAnalyzer")
2467  p.c = EDAnalyzer("OurAnalyzer")
2468  path = Path(p.a)
2469  path *= p.b
2470  path += p.c
2471  self.assertEqual(str(path),'a+b+c')
2472  path = Path(p.a*p.b+p.c)
2473  self.assertEqual(str(path),'a+b+c')
2474 # path = Path(p.a)*p.b+p.c #This leads to problems with sequences
2475 # self.assertEqual(str(path),'((a*b)+c)')
2476  path = Path(p.a+ p.b*p.c)
2477  self.assertEqual(str(path),'a+b+c')
2478  path = Path(p.a*(p.b+p.c))
2479  self.assertEqual(str(path),'a+b+c')
2480  path = Path(p.a*(p.b+~p.c))
2481  pathx = Path(p.a*(p.b+ignore(p.c)))
2482  self.assertEqual(str(path),'a+b+~c')
2483  p.es = ESProducer("AnESProducer")
2484  self.assertRaises(TypeError,Path,p.es)
2485 
2486  t = Path()
2487  self.assertTrue(t.dumpPython(PrintOptions()) == 'cms.Path()\n')
2488 
2489  t = Path(p.a)
2490  self.assertTrue(t.dumpPython(PrintOptions()) == 'cms.Path(process.a)\n')
2491 
2492  t = Path(Task())
2493  self.assertTrue(t.dumpPython(PrintOptions()) == 'cms.Path(cms.Task())\n')
2494 
2495  t = Path(p.a, Task())
2496  self.assertTrue(t.dumpPython(PrintOptions()) == 'cms.Path(process.a, cms.Task())\n')
2497 
2498  p.prod = EDProducer("prodName")
2499  p.t1 = Task(p.prod)
2500  t = Path(p.a, p.t1, Task(), p.t1)
2501  self.assertTrue(t.dumpPython(PrintOptions()) == 'cms.Path(process.a, cms.Task(), process.t1)\n')
2502 
2504  p = Process("test")
2505  a = EDAnalyzer("MyAnalyzer")
2506  p.a = a
2507  a.setLabel("a")
2508  b = EDAnalyzer("YOurAnalyzer")
2509  p.b = b
2510  b.setLabel("b")
2511  path = Path(a * b)
2512  p.path = Path(p.a*p.b)
2513  lookuptable = {id(a): p.a, id(b): p.b}
2514  #self.assertEqual(str(path),str(path._postProcessFixup(lookuptable)))
2515  #lookuptable = p._cloneToObjectDict
2516  #self.assertEqual(str(path),str(path._postProcessFixup(lookuptable)))
2517  self.assertEqual(str(path),str(p.path))
2518 
2519  def testContains(self):
2520 
2521  a = EDProducer("a")
2522  b = EDProducer("b")
2523  c = EDProducer("c")
2524  d = EDProducer("d")
2525  e = EDProducer("e")
2526  f = EDProducer("f")
2527  g = EDProducer("g")
2528  h = EDProducer("h")
2529  i = EDProducer("i")
2530  j = EDProducer("j")
2531  k = EDProducer("k")
2532  l = EDProducer("l")
2533  m = EDProducer("m")
2534  n = EDProducer("n")
2535 
2536  seq1 = Sequence(e)
2537  task1 = Task(g)
2538  path = Path(a * c * seq1, task1)
2539 
2540  self.assertTrue(path.contains(a))
2541  self.assertFalse(path.contains(b))
2542  self.assertTrue(path.contains(c))
2543  self.assertFalse(path.contains(d))
2544  self.assertTrue(path.contains(e))
2545  self.assertFalse(path.contains(f))
2546  self.assertTrue(path.contains(g))
2547 
2548  endpath = EndPath(h * i)
2549  self.assertFalse(endpath.contains(b))
2550  self.assertTrue(endpath.contains(i))
2551 
2552  seq = Sequence(a * c)
2553  self.assertFalse(seq.contains(b))
2554  self.assertTrue(seq.contains(c))
2555 
2556  task2 = Task(l)
2557  task = Task(j, k, task2)
2558  self.assertFalse(task.contains(b))
2559  self.assertTrue(task.contains(j))
2560  self.assertTrue(task.contains(k))
2561  self.assertTrue(task.contains(l))
2562 
2563  task3 = Task(m)
2564  path2 = Path(n)
2565  sch = Schedule(path, path2, tasks=[task,task3])
2566  self.assertFalse(sch.contains(b))
2567  self.assertTrue(sch.contains(a))
2568  self.assertTrue(sch.contains(c))
2569  self.assertTrue(sch.contains(e))
2570  self.assertTrue(sch.contains(g))
2571  self.assertTrue(sch.contains(n))
2572  self.assertTrue(sch.contains(j))
2573  self.assertTrue(sch.contains(k))
2574  self.assertTrue(sch.contains(l))
2575  self.assertTrue(sch.contains(m))
2576 
2577  def testSchedule(self):
2578  p = Process("test")
2579  p.a = EDAnalyzer("MyAnalyzer")
2580  p.b = EDAnalyzer("YourAnalyzer")
2581  p.c = EDAnalyzer("OurAnalyzer")
2582  p.d = EDAnalyzer("OurAnalyzer")
2583  p.path1 = Path(p.a)
2584  p.path2 = Path(p.b)
2585  p.path3 = Path(p.d)
2586 
2587  s = Schedule(p.path1,p.path2)
2588  self.assertEqual(s[0],p.path1)
2589  self.assertEqual(s[1],p.path2)
2590  p.schedule = s
2591  self.assertTrue('b' in p.schedule.moduleNames())
2592  self.assertTrue(hasattr(p, 'b'))
2593  self.assertTrue(hasattr(p, 'c'))
2594  self.assertTrue(hasattr(p, 'd'))
2595  self.assertTrue(hasattr(p, 'path1'))
2596  self.assertTrue(hasattr(p, 'path2'))
2597  self.assertTrue(hasattr(p, 'path3'))
2598  p.prune()
2599  self.assertTrue('b' in p.schedule.moduleNames())
2600  self.assertTrue(hasattr(p, 'b'))
2601  self.assertTrue(not hasattr(p, 'c'))
2602  self.assertTrue(not hasattr(p, 'd'))
2603  self.assertTrue(hasattr(p, 'path1'))
2604  self.assertTrue(hasattr(p, 'path2'))
2605  self.assertTrue(not hasattr(p, 'path3'))
2606 
2607  self.assertTrue(len(p.schedule._tasks) == 0)
2608 
2609  p = Process("test")
2610  p.a = EDAnalyzer("MyAnalyzer")
2611  p.b = EDAnalyzer("YourAnalyzer")
2612  p.c = EDAnalyzer("OurAnalyzer")
2613  p.d = EDAnalyzer("dAnalyzer")
2614  p.e = EDProducer("eProducer")
2615  p.f = EDProducer("fProducer")
2616  p.Tracer = Service("Tracer")
2617  p.path1 = Path(p.a)
2618  p.path2 = Path(p.b)
2619  p.path3 = Path(p.d)
2620  p.task1 = Task(p.e)
2621  p.task2 = Task(p.f, p.Tracer)
2622  s = Schedule(p.path1,p.path2,tasks=[p.task1,p.task2,p.task1])
2623  self.assertEqual(s[0],p.path1)
2624  self.assertEqual(s[1],p.path2)
2625  self.assertTrue(len(s._tasks) == 2)
2626  self.assertTrue(p.task1 in s._tasks)
2627  self.assertTrue(p.task2 in s._tasks)
2628  listOfTasks = list(s._tasks)
2629  self.assertTrue(len(listOfTasks) == 2)
2630  self.assertTrue(p.task1 == listOfTasks[0])
2631  self.assertTrue(p.task2 == listOfTasks[1])
2632  p.schedule = s
2633  self.assertTrue('b' in p.schedule.moduleNames())
2634 
2635  process2 = Process("test")
2636  process2.a = EDAnalyzer("MyAnalyzer")
2637  process2.e = EDProducer("eProducer")
2638  process2.path1 = Path(process2.a)
2639  process2.task1 = Task(process2.e)
2640  process2.schedule = Schedule(process2.path1,tasks=process2.task1)
2641  listOfTasks = list(process2.schedule._tasks)
2642  self.assertTrue(listOfTasks[0] == process2.task1)
2643 
2644  # test Schedule copy
2645  s2 = s.copy()
2646  self.assertEqual(s2[0],p.path1)
2647  self.assertEqual(s2[1],p.path2)
2648  self.assertTrue(len(s2._tasks) == 2)
2649  self.assertTrue(p.task1 in s2._tasks)
2650  self.assertTrue(p.task2 in s2._tasks)
2651  listOfTasks = list(s2._tasks)
2652  self.assertTrue(len(listOfTasks) == 2)
2653  self.assertTrue(p.task1 == listOfTasks[0])
2654  self.assertTrue(p.task2 == listOfTasks[1])
2655 
2656  names = s.moduleNames()
2657  self.assertTrue(names == set(['a', 'b', 'e', 'Tracer', 'f']))
2658  #adding a path not attached to the Process should cause an exception
2659  p = Process("test")
2660  p.a = EDAnalyzer("MyAnalyzer")
2661  path1 = Path(p.a)
2662  s = Schedule(path1)
2663  self.assertRaises(RuntimeError, lambda : p.setSchedule_(s) )
2664 
2665  #make sure anonymous sequences work
2666  p = Process("test")
2667  p.a = EDAnalyzer("MyAnalyzer")
2668  p.b = EDAnalyzer("MyOtherAnalyzer")
2669  p.c = EDProducer("MyProd")
2670  path1 = Path(p.c*Sequence(p.a+p.b))
2671  s = Schedule(path1)
2672  self.assertTrue('a' in s.moduleNames())
2673  self.assertTrue('b' in s.moduleNames())
2674  self.assertTrue('c' in s.moduleNames())
2675  p.path1 = path1
2676  p.schedule = s
2677  p.prune()
2678  self.assertTrue('a' in s.moduleNames())
2679  self.assertTrue('b' in s.moduleNames())
2680  self.assertTrue('c' in s.moduleNames())
2681 
2683  p = Process("test")
2684  p.a = EDAnalyzer("MyAnalyzer")
2685  p.b = EDAnalyzer("YourAnalyzer")
2686  p.c = EDAnalyzer("OurAnalyzer")
2687  p.path1 = Path(p.a)
2688  p.path2 = Path(p.b)
2689  self.assertTrue(p.schedule is None)
2690  pths = p.paths
2691  keys = pths.keys()
2692  self.assertEqual(pths[keys[0]],p.path1)
2693  self.assertEqual(pths[keys[1]],p.path2)
2694  p.prune()
2695  self.assertTrue(hasattr(p, 'a'))
2696  self.assertTrue(hasattr(p, 'b'))
2697  self.assertTrue(not hasattr(p, 'c'))
2698  self.assertTrue(hasattr(p, 'path1'))
2699  self.assertTrue(hasattr(p, 'path2'))
2700 
2701 
2702  p = Process("test")
2703  p.a = EDAnalyzer("MyAnalyzer")
2704  p.b = EDAnalyzer("YourAnalyzer")
2705  p.c = EDAnalyzer("OurAnalyzer")
2706  p.path2 = Path(p.b)
2707  p.path1 = Path(p.a)
2708  self.assertTrue(p.schedule is None)
2709  pths = p.paths
2710  keys = pths.keys()
2711  self.assertEqual(pths[keys[1]],p.path1)
2712  self.assertEqual(pths[keys[0]],p.path2)
2713 
2714 
2715  def testUsing(self):
2716  p = Process('test')
2717  p.block = PSet(a = int32(1))
2718  p.modu = EDAnalyzer('Analyzer', p.block, b = int32(2))
2719  self.assertEqual(p.modu.a.value(),1)
2720  self.assertEqual(p.modu.b.value(),2)
2721 
2722  def testOverride(self):
2723  p = Process('test')
2724  a = EDProducer("A", a1=int32(0))
2725  self.assertTrue(not a.isModified())
2726  a.a1 = 1
2727  self.assertTrue(a.isModified())
2728  p.a = a
2729  self.assertEqual(p.a.a1.value(), 1)
2730  # try adding an unmodified module.
2731  # should accept it
2732  p.a = EDProducer("A", a1=int32(2))
2733  self.assertEqual(p.a.a1.value(), 2)
2734  # try adding a modified module. Should throw
2735  # no longer, since the same (modified) say, geometry
2736  # could come from more than one cff
2737  b = EDProducer("A", a1=int32(3))
2738  b.a1 = 4
2739  #self.assertRaises(RuntimeError, setattr, *(p,'a',b))
2740  ps1 = PSet(a = int32(1))
2741  ps2 = PSet(a = int32(2))
2742  self.assertRaises(ValueError, EDProducer, 'C', ps1, ps2)
2743  self.assertRaises(ValueError, EDProducer, 'C', ps1, a=int32(3))
2744 
2745  def testOptions(self):
2746  p = Process('test')
2747  self.assertEqual(p.options.numberOfThreads.value(),1)
2748  p.options.numberOfThreads = 8
2749  self.assertEqual(p.options.numberOfThreads.value(),8)
2750  p.options = PSet()
2751  self.assertEqual(p.options.numberOfThreads.value(),1)
2752  p.options = dict(numberOfStreams =2,
2753  numberOfThreads =2)
2754  self.assertEqual(p.options.numberOfThreads.value(),2)
2755  self.assertEqual(p.options.numberOfStreams.value(),2)
2756 
2757  def testMaxEvents(self):
2758  p = Process("Test")
2759  p.maxEvents.input = 10
2760  self.assertEqual(p.maxEvents.input.value(),10)
2761  p = Process("Test")
2762  p.maxEvents.output = 10
2763  self.assertEqual(p.maxEvents.output.value(),10)
2764  p = Process("Test")
2765  p.maxEvents.output = PSet(out=untracked.int32(10))
2766  self.assertEqual(p.maxEvents.output.out.value(), 10)
2767  p = Process("Test")
2768  p.maxEvents = untracked.PSet(input = untracked.int32(5))
2769  self.assertEqual(p.maxEvents.input.value(), 5)
2770 
2771 
2772  def testExamples(self):
2773  p = Process("Test")
2774  p.source = Source("PoolSource",fileNames = untracked(string("file:reco.root")))
2775  p.foos = EDProducer("FooProducer")
2776  p.bars = EDProducer("BarProducer", foos=InputTag("foos"))
2777  p.out = OutputModule("PoolOutputModule",fileName=untracked(string("file:foos.root")))
2778  p.bars.foos = 'Foosball'
2779  self.assertEqual(p.bars.foos, InputTag('Foosball'))
2780  p.p = Path(p.foos*p.bars)
2781  p.e = EndPath(p.out)
2782  p.add_(Service("MessageLogger"))
2783 
2784  def testPrefers(self):
2785  p = Process("Test")
2786  p.add_(ESSource("ForceSource"))
2787  p.juicer = ESProducer("JuicerProducer")
2788  p.prefer("ForceSource")
2789  p.prefer("juicer")
2790  self.assertEqual(_lineDiff(p.dumpPython(), Process('Test').dumpPython()),
2791 """process.juicer = cms.ESProducer("JuicerProducer")
2792 process.ForceSource = cms.ESSource("ForceSource")
2793 process.prefer("ForceSource")
2794 process.prefer("juicer")""")
2795  p.prefer("juicer",fooRcd=vstring("Foo"))
2796  self.assertEqual(_lineDiff(p.dumpPython(), Process('Test').dumpPython()),
2797 """process.juicer = cms.ESProducer("JuicerProducer")
2798 process.ForceSource = cms.ESSource("ForceSource")
2799 process.prefer("ForceSource")
2800 process.prefer("juicer",
2801  fooRcd = cms.vstring('Foo')
2802 )""")
2803 
2804  def testFreeze(self):
2805  process = Process("Freeze")
2806  m = EDProducer("M", p=PSet(i = int32(1)))
2807  m.p.i = 2
2808  process.m = m
2809  # should be frozen
2810  #self.assertRaises(ValueError, setattr, m.p, 'i', 3)
2811  #self.assertRaises(ValueError, setattr, m, 'p', PSet(i=int32(1)))
2812  #self.assertRaises(ValueError, setattr, m.p, 'j', 1)
2813  #self.assertRaises(ValueError, setattr, m, 'j', 1)
2814  # But OK to change through the process
2815  process.m.p.i = 4
2816  self.assertEqual(process.m.p.i.value(), 4)
2817  process.m.p = PSet(j=int32(1))
2818  # should work to clone it, though
2819  m2 = m.clone(p = PSet(i = int32(5)), j = int32(8))
2820  m2.p.i = 6
2821  m2.j = 8
2822  def testSubProcess(self):
2823  process = Process("Parent")
2824  subProcess = Process("Child")
2825  subProcess.a = EDProducer("A")
2826  subProcess.p = Path(subProcess.a)
2827  subProcess.add_(Service("Foo"))
2828  process.addSubProcess(SubProcess(subProcess))
2829  d = process.dumpPython()
2830  equalD ="""parentProcess = process
2831 process.a = cms.EDProducer("A")
2832 process.Foo = cms.Service("Foo")
2833 process.p = cms.Path(process.a)
2834 childProcess = process
2835 process = parentProcess
2836 process.addSubProcess(cms.SubProcess(process = childProcess, SelectEvents = cms.untracked.PSet(
2837 ), outputCommands = cms.untracked.vstring()))"""
2838  equalD = equalD.replace("parentProcess","parentProcess"+str(hash(process.subProcesses_()[0])))
2839  self.assertEqual(_lineDiff(d,Process('Parent').dumpPython()+Process('Child').dumpPython()),equalD)
2840  p = TestMakePSet()
2841  process.fillProcessDesc(p)
2842  self.assertEqual((True,['a']),p.values["subProcesses"][1][0].values["process"][1].values['@all_modules'])
2843  self.assertEqual((True,['p']),p.values["subProcesses"][1][0].values["process"][1].values['@paths'])
2844  self.assertEqual({'@service_type':(True,'Foo')}, p.values["subProcesses"][1][0].values["process"][1].values["services"][1][0].values)
2845  def testRefToPSet(self):
2846  proc = Process("test")
2847  proc.top = PSet(a = int32(1))
2848  proc.ref = PSet(refToPSet_ = string("top"))
2849  proc.ref2 = PSet( a = int32(1), b = PSet( refToPSet_ = string("top")))
2850  proc.ref3 = PSet(refToPSet_ = string("ref"))
2851  proc.ref4 = VPSet(PSet(refToPSet_ = string("top")),
2852  PSet(refToPSet_ = string("ref2")))
2853  p = TestMakePSet()
2854  proc.fillProcessDesc(p)
2855  self.assertEqual((True,1),p.values["ref"][1].values["a"])
2856  self.assertEqual((True,1),p.values["ref3"][1].values["a"])
2857  self.assertEqual((True,1),p.values["ref2"][1].values["a"])
2858  self.assertEqual((True,1),p.values["ref2"][1].values["b"][1].values["a"])
2859  self.assertEqual((True,1),p.values["ref4"][1][0].values["a"])
2860  self.assertEqual((True,1),p.values["ref4"][1][1].values["a"])
2862  proc = Process("test")
2863  proc.sp = SwitchProducerTest(test2 = EDProducer("Foo",
2864  a = int32(1),
2865  b = PSet(c = int32(2))),
2866  test1 = EDProducer("Bar",
2867  aa = int32(11),
2868  bb = PSet(cc = int32(12))))
2869  proc.a = EDProducer("A")
2870  proc.s = Sequence(proc.a + proc.sp)
2871  proc.t = Task(proc.a, proc.sp)
2872  proc.p = Path()
2873  proc.p.associate(proc.t)
2874  p = TestMakePSet()
2875  proc.fillProcessDesc(p)
2876  self.assertEqual((True,"EDProducer"), p.values["sp"][1].values["@module_edm_type"])
2877  self.assertEqual((True, "SwitchProducer"), p.values["sp"][1].values["@module_type"])
2878  self.assertEqual((True, "sp"), p.values["sp"][1].values["@module_label"])
2879  all_cases = copy.deepcopy(p.values["sp"][1].values["@all_cases"])
2880  all_cases[1].sort() # names of all cases come via dict, i.e. their order is undefined
2881  self.assertEqual((True, ["sp@test1", "sp@test2"]), all_cases)
2882  self.assertEqual((False, "sp@test2"), p.values["sp"][1].values["@chosen_case"])
2883  self.assertEqual(["a", "sp", "sp@test1", "sp@test2"], p.values["@all_modules"][1])
2884  self.assertEqual((True,"EDProducer"), p.values["sp@test1"][1].values["@module_edm_type"])
2885  self.assertEqual((True,"Bar"), p.values["sp@test1"][1].values["@module_type"])
2886  self.assertEqual((True,"EDProducer"), p.values["sp@test2"][1].values["@module_edm_type"])
2887  self.assertEqual((True,"Foo"), p.values["sp@test2"][1].values["@module_type"])
2888  dump = proc.dumpPython()
2889  self.assertEqual(dump.find('@'), -1)
2890  self.assertEqual(specialImportRegistry.getSpecialImports(), ["from test import SwitchProducerTest"])
2891  self.assertTrue(dump.find("\nfrom test import SwitchProducerTest\n") != -1)
2892 
2893  # EDAlias as non-chosen case
2894  proc = Process("test")
2895  proc.sp = SwitchProducerTest(test2 = EDProducer("Foo",
2896  a = int32(1),
2897  b = PSet(c = int32(2))),
2898  test1 = EDAlias(a = VPSet(PSet(type = string("Bar")))))
2899  proc.a = EDProducer("A")
2900  proc.s = Sequence(proc.a + proc.sp)
2901  proc.t = Task(proc.a, proc.sp)
2902  proc.p = Path()
2903  proc.p.associate(proc.t)
2904  p = TestMakePSet()
2905  proc.fillProcessDesc(p)
2906  self.assertEqual((True,"EDProducer"), p.values["sp"][1].values["@module_edm_type"])
2907  self.assertEqual((True, "SwitchProducer"), p.values["sp"][1].values["@module_type"])
2908  self.assertEqual((True, "sp"), p.values["sp"][1].values["@module_label"])
2909  all_cases = copy.deepcopy(p.values["sp"][1].values["@all_cases"])
2910  all_cases[1].sort()
2911  self.assertEqual((True, ["sp@test1", "sp@test2"]), all_cases)
2912  self.assertEqual((False, "sp@test2"), p.values["sp"][1].values["@chosen_case"])
2913  self.assertEqual(["a", "sp", "sp@test2"], p.values["@all_modules"][1])
2914  self.assertEqual(["sp@test1"], p.values["@all_aliases"][1])
2915  self.assertEqual((True,"EDProducer"), p.values["sp@test2"][1].values["@module_edm_type"])
2916  self.assertEqual((True,"Foo"), p.values["sp@test2"][1].values["@module_type"])
2917  self.assertEqual((True,"EDAlias"), p.values["sp@test1"][1].values["@module_edm_type"])
2918  self.assertEqual((True,"Bar"), p.values["sp@test1"][1].values["a"][1][0].values["type"])
2919 
2920  # EDAlias as chosen case
2921  proc = Process("test")
2922  proc.sp = SwitchProducerTest(test1 = EDProducer("Foo",
2923  a = int32(1),
2924  b = PSet(c = int32(2))),
2925  test2 = EDAlias(a = VPSet(PSet(type = string("Bar")))))
2926  proc.a = EDProducer("A")
2927  proc.s = Sequence(proc.a + proc.sp)
2928  proc.t = Task(proc.a, proc.sp)
2929  proc.p = Path()
2930  proc.p.associate(proc.t)
2931  p = TestMakePSet()
2932  proc.fillProcessDesc(p)
2933  self.assertEqual((True,"EDProducer"), p.values["sp"][1].values["@module_edm_type"])
2934  self.assertEqual((True, "SwitchProducer"), p.values["sp"][1].values["@module_type"])
2935  self.assertEqual((True, "sp"), p.values["sp"][1].values["@module_label"])
2936  self.assertEqual((True, ["sp@test1", "sp@test2"]), p.values["sp"][1].values["@all_cases"])
2937  self.assertEqual((False, "sp@test2"), p.values["sp"][1].values["@chosen_case"])
2938  self.assertEqual(["a", "sp", "sp@test1"], p.values["@all_modules"][1])
2939  self.assertEqual(["sp@test2"], p.values["@all_aliases"][1])
2940  self.assertEqual((True,"EDProducer"), p.values["sp@test1"][1].values["@module_edm_type"])
2941  self.assertEqual((True,"Foo"), p.values["sp@test1"][1].values["@module_type"])
2942  self.assertEqual((True,"EDAlias"), p.values["sp@test2"][1].values["@module_edm_type"])
2943  self.assertEqual((True,"Bar"), p.values["sp@test2"][1].values["a"][1][0].values["type"])
2944 
2945  def testPrune(self):
2946  p = Process("test")
2947  p.a = EDAnalyzer("MyAnalyzer")
2948  p.b = EDAnalyzer("YourAnalyzer")
2949  p.c = EDAnalyzer("OurAnalyzer")
2950  p.d = EDAnalyzer("OurAnalyzer")
2951  p.e = EDProducer("MyProducer")
2952  p.f = EDProducer("YourProducer")
2953  p.g = EDProducer("TheirProducer")
2954  p.s = Sequence(p.d)
2955  p.t1 = Task(p.e)
2956  p.t2 = Task(p.f)
2957  p.t3 = Task(p.g, p.t1)
2958  p.path1 = Path(p.a, p.t3)
2959  p.path2 = Path(p.b)
2960  self.assertTrue(p.schedule is None)
2961  pths = p.paths
2962  keys = pths.keys()
2963  self.assertEqual(pths[keys[0]],p.path1)
2964  self.assertEqual(pths[keys[1]],p.path2)
2965  p.pset1 = PSet(parA = string("pset1"))
2966  p.pset2 = untracked.PSet(parA = string("pset2"))
2967  p.vpset1 = VPSet()
2968  p.vpset2 = untracked.VPSet()
2969  p.prune()
2970  self.assertTrue(hasattr(p, 'a'))
2971  self.assertTrue(hasattr(p, 'b'))
2972  self.assertTrue(not hasattr(p, 'c'))
2973  self.assertTrue(not hasattr(p, 'd'))
2974  self.assertTrue(hasattr(p, 'e'))
2975  self.assertTrue(not hasattr(p, 'f'))
2976  self.assertTrue(hasattr(p, 'g'))
2977  self.assertTrue(not hasattr(p, 's'))
2978  self.assertTrue(hasattr(p, 't1'))
2979  self.assertTrue(not hasattr(p, 't2'))
2980  self.assertTrue(hasattr(p, 't3'))
2981  self.assertTrue(hasattr(p, 'path1'))
2982  self.assertTrue(hasattr(p, 'path2'))
2983 # self.assertTrue(not hasattr(p, 'pset1'))
2984 # self.assertTrue(hasattr(p, 'pset2'))
2985 # self.assertTrue(not hasattr(p, 'vpset1'))
2986 # self.assertTrue(not hasattr(p, 'vpset2'))
2987 
2988  p = Process("test")
2989  p.a = EDAnalyzer("MyAnalyzer")
2990  p.b = EDAnalyzer("YourAnalyzer")
2991  p.c = EDAnalyzer("OurAnalyzer")
2992  p.d = EDAnalyzer("OurAnalyzer")
2993  p.e = EDAnalyzer("OurAnalyzer")
2994  p.f = EDProducer("MyProducer")
2995  p.g = EDProducer("YourProducer")
2996  p.h = EDProducer("TheirProducer")
2997  p.i = EDProducer("OurProducer")
2998  p.t1 = Task(p.f)
2999  p.t2 = Task(p.g)
3000  p.t3 = Task(p.h)
3001  p.t4 = Task(p.i)
3002  p.s = Sequence(p.d, p.t1)
3003  p.s2 = Sequence(p.b, p.t2)
3004  p.s3 = Sequence(p.e)
3005  p.path1 = Path(p.a, p.t3)
3006  p.path2 = Path(p.b)
3007  p.path3 = Path(p.b+p.s2)
3008  p.path4 = Path(p.b+p.s3)
3009  p.schedule = Schedule(p.path1,p.path2,p.path3)
3010  p.schedule.associate(p.t4)
3011  pths = p.paths
3012  keys = pths.keys()
3013  self.assertEqual(pths[keys[0]],p.path1)
3014  self.assertEqual(pths[keys[1]],p.path2)
3015  p.prune()
3016  self.assertTrue(hasattr(p, 'a'))
3017  self.assertTrue(hasattr(p, 'b'))
3018  self.assertTrue(not hasattr(p, 'c'))
3019  self.assertTrue(not hasattr(p, 'd'))
3020  self.assertTrue(not hasattr(p, 'e'))
3021  self.assertTrue(not hasattr(p, 'f'))
3022  self.assertTrue(hasattr(p, 'g'))
3023  self.assertTrue(hasattr(p, 'h'))
3024  self.assertTrue(hasattr(p, 'i'))
3025  self.assertTrue(not hasattr(p, 't1'))
3026  self.assertTrue(hasattr(p, 't2'))
3027  self.assertTrue(hasattr(p, 't3'))
3028  self.assertTrue(hasattr(p, 't4'))
3029  self.assertTrue(not hasattr(p, 's'))
3030  self.assertTrue(hasattr(p, 's2'))
3031  self.assertTrue(not hasattr(p, 's3'))
3032  self.assertTrue(hasattr(p, 'path1'))
3033  self.assertTrue(hasattr(p, 'path2'))
3034  self.assertTrue(hasattr(p, 'path3'))
3035  self.assertTrue(not hasattr(p, 'path4'))
3036  #test SequencePlaceholder
3037  p = Process("test")
3038  p.a = EDAnalyzer("MyAnalyzer")
3039  p.b = EDAnalyzer("YourAnalyzer")
3040  p.s = Sequence(SequencePlaceholder("a")+p.b)
3041  p.pth = Path(p.s)
3042  p.prune()
3043  self.assertTrue(hasattr(p, 'a'))
3044  self.assertTrue(hasattr(p, 'b'))
3045  self.assertTrue(hasattr(p, 's'))
3046  self.assertTrue(hasattr(p, 'pth'))
3047  #test unresolved SequencePlaceholder
3048  p = Process("test")
3049  p.b = EDAnalyzer("YourAnalyzer")
3050  p.s = Sequence(SequencePlaceholder("a")+p.b)
3051  p.pth = Path(p.s)
3052  p.prune(keepUnresolvedSequencePlaceholders=True)
3053  self.assertTrue(hasattr(p, 'b'))
3054  self.assertTrue(hasattr(p, 's'))
3055  self.assertTrue(hasattr(p, 'pth'))
3056  self.assertEqual(p.s.dumpPython(),'cms.Sequence(cms.SequencePlaceholder("a")+process.b)\n')
3057  #test TaskPlaceholder
3058  p = Process("test")
3059  p.a = EDProducer("MyProducer")
3060  p.b = EDProducer("YourProducer")
3061  p.s = Task(TaskPlaceholder("a"),p.b)
3062  p.pth = Path(p.s)
3063  p.prune()
3064  self.assertTrue(hasattr(p, 'a'))
3065  self.assertTrue(hasattr(p, 'b'))
3066  self.assertTrue(hasattr(p, 's'))
3067  self.assertTrue(hasattr(p, 'pth'))
3068  #test unresolved SequencePlaceholder
3069  p = Process("test")
3070  p.b = EDProducer("YourAnalyzer")
3071  p.s = Task(TaskPlaceholder("a"),p.b)
3072  p.pth = Path(p.s)
3073  p.prune(keepUnresolvedSequencePlaceholders=True)
3074  self.assertTrue(hasattr(p, 'b'))
3075  self.assertTrue(hasattr(p, 's'))
3076  self.assertTrue(hasattr(p, 'pth'))
3077  self.assertEqual(p.s.dumpPython(),'cms.Task(cms.TaskPlaceholder("a"), process.b)\n')
3079  p = Process("test")
3080  p.a = EDProducer("ma")
3081  p.b = EDAnalyzer("mb")
3082  p.t1 = Task(TaskPlaceholder("c"))
3083  p.t2 = Task(p.a, TaskPlaceholder("d"), p.t1)
3084  p.t3 = Task(TaskPlaceholder("e"))
3085  p.path1 = Path(p.b, p.t2, p.t3)
3086  p.t5 = Task(p.a, TaskPlaceholder("g"), TaskPlaceholder("t4"))
3087  p.t4 = Task(TaskPlaceholder("f"))
3088  p.endpath1 = EndPath(p.b, p.t5)
3089  p.t6 = Task(TaskPlaceholder("h"))
3090  p.t7 = Task(p.a, TaskPlaceholder("i"), p.t6)
3091  p.t8 = Task(TaskPlaceholder("j"))
3092  p.schedule = Schedule(p.path1, p.endpath1,tasks=[p.t7,p.t8])
3093  p.c = EDProducer("mc")
3094  p.d = EDProducer("md")
3095  p.e = EDProducer("me")
3096  p.f = EDProducer("mf")
3097  p.g = EDProducer("mg")
3098  p.h = EDProducer("mh")
3099  p.i = EDProducer("mi")
3100  p.j = EDProducer("mj")
3101  self.assertEqual(_lineDiff(p.dumpPython(),Process('test').dumpPython()),
3102 """process.a = cms.EDProducer("ma")
3103 process.c = cms.EDProducer("mc")
3104 process.d = cms.EDProducer("md")
3105 process.e = cms.EDProducer("me")
3106 process.f = cms.EDProducer("mf")
3107 process.g = cms.EDProducer("mg")
3108 process.h = cms.EDProducer("mh")
3109 process.i = cms.EDProducer("mi")
3110 process.j = cms.EDProducer("mj")
3111 process.b = cms.EDAnalyzer("mb")
3112 process.t8 = cms.Task(cms.TaskPlaceholder("j"))
3113 process.t6 = cms.Task(cms.TaskPlaceholder("h"))
3114 process.t7 = cms.Task(cms.TaskPlaceholder("i"), process.a, process.t6)
3115 process.t4 = cms.Task(cms.TaskPlaceholder("f"))
3116 process.t5 = cms.Task(cms.TaskPlaceholder("g"), cms.TaskPlaceholder("t4"), process.a)
3117 process.t3 = cms.Task(cms.TaskPlaceholder("e"))
3118 process.t1 = cms.Task(cms.TaskPlaceholder("c"))
3119 process.t2 = cms.Task(cms.TaskPlaceholder("d"), process.a, process.t1)
3120 process.path1 = cms.Path(process.b, process.t2, process.t3)
3121 process.endpath1 = cms.EndPath(process.b, process.t5)
3122 process.schedule = cms.Schedule(*[ process.path1, process.endpath1 ], tasks=[process.t7, process.t8])""")
3123  p.resolve()
3124  self.assertEqual(_lineDiff(p.dumpPython(),Process('test').dumpPython()),
3125 """process.a = cms.EDProducer("ma")
3126 process.c = cms.EDProducer("mc")
3127 process.d = cms.EDProducer("md")
3128 process.e = cms.EDProducer("me")
3129 process.f = cms.EDProducer("mf")
3130 process.g = cms.EDProducer("mg")
3131 process.h = cms.EDProducer("mh")
3132 process.i = cms.EDProducer("mi")
3133 process.j = cms.EDProducer("mj")
3134 process.b = cms.EDAnalyzer("mb")
3135 process.t8 = cms.Task(process.j)
3136 process.t6 = cms.Task(process.h)
3137 process.t7 = cms.Task(process.a, process.i, process.t6)
3138 process.t4 = cms.Task(process.f)
3139 process.t5 = cms.Task(process.a, process.g, process.t4)
3140 process.t3 = cms.Task(process.e)
3141 process.t1 = cms.Task(process.c)
3142 process.t2 = cms.Task(process.a, process.d, process.t1)
3143 process.path1 = cms.Path(process.b, process.t2, process.t3)
3144 process.endpath1 = cms.EndPath(process.b, process.t5)
3145 process.schedule = cms.Schedule(*[ process.path1, process.endpath1 ], tasks=[process.t7, process.t8])""")
3146 
3147  def testDelete(self):
3148  p = Process("test")
3149  p.a = EDAnalyzer("MyAnalyzer")
3150  p.b = EDAnalyzer("YourAnalyzer")
3151  p.c = EDAnalyzer("OurAnalyzer")
3152  p.d = EDAnalyzer("OurAnalyzer")
3153  p.e = EDAnalyzer("OurAnalyzer")
3154  p.f = EDAnalyzer("OurAnalyzer")
3155  p.g = EDProducer("OurProducer")
3156  p.h = EDProducer("YourProducer")
3157  p.t1 = Task(p.g, p.h)
3158  t2 = Task(p.g, p.h)
3159  t3 = Task(p.g, p.h)
3160  p.s = Sequence(p.d+p.e)
3161  p.path1 = Path(p.a+p.f+p.s,t2)
3162  p.endpath1 = EndPath(p.b+p.f)
3163  p.schedule = Schedule(tasks=[t3])
3164  self.assertTrue(hasattr(p, 'f'))
3165  self.assertTrue(hasattr(p, 'g'))
3166  del p.e
3167  del p.f
3168  del p.g
3169  self.assertFalse(hasattr(p, 'f'))
3170  self.assertFalse(hasattr(p, 'g'))
3171  self.assertTrue(p.t1.dumpPython() == 'cms.Task(process.h)\n')
3172  self.assertTrue(p.s.dumpPython() == 'cms.Sequence(process.d)\n')
3173  self.assertTrue(p.path1.dumpPython() == 'cms.Path(process.a+process.s, cms.Task(process.h))\n')
3174  self.assertTrue(p.endpath1.dumpPython() == 'cms.EndPath(process.b)\n')
3175  del p.s
3176  self.assertTrue(p.path1.dumpPython() == 'cms.Path(process.a+(process.d), cms.Task(process.h))\n')
3177  self.assertTrue(p.schedule_().dumpPython() == 'cms.Schedule(tasks=[cms.Task(process.h)])\n')
3178  def testModifier(self):
3179  m1 = Modifier()
3180  p = Process("test",m1)
3181  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1))
3182  def _mod_fred(obj):
3183  obj.fred = 2
3184  m1.toModify(p.a,_mod_fred)
3185  self.assertEqual(p.a.fred.value(),2)
3186  p.b = EDAnalyzer("YourAnalyzer", wilma = int32(1))
3187  m1.toModify(p.b, wilma = 2)
3188  self.assertEqual(p.b.wilma.value(),2)
3189  self.assertTrue(p.isUsingModifier(m1))
3190  #check that Modifier not attached to a process doesn't run
3191  m1 = Modifier()
3192  p = Process("test")
3193  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1))
3194  m1.toModify(p.a,_mod_fred)
3195  p.b = EDAnalyzer("YourAnalyzer", wilma = int32(1))
3196  m1.toModify(p.b, wilma = 2)
3197  self.assertEqual(p.a.fred.value(),1)
3198  self.assertEqual(p.b.wilma.value(),1)
3199  self.assertEqual(p.isUsingModifier(m1),False)
3200  #make sure clones get the changes
3201  m1 = Modifier()
3202  p = Process("test",m1)
3203  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3204  m1.toModify(p.a, fred = int32(2))
3205  p.b = p.a.clone(wilma = int32(3))
3206  self.assertEqual(p.a.fred.value(),2)
3207  self.assertEqual(p.a.wilma.value(),1)
3208  self.assertEqual(p.b.fred.value(),2)
3209  self.assertEqual(p.b.wilma.value(),3)
3210  #test removal of parameter
3211  m1 = Modifier()
3212  p = Process("test",m1)
3213  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1), fintstones = PSet(fred = int32(1)))
3214  m1.toModify(p.a, fred = None, fintstones = dict(fred = None))
3215  self.assertEqual(hasattr(p.a, "fred"), False)
3216  self.assertEqual(hasattr(p.a.fintstones, "fred"), False)
3217  self.assertEqual(p.a.wilma.value(),1)
3218  #test adding a parameter
3219  m1 = Modifier()
3220  p = Process("test",m1)
3221  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1))
3222  m1.toModify(p.a, wilma = int32(2))
3223  self.assertEqual(p.a.fred.value(), 1)
3224  self.assertEqual(p.a.wilma.value(),2)
3225  #test setting of value in PSet
3226  m1 = Modifier()
3227  p = Process("test",m1)
3228  p.a = EDAnalyzer("MyAnalyzer", flintstones = PSet(fred = int32(1), wilma = int32(1)))
3229  m1.toModify(p.a, flintstones = dict(fred = int32(2)))
3230  self.assertEqual(p.a.flintstones.fred.value(),2)
3231  self.assertEqual(p.a.flintstones.wilma.value(),1)
3232  #test proper exception from nonexisting parameter name
3233  m1 = Modifier()
3234  p = Process("test",m1)
3235  p.a = EDAnalyzer("MyAnalyzer", flintstones = PSet(fred = PSet(wilma = int32(1))))
3236  self.assertRaises(KeyError, lambda: m1.toModify(p.a, flintstones = dict(imnothere = dict(wilma=2))))
3237  self.assertRaises(KeyError, lambda: m1.toModify(p.a, foo = 1))
3238  #test setting a value in a VPSet
3239  m1 = Modifier()
3240  p = Process("test",m1)
3241  p.a = EDAnalyzer("MyAnalyzer", flintstones = VPSet(PSet(fred = int32(1)), PSet(wilma = int32(1))))
3242  m1.toModify(p.a, flintstones = {1:dict(wilma = int32(2))})
3243  self.assertEqual(p.a.flintstones[0].fred.value(),1)
3244  self.assertEqual(p.a.flintstones[1].wilma.value(),2)
3245  #test setting a value in a list of values
3246  m1 = Modifier()
3247  p = Process("test",m1)
3248  p.a = EDAnalyzer("MyAnalyzer", fred = vuint32(1,2,3))
3249  m1.toModify(p.a, fred = {1:7})
3250  self.assertEqual(p.a.fred[0],1)
3251  self.assertEqual(p.a.fred[1],7)
3252  self.assertEqual(p.a.fred[2],3)
3253  #test IndexError setting a value in a list to an item key not in the list
3254  m1 = Modifier()
3255  p = Process("test",m1)
3256  p.a = EDAnalyzer("MyAnalyzer", fred = vuint32(1,2,3))
3257  raised = False
3258  try: m1.toModify(p.a, fred = {5:7})
3259  except IndexError as e: raised = True
3260  self.assertEqual(raised, True)
3261  #test TypeError setting a value in a list using a key that is not an int
3262  m1 = Modifier()
3263  p = Process("test",m1)
3264  p.a = EDAnalyzer("MyAnalyzer", flintstones = VPSet(PSet(fred = int32(1)), PSet(wilma = int32(1))))
3265  raised = False
3266  try: m1.toModify(p.a, flintstones = dict(bogus = int32(37)))
3267  except TypeError as e: raised = True
3268  self.assertEqual(raised, True)
3269  #test that load causes process wide methods to run
3270  def _rem_a(proc):
3271  del proc.a
3272  class ProcModifierMod(object):
3273  def __init__(self,modifier,func):
3274  self.proc_mod_ = modifier.makeProcessModifier(func)
3275  class DummyMod(object):
3276  def __init__(self):
3277  self.a = EDAnalyzer("Dummy")
3278  testMod = DummyMod()
3279  p.extend(testMod)
3280  self.assertTrue(hasattr(p,"a"))
3281  m1 = Modifier()
3282  p = Process("test",m1)
3283  testProcMod = ProcModifierMod(m1,_rem_a)
3284  p.extend(testMod)
3285  p.extend(testProcMod)
3286  self.assertTrue(not hasattr(p,"a"))
3287  #test ModifierChain
3288  m1 = Modifier()
3289  mc = ModifierChain(m1)
3290  p = Process("test",mc)
3291  self.assertTrue(p.isUsingModifier(m1))
3292  self.assertTrue(p.isUsingModifier(mc))
3293  testMod = DummyMod()
3294  p.b = EDAnalyzer("Dummy2", fred = int32(1))
3295  m1.toModify(p.b, fred = int32(3))
3296  p.extend(testMod)
3297  testProcMod = ProcModifierMod(m1,_rem_a)
3298  p.extend(testProcMod)
3299  self.assertTrue(not hasattr(p,"a"))
3300  self.assertEqual(p.b.fred.value(),3)
3301  #check cloneAndExclude
3302  m1 = Modifier()
3303  m2 = Modifier()
3304  mc = ModifierChain(m1,m2)
3305  mclone = mc.copyAndExclude([m2])
3306  self.assertTrue(not mclone._isOrContains(m2))
3307  self.assertTrue(mclone._isOrContains(m1))
3308  m3 = Modifier()
3309  mc2 = ModifierChain(mc,m3)
3310  mclone = mc2.copyAndExclude([m2])
3311  self.assertTrue(not mclone._isOrContains(m2))
3312  self.assertTrue(mclone._isOrContains(m1))
3313  self.assertTrue(mclone._isOrContains(m3))
3314  #check combining
3315  m1 = Modifier()
3316  m2 = Modifier()
3317  p = Process("test",m1)
3318  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3319  (m1 & m2).toModify(p.a, fred = int32(2))
3320  self.assertRaises(TypeError, lambda: (m1 & m2).toModify(p.a, 1, wilma=2))
3321  self.assertEqual(p.a.fred, 1)
3322  m1 = Modifier()
3323  m2 = Modifier()
3324  p = Process("test",m1,m2)
3325  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3326  (m1 & m2).toModify(p.a, fred = int32(2))
3327  self.assertEqual(p.a.fred, 2)
3328  m1 = Modifier()
3329  m2 = Modifier()
3330  m3 = Modifier()
3331  p = Process("test",m1,m2,m3)
3332  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3333  (m1 & m2 & m3).toModify(p.a, fred = int32(2))
3334  self.assertEqual(p.a.fred, 2)
3335  (m1 & (m2 & m3)).toModify(p.a, fred = int32(3))
3336  self.assertEqual(p.a.fred, 3)
3337  ((m1 & m2) & m3).toModify(p.a, fred = int32(4))
3338  self.assertEqual(p.a.fred, 4)
3339  #check inverse
3340  m1 = Modifier()
3341  m2 = Modifier()
3342  p = Process("test", m1)
3343  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3344  (~m1).toModify(p.a, fred=2)
3345  self.assertEqual(p.a.fred, 1)
3346  (~m2).toModify(p.a, wilma=2)
3347  self.assertEqual(p.a.wilma, 2)
3348  self.assertRaises(TypeError, lambda: (~m1).toModify(p.a, 1, wilma=2))
3349  self.assertRaises(TypeError, lambda: (~m2).toModify(p.a, 1, wilma=2))
3350  # check or
3351  m1 = Modifier()
3352  m2 = Modifier()
3353  m3 = Modifier()
3354  p = Process("test", m1)
3355  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3356  (m1 | m2).toModify(p.a, fred=2)
3357  self.assertEqual(p.a.fred, 2)
3358  (m1 | m2 | m3).toModify(p.a, fred=3)
3359  self.assertEqual(p.a.fred, 3)
3360  (m3 | m2 | m1).toModify(p.a, fred=4)
3361  self.assertEqual(p.a.fred, 4)
3362  ((m1 | m2) | m3).toModify(p.a, fred=5)
3363  self.assertEqual(p.a.fred, 5)
3364  (m1 | (m2 | m3)).toModify(p.a, fred=6)
3365  self.assertEqual(p.a.fred, 6)
3366  (m2 | m3).toModify(p.a, fred=7)
3367  self.assertEqual(p.a.fred, 6)
3368  self.assertRaises(TypeError, lambda: (m1 | m2).toModify(p.a, 1, wilma=2))
3369  self.assertRaises(TypeError, lambda: (m2 | m3).toModify(p.a, 1, wilma=2))
3370  # check combinations
3371  m1 = Modifier()
3372  m2 = Modifier()
3373  m3 = Modifier()
3374  m4 = Modifier()
3375  p = Process("test", m1, m2)
3376  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3377  (m1 & ~m2).toModify(p.a, fred=2)
3378  self.assertEqual(p.a.fred, 1)
3379  (m1 & ~m3).toModify(p.a, fred=2)
3380  self.assertEqual(p.a.fred, 2)
3381  (m1 | ~m2).toModify(p.a, fred=3)
3382  self.assertEqual(p.a.fred, 3)
3383  (~m1 | ~m2).toModify(p.a, fred=4)
3384  self.assertEqual(p.a.fred, 3)
3385  (~m3 & ~m4).toModify(p.a, fred=4)
3386  self.assertEqual(p.a.fred, 4)
3387  ((m1 & m3) | ~m4).toModify(p.a, fred=5)
3388  self.assertEqual(p.a.fred, 5)
3389  #check toReplaceWith
3390  m1 = Modifier()
3391  p = Process("test",m1)
3392  p.a =EDAnalyzer("MyAnalyzer", fred = int32(1))
3393  m1.toReplaceWith(p.a, EDAnalyzer("YourAnalyzer", wilma = int32(3)))
3394  self.assertRaises(TypeError, lambda: m1.toReplaceWith(p.a, EDProducer("YourProducer")))
3395  p.b =EDAnalyzer("BAn")
3396  p.c =EDProducer("c")
3397  p.d =EDProducer("d")
3398  p.tc = Task(p.c)
3399  p.td = Task(p.d)
3400  p.s = Sequence(p.a, p.tc)
3401  m1.toReplaceWith(p.s, Sequence(p.a+p.b, p.td))
3402  self.assertEqual(p.a.wilma.value(),3)
3403  self.assertEqual(p.a.type_(),"YourAnalyzer")
3404  self.assertEqual(hasattr(p,"fred"),False)
3405  self.assertTrue(p.s.dumpPython() == "cms.Sequence(process.a+process.b, process.td)\n")
3406  p.e =EDProducer("e")
3407  m1.toReplaceWith(p.td, Task(p.e))
3408  self.assertTrue(p.td._collection == OrderedSet([p.e]))
3409  #check toReplaceWith doesn't activate not chosen
3410  m1 = Modifier()
3411  p = Process("test")
3412  p.a =EDAnalyzer("MyAnalyzer", fred = int32(1))
3413  m1.toReplaceWith(p.a, EDAnalyzer("YourAnalyzer", wilma = int32(3)))
3414  self.assertEqual(p.a.type_(),"MyAnalyzer")
3415  #check toReplaceWith and and/not/or combinations
3416  m1 = Modifier()
3417  m2 = Modifier()
3418  m3 = Modifier()
3419  m4 = Modifier()
3420  p = Process("test", m1, m2)
3421  p.a = EDAnalyzer("MyAnalyzer", fred = int32(1), wilma = int32(1))
3422  self.assertRaises(TypeError, lambda: (m1 & m2).toReplaceWith(p.a, EDProducer("YourProducer")))
3423  self.assertRaises(TypeError, lambda: (m3 & m4).toReplaceWith(p.a, EDProducer("YourProducer")))
3424  self.assertRaises(TypeError, lambda: (~m3).toReplaceWith(p.a, EDProducer("YourProducer")))
3425  self.assertRaises(TypeError, lambda: (~m1).toReplaceWith(p.a, EDProducer("YourProducer")))
3426  self.assertRaises(TypeError, lambda: (m1 | m3).toReplaceWith(p.a, EDProducer("YourProducer")))
3427  self.assertRaises(TypeError, lambda: (m3 | m4).toReplaceWith(p.a, EDProducer("YourProducer")))
3428  (m1 & m2).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer1"))
3429  self.assertEqual(p.a.type_(), "YourAnalyzer1")
3430  (m1 & m3).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer2"))
3431  self.assertEqual(p.a.type_(), "YourAnalyzer1")
3432  (~m1).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer2"))
3433  self.assertEqual(p.a.type_(), "YourAnalyzer1")
3434  (~m3).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer2"))
3435  self.assertEqual(p.a.type_(), "YourAnalyzer2")
3436  (m1 | m3).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer3"))
3437  self.assertEqual(p.a.type_(), "YourAnalyzer3")
3438  (m3 | m4).toReplaceWith(p.a, EDAnalyzer("YourAnalyzer4"))
3439  self.assertEqual(p.a.type_(), "YourAnalyzer3")
3440 
3441  # EDAlias
3442  a = EDAlias(foo2 = VPSet(PSet(type = string("Foo2"))))
3443  m = Modifier()
3444  m._setChosen()
3445  # Modify parameters
3446  m.toModify(a, foo2 = {0: dict(type = "Foo3")})
3447  self.assertEqual(a.foo2[0].type, "Foo3")
3448  # Add an alias
3449  m.toModify(a, foo4 = VPSet(PSet(type = string("Foo4"))))
3450  self.assertEqual(a.foo2[0].type, "Foo3")
3451  self.assertEqual(a.foo4[0].type, "Foo4")
3452  # Remove an alias
3453  m.toModify(a, foo2 = None)
3454  self.assertFalse(hasattr(a, "foo2"))
3455  self.assertEqual(a.foo4[0].type, "Foo4")
3456  # Replace (doesn't work out of the box because EDAlias is not _Parameterizable
3457  m.toReplaceWith(a, EDAlias(bar = VPSet(PSet(type = string("Bar")))))
3458  self.assertFalse(hasattr(a, "foo2"))
3459  self.assertFalse(hasattr(a, "foo4"))
3460  self.assertTrue(hasattr(a, "bar"))
3461  self.assertEqual(a.bar[0].type, "Bar")
3462 
3463  # SwitchProducer
3464  sp = SwitchProducerTest(test1 = EDProducer("Foo",
3465  a = int32(1),
3466  b = PSet(c = int32(2))),
3467  test2 = EDProducer("Bar",
3468  aa = int32(11),
3469  bb = PSet(cc = int32(12))))
3470  m = Modifier()
3471  m._setChosen()
3472  # Modify parameters
3473  m.toModify(sp,
3474  test1 = dict(a = 4, b = dict(c = None)),
3475  test2 = dict(aa = 15, bb = dict(cc = 45, dd = string("foo"))))
3476  self.assertEqual(sp.test1.a.value(), 4)
3477  self.assertEqual(sp.test1.b.hasParameter("c"), False)
3478  self.assertEqual(sp.test2.aa.value(), 15)
3479  self.assertEqual(sp.test2.bb.cc.value(), 45)
3480  self.assertEqual(sp.test2.bb.dd.value(), "foo")
3481  # Replace a producer
3482  m.toReplaceWith(sp.test1, EDProducer("Fred", x = int32(42)))
3483  self.assertEqual(sp.test1.type_(), "Fred")
3484  self.assertEqual(sp.test1.x.value(), 42)
3485  self.assertRaises(TypeError, lambda: m.toReplaceWith(sp.test1, EDAnalyzer("Foo")))
3486  # Alternative way (only to be allow same syntax to be used as for adding)
3487  m.toModify(sp, test2 = EDProducer("Xyzzy", x = int32(24)))
3488  self.assertEqual(sp.test2.type_(), "Xyzzy")
3489  self.assertEqual(sp.test2.x.value(), 24)
3490  self.assertRaises(TypeError, lambda: m.toModify(sp, test2 = EDAnalyzer("Foo")))
3491  # Add a producer
3492  m.toModify(sp, test3 = EDProducer("Wilma", y = int32(24)))
3493  self.assertEqual(sp.test3.type_(), "Wilma")
3494  self.assertEqual(sp.test3.y.value(), 24)
3495  self.assertRaises(TypeError, lambda: m.toModify(sp, test4 = EDAnalyzer("Foo")))
3496  # Remove a producer
3497  m.toModify(sp, test2 = None)
3498  self.assertEqual(hasattr(sp, "test2"), False)
3499  # Add an alias
3500  m.toModify(sp, test2 = EDAlias(foo = VPSet(PSet(type = string("int")))))
3501  self.assertTrue(hasattr(sp.test2, "foo"))
3502  # Replace an alias
3503  m.toReplaceWith(sp.test2, EDAlias(bar = VPSet(PSet(type = string("int")))))
3504  self.assertTrue(hasattr(sp.test2, "bar"))
3505  # Alternative way
3506  m.toModify(sp, test2 = EDAlias(xyzzy = VPSet(PSet(type = string("int")))))
3507  self.assertTrue(hasattr(sp.test2, "xyzzy"))
3508  # Replace an alias with EDProducer
3509  self.assertRaises(TypeError, lambda: m.toReplaceWith(sp.test2, EDProducer("Foo")))
3510  m.toModify(sp, test2 = EDProducer("Foo"))
3512  #check defaults are not overwritten
3513  f = ProcessFragment('Fragment')
3514  p = Process('PROCESS')
3515  p.maxEvents.input = 10
3516  p.options.numberOfThreads = 4
3517  p.maxLuminosityBlocks.input = 2
3518  p.extend(f)
3519  self.assertEqual(p.maxEvents.input.value(),10)
3520  self.assertEqual(p.options.numberOfThreads.value(), 4)
3521  self.assertEqual(p.maxLuminosityBlocks.input.value(),2)
3522  #general checks
3523  f = ProcessFragment("Fragment")
3524  f.fltr = EDFilter("Foo")
3525  p = Process('PROCESS')
3526  p.extend(f)
3527  self.assertTrue(hasattr(p,'fltr'))
3528 
3529  unittest.main()
Config.ModifierChain.__chain
__chain
Definition: Config.py:1674
Config.TestMakePSet.addVEventID
def addVEventID(self, tracked, label, value)
Definition: Config.py:1805
Types.vuint32
Definition: Types.py:934
Config.TestMakePSet.addVInt64
def addVInt64(self, tracked, label, value)
Definition: Config.py:1777
Config.Process.addSubProcess
def addSubProcess(self, mod)
Definition: Config.py:674
Config.Process.switchProducers_
def switchProducers_(self)
Definition: Config.py:197
Config._BoolModifierBase.__init__
def __init__(self, lhs, rhs=None)
Definition: Config.py:1530
Config.Process.name_
def name_(self)
Definition: Config.py:186
Config.Process.producerNames
def producerNames(self)
Definition: Config.py:149
Config.ModifierChain._isOrContains
def _isOrContains(self, other)
Definition: Config.py:1710
Config.Process._validateSequence
def _validateSequence(self, sequence, label)
Definition: Config.py:868
SequenceVisitors.NodeVisitor
Definition: SequenceVisitors.py:71
Config.Process.__isStrict
__isStrict
Definition: Config.py:136
Config.SubProcess.__outputCommands
__outputCommands
Definition: Config.py:1477
Config.SubProcess.getProcessName
def getProcessName(self)
Definition: Config.py:1485
Config.Process.__process
__process
Definition: Config.py:1279
Config.Modifier._toReplaceWith
def _toReplaceWith(toObj, fromObj)
Definition: Config.py:1636
resolutioncreator_cfi.object
object
Definition: resolutioncreator_cfi.py:4
Config.ProcessModifier.__modifier
__modifier
Definition: Config.py:1725
Config.TestModuleCommand.testTaskPlaceholder
def testTaskPlaceholder(self)
Definition: Config.py:3078
Config.TestModuleCommand.testSchedule
def testSchedule(self)
Definition: Config.py:2577
Config._ParameterModifier.__init__
def __init__(self, args)
Definition: Config.py:1510
Config.Process.producers_
def producers_(self)
Definition: Config.py:193
Config.Process.maxEvents
maxEvents
Definition: Config.py:139
Config._ParameterModifier._raiseUnknownKey
def _raiseUnknownKey(key)
Definition: Config.py:1525
Config.Process._placeSwitchProducer
def _placeSwitchProducer(self, name, mod)
Definition: Config.py:620
Config.Process.prune
def prune(self, verbose=False, keepUnresolvedSequencePlaceholders=False)
Definition: Config.py:1190
SequenceTypes.DecoratedNodeNameVisitor
Definition: SequenceTypes.py:993
Config.Process.psets
psets
Definition: Config.py:335
SequenceTypes.Path
Definition: SequenceTypes.py:644
Config.Modifier._toModify
def _toModify(obj, func, **kw)
Definition: Config.py:1618
filterCSVwithJSON.copy
copy
Definition: filterCSVwithJSON.py:36
Config.Process.__delattr__
def __delattr__(self, name)
Definition: Config.py:538
Config.Process.filterNames
def filterNames(self)
Definition: Config.py:158
SequenceVisitors.CompositeVisitor
Definition: SequenceVisitors.py:92
Config.ProcessFragment.__setattr__
def __setattr__(self, name, value)
Definition: Config.py:1418
Config.TestMakePSet.addPSet
def addPSet(self, tracked, label, value)
Definition: Config.py:1815
Config.Process.__updateOptions
def __updateOptions(self, opt)
Definition: Config.py:240
Config.Modifier._isChosen
def _isChosen(self)
Definition: Config.py:1657
Config.Modifier
Definition: Config.py:1578
Config.ProcessModifier.__func
__func
Definition: Config.py:1726
Config.TestModuleCommand.testSubProcess
def testSubProcess(self)
Definition: Config.py:2822
Config.Modifier.__processModifiers
__processModifiers
Definition: Config.py:1588
cond::hash
Definition: Time.h:19
Modules.Service
Definition: Modules.py:12
Config.Process.__findFirstUsingModule
def __findFirstUsingModule(self, seqsOrTasks, mod)
Definition: Config.py:508
Config.Process.subProcesses_
def subProcesses_(self)
Definition: Config.py:265
Config.Process.aliases_
def aliases_(self)
Definition: Config.py:328
Config.checkImportPermission
def checkImportPermission(minLevel=2, allowedPatterns=[])
Definition: Config.py:30
Config.Process.__setstate__
def __setstate__(self, pkldict)
Definition: Config.py:165
Config.Process._placeESPrefer
def _placeESPrefer(self, name, mod)
Definition: Config.py:645
Config._AndModifier
Definition: Config.py:1556
Config.TestMakePSet.addVEventRange
def addVEventRange(self, tracked, label, value)
Definition: Config.py:1813
Config.Process._dumpConfigOptionallyNamedList
def _dumpConfigOptionallyNamedList(self, items, typeName, options)
Definition: Config.py:751
Config.FilteredStream.__init__
def __init__(self, *args, **kw)
Definition: Config.py:1454
join
static std::string join(char **cmd)
Definition: RemoteFile.cc:17
Modules.ESSource
Definition: Modules.py:33
Config.Process._insertOneInto
def _insertOneInto(self, parameterSet, label, item, tracked)
Definition: Config.py:1089
Config.Process.es_producers_
def es_producers_(self)
Definition: Config.py:316
Config.Process._insertPaths
def _insertPaths(self, processPSet, nodeVisitor)
Definition: Config.py:1127
ExceptionHandling.format_outerframe
def format_outerframe(number)
Definition: ExceptionHandling.py:13
Config.Process._placeESProducer
def _placeESProducer(self, name, mod)
Definition: Config.py:643
Config.Modifier._toModifyCheck
def _toModifyCheck(obj, func, **kw)
Definition: Config.py:1597
Config.Process._splitPythonList
def _splitPythonList(self, subfolder, d, options)
Definition: Config.py:847
Mixins.PrintOptions
Definition: Mixins.py:11
Config.Process.vpsets
vpsets
Definition: Config.py:339
Config.SubProcess.process
def process(self)
Definition: Config.py:1487
Config.SubProcess._place
def _place(self, label, process)
Definition: Config.py:1497
Config.ModifierChain.__chosen
__chosen
Definition: Config.py:1673
Config.TestModuleCommand.testProcessExtend
def testProcessExtend(self)
Definition: Config.py:1904
Config.Process.es_sources_
def es_sources_(self)
Definition: Config.py:320
Config.Process._placeSequence
def _placeSequence(self, name, mod)
Definition: Config.py:640
Config.TestModuleCommand.testServiceInProcess
def testServiceInProcess(self)
Definition: Config.py:2252
relativeConstraints.keys
keys
Definition: relativeConstraints.py:89
Config.Process._placeAnalyzer
def _placeAnalyzer(self, name, mod)
Definition: Config.py:624
Config._InvertModifier
Definition: Config.py:1563
Config.ModifierChain._isChosen
def _isChosen(self)
Definition: Config.py:1685
Config.Process.tasks_
def tasks_(self)
Definition: Config.py:289
Config.SubProcess.type_
def type_(self)
Definition: Config.py:1493
Config.Process.maxLuminosityBlocks
maxLuminosityBlocks
Definition: Config.py:140
Config.TestModuleCommand.testDelete
def testDelete(self)
Definition: Config.py:3147
Config.TestMakePSet.addInputTag
def addInputTag(self, tracked, label, value)
Definition: Config.py:1795
Config.Modifier.__chosen
__chosen
Definition: Config.py:1589
Config.Modifier.__or__
def __or__(self, other)
Definition: Config.py:1663
Config.Modifier._isOrContains
def _isOrContains(self, other)
Definition: Config.py:1665
SequenceTypes.NodeNameVisitor
Definition: SequenceTypes.py:924
Config.Process._pruneModules
def _pruneModules(self, d, scheduledNames)
Definition: Config.py:1256
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
Config.FilteredStream.__getattr__
def __getattr__(self, attr)
Definition: Config.py:1458
Config.TestModuleCommand.testModifier
def testModifier(self)
Definition: Config.py:3178
Config.TestModuleCommand.testContains
def testContains(self)
Definition: Config.py:2519
Config.TestMakePSet.addVUInt32
def addVUInt32(self, tracked, label, value)
Definition: Config.py:1773
FastTimer.addService
def addService(process, multirun=False)
Definition: FastTimer.py:3
Config.TestMakePSet
Definition: Config.py:1753
Config.Process.setName_
def setName_(self, name)
Definition: Config.py:188
groupFilesInBlocks.temp
list temp
Definition: groupFilesInBlocks.py:142
Config.ProcessModifier.__seenProcesses
__seenProcesses
Definition: Config.py:1727
Config.Process.__ppset
__ppset
Definition: Config.py:1278
Config.ProcessFragment.__dir__
def __dir__(self)
Definition: Config.py:1411
Types.double
Definition: Types.py:273
Config.Process.load
def load(self, moduleName)
Definition: Config.py:681
Config.Process.endpaths_
def endpaths_(self)
Definition: Config.py:281
Config.SubProcess
Definition: Config.py:1461
Options.Options
Definition: Options.py:1
Config.ProcessFragment.__getattribute__
def __getattribute__(self, name)
Definition: Config.py:1413
Config.Process.pathNames
def pathNames(self)
Definition: Config.py:161
Config.TestMakePSet.addInt64
def addInt64(self, tracked, label, value)
Definition: Config.py:1775
Config.FilteredStream._blocked_attribute
_blocked_attribute
Definition: Config.py:1434
Config.Process.extend
def extend(self, other, items=())
Definition: Config.py:685
Config.Process._okToPlace
def _okToPlace(self, name, mod, d)
Definition: Config.py:587
Config._OrModifier
Definition: Config.py:1570
Config._BoolModifierBase.makeProcessModifier
def makeProcessModifier(self, func)
Definition: Config.py:1544
Config.TestModuleCommand.testSequence2
def testSequence2(self)
Definition: Config.py:2242
Config.ModifierChain._setChosen
def _setChosen(self)
Definition: Config.py:1680
Config.Process.__init__
def __init__(self, name, *Mods)
Definition: Config.py:104
Config._ParameterModifier.__call__
def __call__(self, obj)
Definition: Config.py:1512
Config.Modifier.toReplaceWith
def toReplaceWith(self, toObj, fromObj)
Definition: Config.py:1628
Config.TestMakePSet.__getValue
def __getValue(self, tracked, label)
Definition: Config.py:1760
Config.Process._itemsInDependencyOrder
def _itemsInDependencyOrder(self, processDictionaryOfItems)
Definition: Config.py:886
Config.Process.source_
def source_(self)
Definition: Config.py:201
Config.ProcessModifier.apply
def apply(self, process)
Definition: Config.py:1728
Config._BoolModifierBase.__and__
def __and__(self, other)
Definition: Config.py:1549
Config.Process.setStrict
def setStrict(self, value)
Definition: Config.py:144
Config.TestMakePSet.__insertValue
def __insertValue(self, tracked, label, value)
Definition: Config.py:1758
Modules.EDAnalyzer
Definition: Modules.py:180
Types.vstring
Definition: Types.py:1007
Config.Process.psets_
def psets_(self)
Definition: Config.py:332
Mixins._TypedParameterizable
Definition: Mixins.py:380
Config.Process.validate
def validate(self)
Definition: Config.py:1342
Mixins._Parameterizable
Definition: Mixins.py:164
Config.Process.analyzerNames
def analyzerNames(self)
Definition: Config.py:155
Config.TestModuleCommand.testParameterizable
def testParameterizable(self)
Definition: Config.py:1839
Config.TestModuleCommand.testOverride
def testOverride(self)
Definition: Config.py:2722
Config.TestMakePSet.addBool
def addBool(self, tracked, label, value)
Definition: Config.py:1787
Config.Process._placeOutputModule
def _placeOutputModule(self, name, mod)
Definition: Config.py:616
Config._OrModifier._isChosen
def _isChosen(self)
Definition: Config.py:1574
Config.TestModuleCommand.testImplicitSchedule
def testImplicitSchedule(self)
Definition: Config.py:2682
Config.Process._insertSubProcessesInto
def _insertSubProcessesInto(self, parameterSet, label, itemList, tracked)
Definition: Config.py:1114
Config.TestModuleCommand.testFreeze
def testFreeze(self)
Definition: Config.py:2804
Modules.Source
Definition: Modules.py:194
Config.Process.prefer
def prefer(self, esmodule, *args, **kargs)
Definition: Config.py:1349
Config.Modifier.__init__
def __init__(self)
Definition: Config.py:1587
contentValuesCheck.values
values
Definition: contentValuesCheck.py:38
Config.Process.setSource_
def setSource_(self, src)
Definition: Config.py:204
Config._BoolModifierBase._lhs
_lhs
Definition: Config.py:1531
Config.Process._placePath
def _placePath(self, name, mod)
Definition: Config.py:626
Config.Process.paths
paths
Definition: Config.py:280
Config.SubProcess.dumpPython
def dumpPython(self, options=PrintOptions())
Definition: Config.py:1478
Config.TestModuleCommand.testSequence
def testSequence(self)
Definition: Config.py:2227
DictTypes.SortedAndFixedKeysDict
Definition: DictTypes.py:54
Config.Modifier.makeProcessModifier
def makeProcessModifier(self, func)
Definition: Config.py:1590
Config.Process._placeEndPath
def _placeEndPath(self, name, mod)
Definition: Config.py:633
str
#define str(s)
Definition: TestProcessor.cc:51
Config.Process._replaceInTasks
def _replaceInTasks(self, label, new)
Definition: Config.py:1071
Config.FilteredStream.__new__
def __new__(cls, *args, **kw)
Definition: Config.py:1437
Config.TestMakePSet.__init__
def __init__(self)
Definition: Config.py:1756
Config.findProcess
def findProcess(module)
Definition: Config.py:83
Config.SubProcess.__SelectEvents
__SelectEvents
Definition: Config.py:1476
SequenceTypes.Sequence
Definition: SequenceTypes.py:656
Config.ModifierChain.__init__
def __init__(self, *chainedModifiers)
Definition: Config.py:1672
Config.TestModuleCommand.testOptions
def testOptions(self)
Definition: Config.py:2745
Modules.EDFilter
Definition: Modules.py:172
Config.TestMakePSet.addInt32
def addInt32(self, tracked, label, value)
Definition: Config.py:1767
Config.Process.defaultMaxLuminosityBlocks_
def defaultMaxLuminosityBlocks_()
Definition: Config.py:263
Config._ParameterModifier
Definition: Config.py:1508
Mixins._Unlabelable
Definition: Mixins.py:567
Config.Process.schedule_
def schedule_(self)
Definition: Config.py:293
Config.TestMakePSet.addVString
def addVString(self, tracked, label, value)
Definition: Config.py:1791
Config.TestModuleCommand.testUsing
def testUsing(self)
Definition: Config.py:2715
Config.TestModuleCommand.testTypedParameterizable
def testTypedParameterizable(self)
Definition: Config.py:1872
Config.ModifierChain.__copyIfExclude
def __copyIfExclude(self, toExclude)
Definition: Config.py:1701
Config.TestMakePSet.addEventID
def addEventID(self, tracked, label, value)
Definition: Config.py:1803
Config.TestModuleCommand.testMaxEvents
def testMaxEvents(self)
Definition: Config.py:2757
Config.TestMakePSet.addVDouble
def addVDouble(self, tracked, label, value)
Definition: Config.py:1785
Types.PSet
Definition: Types.py:860
Config.TestMakePSet.addEventRange
def addEventRange(self, tracked, label, value)
Definition: Config.py:1811
SequenceTypes.SequenceVisitor
Definition: SequenceTypes.py:810
SequenceTypes.TaskVisitor
Definition: SequenceTypes.py:822
Config.Process._dumpConfigESPrefers
def _dumpConfigESPrefers(self, options)
Definition: Config.py:825
Config.TestModuleCommand.testCloneSequence
def testCloneSequence(self)
Definition: Config.py:2503
Config.Process.setLooper_
def setLooper_(self, lpr)
Definition: Config.py:210
Types.SecSource
Definition: Types.py:837
Config.Process.setPartialSchedule_
def setPartialSchedule_(self, sch, label)
Definition: Config.py:296
Config.Process.__setattr__
def __setattr__(self, name, value)
Definition: Config.py:376
Config.Process.resolve
def resolve(self, keepUnresolvedSequencePlaceholders=False)
Definition: Config.py:1181
Config._AndModifier._isChosen
def _isChosen(self)
Definition: Config.py:1560
Config.Process._placeESSource
def _placeESSource(self, name, mod)
Definition: Config.py:647
Config.SwitchProducerTest
Definition: Config.py:1824
DictTypes.SortedKeysDict
Definition: DictTypes.py:3
Config.Process._placeFilter
def _placeFilter(self, name, mod)
Definition: Config.py:622
Config.TestMakePSet.newPSet
def newPSet(self)
Definition: Config.py:1821
Config.SubProcess.__process
__process
Definition: Config.py:1475
Config.TestModuleCommand.testPath
def testPath(self)
Definition: Config.py:2463
Config._BoolModifierBase
Definition: Config.py:1528
SequenceVisitors.EndPathValidator
Definition: SequenceVisitors.py:42
Config.Process.filters_
def filters_(self)
Definition: Config.py:182
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46
Config.SubProcess.__init__
def __init__(self, process, SelectEvents=untracked.PSet(), outputCommands=untracked.vstring())
Definition: Config.py:1466
Config.FilteredStream
Definition: Config.py:1430
Config.Process
Definition: Config.py:102
PVValHelper::add
void add(std::map< std::string, TH1 * > &h, TH1 *hist)
Definition: PVValidationHelpers.cc:12
Config.Process.__setObjectLabel
def __setObjectLabel(self, object, newLabel)
Definition: Config.py:349
Config.Process.isUsingModifier
def isUsingModifier(self, mod)
Definition: Config.py:341
Config.TestModuleCommand.testProcessInsertion
def testProcessInsertion(self)
Definition: Config.py:1879
SequenceVisitors.ScheduleTaskValidator
Definition: SequenceVisitors.py:8
Config.Process._delHelper
def _delHelper(self, name)
Definition: Config.py:521
Config.TestModuleCommand.setUp
def setUp(self)
Definition: Config.py:1836
Exception
Config.Process._replaceInSequences
def _replaceInSequences(self, label, new)
Definition: Config.py:1056
mps_setup.append
append
Definition: mps_setup.py:85
Config.Process._validateTask
def _validateTask(self, task, label)
Definition: Config.py:877
Config.Process.schedule
schedule
Definition: Config.py:311
Config.ProcessFragment.__delattr__
def __delattr__(self, name)
Definition: Config.py:1423
Config.Process._placeSubProcess
def _placeSubProcess(self, name, mod)
Definition: Config.py:671
Config.TestModuleCommand.testRefToPSet
def testRefToPSet(self)
Definition: Config.py:2845
Config.Process.defaultOptions_
def defaultOptions_()
Definition: Config.py:214
Config.Process._placeSource
def _placeSource(self, name, mod)
Definition: Config.py:658
Config._BoolModifierBase._rhs
_rhs
Definition: Config.py:1533
Modules.ESPrefer
Definition: Modules.py:74
Config.TestMakePSet.addString
def addString(self, tracked, label, value)
Definition: Config.py:1789
Config.FilteredStream.__repr__
def __repr__(self)
Definition: Config.py:1456
Config.Process.tasks
tasks
Definition: Config.py:292
SequenceTypes.TaskPlaceholder
Definition: SequenceTypes.py:1603
Config.TestModuleCommand.testProcessDumpPython
def testProcessDumpPython(self)
Definition: Config.py:1991
SequenceVisitors.PathValidator
Definition: SequenceVisitors.py:23
Modules.ESProducer
Definition: Modules.py:54
Config.TestModuleCommand.testPrune
def testPrune(self)
Definition: Config.py:2945
Types.string
Definition: Types.py:324
Modules.SwitchProducer
Definition: Modules.py:221
Config.SubProcess.SelectEvents
def SelectEvents(self)
Definition: Config.py:1489
Config.ModifierChain._applyNewProcessModifiers
def _applyNewProcessModifiers(self, process)
Definition: Config.py:1675
Config.TestModuleCommand.testGlobalReplace
def testGlobalReplace(self)
Definition: Config.py:2175
TrackCollections2monitor_cff.func
func
Definition: TrackCollections2monitor_cff.py:359
SequenceTypes.ignore
def ignore(seq)
Definition: SequenceTypes.py:630
Config.Process.dumpConfig
def dumpConfig(self, options=PrintOptions())
Definition: Config.py:759
Config.TestMakePSet.values
values
Definition: Config.py:1757
Config._BoolModifierBase.toModify
def toModify(self, obj, func=None, **kw)
Definition: Config.py:1534
Config.Process.dumpPython
def dumpPython(self, options=PrintOptions())
Definition: Config.py:955
Modules.EDProducer
Definition: Modules.py:164
Config.Process._placeAlias
def _placeAlias(self, name, mod)
Definition: Config.py:652
Config.Process.sequences_
def sequences_(self)
Definition: Config.py:285
Types.EDAlias
Definition: Types.py:1388
Config.TestModuleCommand.testExamples
def testExamples(self)
Definition: Config.py:2772
Config.SwitchProducerTest.__init__
def __init__(self, **kargs)
Definition: Config.py:1825
Config.Process._placePSet
def _placePSet(self, name, mod)
Definition: Config.py:654
Config.Process.__processPSet
__processPSet
Definition: Config.py:1268
Config.Modifier.__invert__
def __invert__(self)
Definition: Config.py:1661
Config.Process.looper_
def looper_(self)
Definition: Config.py:207
Config.TestMakePSet.addVESInputTag
def addVESInputTag(self, tracked, label, value)
Definition: Config.py:1801
DictTypes.FixedKeysDict
Definition: DictTypes.py:72
Config.Process.es_prefers_
def es_prefers_(self)
Definition: Config.py:324
Config.Process._dumpConfigNamedList
def _dumpConfigNamedList(self, items, typeName, options)
Definition: Config.py:739
Config.Process._dumpPythonSubProcesses
def _dumpPythonSubProcesses(self, l, options)
Definition: Config.py:831
Config.ModifierChain
Definition: Config.py:1669
Config.ProcessModifier.__init__
def __init__(self, modifier, func)
Definition: Config.py:1724
Modules.OutputModule
Definition: Modules.py:187
Config.TestMakePSet.addVUInt64
def addVUInt64(self, tracked, label, value)
Definition: Config.py:1781
Config.Process.splitPython
def splitPython(self, options=PrintOptions())
Definition: Config.py:989
SequenceTypes.ModuleNodeVisitor
Definition: SequenceTypes.py:840
Config.Process._insertSwitchProducersInto
def _insertSwitchProducersInto(self, parameterSet, labelModules, labelAliases, itemDict, tracked)
Definition: Config.py:1104
Config.Process.sequences
sequences
Definition: Config.py:288
Config.Modifier.__and__
def __and__(self, other)
Definition: Config.py:1659
Config.TestModuleCommand
Definition: Config.py:1835
Config.ProcessFragment.__process
__process
Definition: Config.py:1402
Config.ProcessFragment.__init__
def __init__(self, process)
Definition: Config.py:1400
Config.TestMakePSet.addUInt64
def addUInt64(self, tracked, label, value)
Definition: Config.py:1779
Types.VPSet
Definition: Types.py:1198
Config.Process.defaultMaxEvents_
def defaultMaxEvents_()
Definition: Config.py:250
Config.TestMakePSet.addDouble
def addDouble(self, tracked, label, value)
Definition: Config.py:1783
Config.Process.paths_
def paths_(self)
Definition: Config.py:277
Config.Process.add_
def add_(self, value)
Definition: Config.py:572
Config._InvertModifier._isChosen
def _isChosen(self)
Definition: Config.py:1567
Config.Process._findPreferred
def _findPreferred(self, esname, d, *args, **kargs)
Definition: Config.py:1378
Config.Process._delattrFromSetattr
def _delattrFromSetattr(self, name)
Definition: Config.py:563
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
Config._OrModifier.__init__
def __init__(self, lhs, rhs)
Definition: Config.py:1572
ConfigBuilder.dumpPython
def dumpPython(process, name)
Definition: ConfigBuilder.py:92
Config.Process.setSchedule_
def setSchedule_(self, sch)
Definition: Config.py:301
Config.Process._placeTask
def _placeTask(self, name, task)
Definition: Config.py:649
Config.Modifier.toModify
def toModify(self, obj, func=None, **kw)
Definition: Config.py:1600
Types.InputTag
Definition: Types.py:600
Config.TestModuleCommand.testProcessFragment
def testProcessFragment(self)
Definition: Config.py:3511
Config._ParameterModifier.__args
__args
Definition: Config.py:1511
Config.TestMakePSet.addUInt32
def addUInt32(self, tracked, label, value)
Definition: Config.py:1771
Config.Process.services_
def services_(self)
Definition: Config.py:312
Config.Process._placeService
def _placeService(self, typeName, mod)
Definition: Config.py:676
Config.Process._placeProducer
def _placeProducer(self, name, mod)
Definition: Config.py:618
Config.Process._place
def _place(self, name, mod, d)
Definition: Config.py:608
Config.Process._dumpPythonList
def _dumpPythonList(self, d, options)
Definition: Config.py:837
SequenceTypes.Task
Definition: SequenceTypes.py:1410
Config.ProcessFragment
Definition: Config.py:1399
Types.untracked
untracked
Definition: Types.py:35
Config.Process.__thelist
__thelist
Definition: Config.py:1267
Config.ModifierChain.copyAndExclude
def copyAndExclude(self, toExclude)
Definition: Config.py:1687
Config.TestMakePSet.addVPSet
def addVPSet(self, tracked, label, value)
Definition: Config.py:1817
Config.TestModuleCommand.testSwitchProducer
def testSwitchProducer(self)
Definition: Config.py:2861
Config._lineDiff
def _lineDiff(newString, oldString)
Definition: Config.py:1738
Config.Process.endpaths
endpaths
Definition: Config.py:284
Config.Process.outputModules_
def outputModules_(self)
Definition: Config.py:273
Config.Process._splitPython
def _splitPython(self, subfolder, d, options)
Definition: Config.py:949
Config.Process._placeLooper
def _placeLooper(self, name, mod)
Definition: Config.py:666
Config._AndModifier.__init__
def __init__(self, lhs, rhs)
Definition: Config.py:1558
Config.TestModuleCommand.testPrefers
def testPrefers(self)
Definition: Config.py:2784
SequenceTypes.SequencePlaceholder
Definition: SequenceTypes.py:674
Config.SubProcess.outputCommands
def outputCommands(self)
Definition: Config.py:1491
Config.Process._insertInto
def _insertInto(self, parameterSet, itemDict)
Definition: Config.py:1086
Config.TestMakePSet.addLuminosityBlockID
def addLuminosityBlockID(self, tracked, label, value)
Definition: Config.py:1807
Config.SubProcess.nameInProcessDesc_
def nameInProcessDesc_(self, label)
Definition: Config.py:1495
Config.TestMakePSet.addESInputTag
def addESInputTag(self, tracked, label, value)
Definition: Config.py:1799
Config.TestModuleCommand.testTask
def testTask(self)
Definition: Config.py:2265
Config.TestModuleCommand.testSecSource
def testSecSource(self)
Definition: Config.py:2170
Types.int32
Definition: Types.py:202
Config.Process.analyzers_
def analyzers_(self)
Definition: Config.py:269
SequenceTypes.Schedule
Definition: SequenceTypes.py:719
SequenceTypes.EndPath
Definition: SequenceTypes.py:650
Config.Modifier._toReplaceWithCheck
def _toReplaceWithCheck(toObj, fromObj)
Definition: Config.py:1625
Config.Process.switchProducerNames
def switchProducerNames(self)
Definition: Config.py:152
Config.Process._replaceInSchedule
def _replaceInSchedule(self, label, new)
Definition: Config.py:1075
Config.Process._dumpConfigUnnamedList
def _dumpConfigUnnamedList(self, items, typeName, options)
Definition: Config.py:745
Config._BoolModifierBase.__or__
def __or__(self, other)
Definition: Config.py:1553
Config.SubProcess.getSubProcessPSet
def getSubProcessPSet(self, parameterSet)
Definition: Config.py:1499
Config.ProcessModifier
Definition: Config.py:1718
Config.Process._dumpPython
def _dumpPython(self, d, options)
Definition: Config.py:943
Config.Process.fillProcessDesc
def fillProcessDesc(self, processPSet)
Definition: Config.py:1263
Config._BoolModifierBase.__invert__
def __invert__(self)
Definition: Config.py:1551
Config.TestMakePSet.getVString
def getVString(self, tracked, label)
Definition: Config.py:1793
Config.TestMakePSet.addVInt32
def addVInt32(self, tracked, label, value)
Definition: Config.py:1769
Config.Process._placeVPSet
def _placeVPSet(self, name, mod)
Definition: Config.py:656
Config.Process.options
options
Definition: Config.py:138
Config._BoolModifierBase.toReplaceWith
def toReplaceWith(self, toObj, fromObj)
Definition: Config.py:1539
Config.Process.globalReplace
def globalReplace(self, label, new)
Definition: Config.py:1081
Config.TestModuleCommand.a
a
Definition: Config.py:2069
OrderedSet.OrderedSet
Definition: OrderedSet.py:29
Config.TestModuleCommand.proc_mod_
proc_mod_
Definition: Config.py:3274
Config.Process.vpsets_
def vpsets_(self)
Definition: Config.py:336
Config.TestMakePSet.addVInputTag
def addVInputTag(self, tracked, label, value)
Definition: Config.py:1797
SequenceTypes
Mixins._modifyParametersFromDict
def _modifyParametersFromDict(params, newParams, errorRaiser, keyDepth="")
Definition: Mixins.py:701
Config.Process.__updateMaxEvents
def __updateMaxEvents(self, ps)
Definition: Config.py:253
Config.Modifier._setChosen
def _setChosen(self)
Definition: Config.py:1654
Config._InvertModifier.__init__
def __init__(self, lhs)
Definition: Config.py:1565
update
#define update(a, b)
Definition: TrackClassifier.cc:10
Config.TestMakePSet.addFileInPath
def addFileInPath(self, tracked, label, value)
Definition: Config.py:1819
Config.Process._insertManyInto
def _insertManyInto(self, parameterSet, label, itemDict, tracked)
Definition: Config.py:1096
DeadROC_duringRun.dir
dir
Definition: DeadROC_duringRun.py:23