CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
Config.SubProcess Class Reference
Inheritance diagram for Config.SubProcess:
Mixins._Unlabelable

Public Member Functions

def __init__ (self, process, SelectEvents=untracked.PSet(), outputCommands=untracked.vstring())
 
def dumpPython (self, options=PrintOptions())
 
def getProcessName (self)
 
def getSubProcessPSet (self, parameterSet)
 
def nameInProcessDesc_ (self, label)
 
def outputCommands (self)
 
def process (self)
 
def SelectEvents (self)
 
def type_ (self)
 

Private Member Functions

def _place (self, label, process)
 

Private Attributes

 __outputCommands
 
 __process
 
 __SelectEvents
 

Detailed Description

Allows embedding another process within a parent process. This allows one to 
chain processes together directly in one cmsRun job rather than having to run
separate jobs that are connected via a temporary file.

Definition at line 1461 of file Config.py.

Constructor & Destructor Documentation

def Config.SubProcess.__init__ (   self,
  process,
  SelectEvents = untracked.PSet(),
  outputCommands = untracked.vstring() 
)
 

Definition at line 1466 of file Config.py.

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
def __init__(self, process, SelectEvents=untracked.PSet(), outputCommands=untracked.vstring())
Definition: Config.py:1466

Member Function Documentation

def Config.SubProcess._place (   self,
  label,
  process 
)
private

Definition at line 1497 of file Config.py.

1497  def _place(self,label,process):
1498  process._placeSubProcess('subProcess',self)
def _place(self, label, process)
Definition: Config.py:1497
def Config.SubProcess.dumpPython (   self,
  options = PrintOptions() 
)

Definition at line 1478 of file Config.py.

References cond.hash, and str.

Referenced by Modules.SwitchProducer.__addParameter(), Types._AllowedParameterTypes.__init__(), Mixins._ParameterTypeBase.__repr__(), Mixins._Parameterizable.__repr__(), Mixins._ValidatingParameterListBase.__repr__(), Types.VPSet.__repr__(), Mixins._Parameterizable.__setattr__(), Modules.SwitchProducer.__setattr__(), and SequenceTypes.Schedule.__str__().

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
def dumpPython(self, options=PrintOptions())
Definition: Config.py:1478
#define str(s)
def Config.SubProcess.getProcessName (   self)

Definition at line 1485 of file Config.py.

Referenced by Types.InputTag.cppTag().

1485  def getProcessName(self):
1486  return self.__process.name_()
def getProcessName(self)
Definition: Config.py:1485
def Config.SubProcess.getSubProcessPSet (   self,
  parameterSet 
)

Definition at line 1499 of file Config.py.

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 
def getSubProcessPSet(self, parameterSet)
Definition: Config.py:1499
def Config.SubProcess.nameInProcessDesc_ (   self,
  label 
)
def Config.SubProcess.outputCommands (   self)

Definition at line 1491 of file Config.py.

References Config.SubProcess.__outputCommands.

1491  def outputCommands(self):
1492  return self.__outputCommands
def outputCommands(self)
Definition: Config.py:1491
def Config.SubProcess.process (   self)

Definition at line 1487 of file Config.py.

References Config.Process.__process, Config.ProcessFragment.__process, and Config.SubProcess.__process.

1487  def process(self):
1488  return self.__process
def process(self)
Definition: Config.py:1487
def Config.SubProcess.SelectEvents (   self)

Definition at line 1489 of file Config.py.

References Config.SubProcess.__SelectEvents.

1489  def SelectEvents(self):
1490  return self.__SelectEvents
def SelectEvents(self)
Definition: Config.py:1489
def Config.SubProcess.type_ (   self)

Member Data Documentation

Config.SubProcess.__outputCommands
private

Definition at line 1477 of file Config.py.

Referenced by Config.SubProcess.outputCommands().

Config.SubProcess.__process
private

Definition at line 1475 of file Config.py.

Referenced by Config.SubProcess.process().

Config.SubProcess.__SelectEvents
private

Definition at line 1476 of file Config.py.

Referenced by Config.SubProcess.SelectEvents().