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 888 of file Config.py.

Constructor & Destructor Documentation

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

Definition at line 893 of file Config.py.

894  def __init__(self,process, SelectEvents = untracked.PSet(), outputCommands = untracked.vstring()):
895  """
896  """
897  if not isinstance(process, Process):
898  raise ValueError("the 'process' argument must be of type cms.Process")
899  if not isinstance(SelectEvents,PSet):
900  raise ValueError("the 'SelectEvents' argument must be of type cms.untracked.PSet")
901  if not isinstance(outputCommands,vstring):
902  raise ValueError("the 'outputCommands' argument must be of type cms.untracked.vstring")
903  self.__process = process
904  self.__SelectEvents = SelectEvents
self.__outputCommands = outputCommands

Member Function Documentation

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

Definition at line 916 of file Config.py.

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

Definition at line 905 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__().

906  def dumpPython(self,options):
907  out = "parentProcess"+str(hash(self))+" = process\n"
908  out += self.__process.dumpPython()
909  out += "childProcess = process\n"
910  out += "process = parentProcess"+str(hash(self))+"\n"
911  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 918 of file Config.py.

References Config.SubProcess.nameInProcessDesc_().

919  def insertInto(self,parameterSet, newlabel):
920  topPSet = parameterSet.newPSet()
921  self.__process.fillProcessDesc(topPSet)
922  subProcessPSet = parameterSet.newPSet()
923  self.__SelectEvents.insertInto(subProcessPSet,"SelectEvents")
924  self.__outputCommands.insertInto(subProcessPSet,"outputCommands")
925  subProcessPSet.addPSet(False,"process",topPSet)
926  parameterSet.addPSet(False,self.nameInProcessDesc_("subProcess"), subProcessPSet)
def nameInProcessDesc_
Definition: Config.py:914
def Config.SubProcess.nameInProcessDesc_ (   self,
  label 
)

Definition at line 914 of file Config.py.

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

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

Definition at line 912 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_().

913  def type_(self):
return 'subProcess'

Member Data Documentation

Config.SubProcess.__outputCommands
private

Definition at line 904 of file Config.py.

Config.SubProcess.__process
private

Definition at line 902 of file Config.py.

Config.SubProcess.__SelectEvents
private

Definition at line 903 of file Config.py.