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._ConfigureComponent Mixins._Unlabelable

Public Member Functions

def __init__
 
def dumpPython
 
def insertInto
 
def nameInProcessDesc_
 
def type_
 

Private Member Functions

def _place
 

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 which are connected via a temporary file.

Definition at line 994 of file Config.py.

Constructor & Destructor Documentation

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

Definition at line 999 of file Config.py.

1000  def __init__(self,process, SelectEvents = untracked.PSet(), outputCommands = untracked.vstring()):
1001  """
1002  """
1003  if not isinstance(process, Process):
1004  raise ValueError("the 'process' argument must be of type cms.Process")
1005  if not isinstance(SelectEvents,PSet):
1006  raise ValueError("the 'SelectEvents' argument must be of type cms.untracked.PSet")
1007  if not isinstance(outputCommands,vstring):
1008  raise ValueError("the 'outputCommands' argument must be of type cms.untracked.vstring")
1009  self.__process = process
1010  self.__SelectEvents = SelectEvents
self.__outputCommands = outputCommands

Member Function Documentation

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

Definition at line 1022 of file Config.py.

1023  def _place(self,label,process):
process._placeSubProcess('subProcess',self)
def Config.SubProcess.dumpPython (   self,
  options 
)

Definition at line 1011 of file Config.py.

References cond.hash.

Referenced by Mixins._Parameterizable.__addParameter(), Mixins._ParameterTypeBase.__repr__(), Mixins._Parameterizable.__repr__(), Mixins._ValidatingParameterListBase.__repr__(), Types.VPSet.__repr__(), and Mixins._Parameterizable.__setattr__().

1012  def dumpPython(self,options):
1013  out = "parentProcess"+str(hash(self))+" = process\n"
1014  out += self.__process.dumpPython()
1015  out += "childProcess = process\n"
1016  out += "process = parentProcess"+str(hash(self))+"\n"
1017  out += "process.subProcess = cms.SubProcess( process = childProcess, SelectEvents = "+self.__SelectEvents.dumpPython(options) +", outputCommands = "+self.__outputCommands.dumpPython(options) +")\n"
return out
def Config.SubProcess.insertInto (   self,
  parameterSet,
  newlabel 
)

Definition at line 1024 of file Config.py.

References Config.SubProcess.nameInProcessDesc_().

1025  def insertInto(self,parameterSet, newlabel):
1026  topPSet = parameterSet.newPSet()
1027  self.__process.fillProcessDesc(topPSet)
1028  subProcessPSet = parameterSet.newPSet()
1029  self.__SelectEvents.insertInto(subProcessPSet,"SelectEvents")
1030  self.__outputCommands.insertInto(subProcessPSet,"outputCommands")
1031  subProcessPSet.addPSet(False,"process",topPSet)
1032  parameterSet.addPSet(False,self.nameInProcessDesc_("subProcess"), subProcessPSet)
def nameInProcessDesc_
Definition: Config.py:1020
def Config.SubProcess.nameInProcessDesc_ (   self,
  label 
)

Definition at line 1020 of file Config.py.

Referenced by Mixins._TypedParameterizable.insertInto(), Config.SubProcess.insertInto(), and Types.EDAlias.insertInto().

1021  def nameInProcessDesc_(self,label):
return '@sub_process'
def nameInProcessDesc_
Definition: Config.py:1020
def Config.SubProcess.type_ (   self)

Definition at line 1018 of file Config.py.

Referenced by Modules.Service._placeImpl(), Modules.ESSource._placeImpl(), Modules.ESProducer._placeImpl(), Modules.ESPrefer.copy(), Mixins._TypedParameterizable.dumpPython(), Modules.ESPrefer.dumpPythonAs(), Modules.Service.insertInto(), RandomRunSource.RandomRunSource.insertInto(), Mixins._TypedParameterizable.insertInto(), Modules.ESSource.moduleLabel_(), Modules.ESProducer.moduleLabel_(), Modules.ESSource.nameInProcessDesc_(), Modules.ESProducer.nameInProcessDesc_(), and Modules.ESPrefer.nameInProcessDesc_().

1019  def type_(self):
return 'subProcess'

Member Data Documentation

Config.SubProcess.__outputCommands
private

Definition at line 1010 of file Config.py.

Config.SubProcess.__process
private

Definition at line 1008 of file Config.py.

Config.SubProcess.__SelectEvents
private

Definition at line 1009 of file Config.py.