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__
 
def dumpPython
 
def getProcessName
 
def getSubProcessPSet
 
def nameInProcessDesc_
 
def outputCommands
 
def process
 
def SelectEvents
 
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 that are connected via a temporary file.

Definition at line 1066 of file Config.py.

Constructor & Destructor Documentation

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

Definition at line 1071 of file Config.py.

1072  def __init__(self,process, SelectEvents = untracked.PSet(), outputCommands = untracked.vstring()):
1073  """
1074  """
1075  if not isinstance(process, Process):
1076  raise ValueError("the 'process' argument must be of type cms.Process")
1077  if not isinstance(SelectEvents,PSet):
1078  raise ValueError("the 'SelectEvents' argument must be of type cms.untracked.PSet")
1079  if not isinstance(outputCommands,vstring):
1080  raise ValueError("the 'outputCommands' argument must be of type cms.untracked.vstring")
1081  self.__process = process
1082  self.__SelectEvents = SelectEvents
self.__outputCommands = outputCommands

Member Function Documentation

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

Definition at line 1102 of file Config.py.

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

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

1084  def dumpPython(self,options):
1085  out = "parentProcess"+str(hash(self))+" = process\n"
1086  out += self.__process.dumpPython()
1087  out += "childProcess = process\n"
1088  out += "process = parentProcess"+str(hash(self))+"\n"
1089  out += "process.addSubProcess(cms.SubProcess(process = childProcess, SelectEvents = "+self.__SelectEvents.dumpPython(options) +", outputCommands = "+self.__outputCommands.dumpPython(options) +"))"
return out
def Config.SubProcess.getProcessName (   self)

Definition at line 1090 of file Config.py.

Referenced by Types.InputTag.cppTag().

1091  def getProcessName(self):
return self.__process.name_()
def Config.SubProcess.getSubProcessPSet (   self,
  parameterSet 
)

Definition at line 1104 of file Config.py.

1105  def getSubProcessPSet(self,parameterSet):
1106  topPSet = parameterSet.newPSet()
1107  self.__process.fillProcessDesc(topPSet)
1108  subProcessPSet = parameterSet.newPSet()
1109  self.__SelectEvents.insertInto(subProcessPSet,"SelectEvents")
1110  self.__outputCommands.insertInto(subProcessPSet,"outputCommands")
1111  subProcessPSet.addPSet(False,"process",topPSet)
1112  return subProcessPSet
def getSubProcessPSet
Definition: Config.py:1104
def Config.SubProcess.nameInProcessDesc_ (   self,
  label 
)

Definition at line 1100 of file Config.py.

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

1101  def nameInProcessDesc_(self,label):
return label
def nameInProcessDesc_
Definition: Config.py:1100
def Config.SubProcess.outputCommands (   self)

Definition at line 1096 of file Config.py.

References Config.SubProcess.__outputCommands.

1097  def outputCommands(self):
return self.__outputCommands
def Config.SubProcess.process (   self)

Definition at line 1092 of file Config.py.

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

Referenced by ConfigBuilder.ConfigBuilder.addExtraStream(), ConfigBuilder.ConfigBuilder.completeInputCommand(), ConfigBuilder.ConfigBuilder.doNotInlineEventContent(), ConfigBuilder.ConfigBuilder.PrintAllModules.leave(), ConfigBuilder.ConfigBuilder.prepare_HLT(), ConfigBuilder.ConfigBuilder.prepare_LHE(), ConfigBuilder.ConfigBuilder.prepare_PATFILTER(), ConfigBuilder.ConfigBuilder.prepare_VALIDATION(), ConfigBuilder.ConfigBuilder.renameHLTprocessInSequence(), ConfigBuilder.ConfigBuilder.renameInputTagsInSequence(), and ConfigBuilder.ConfigBuilder.scheduleSequence().

1093  def process(self):
return self.__process
def Config.SubProcess.SelectEvents (   self)

Definition at line 1094 of file Config.py.

References Config.SubProcess.__SelectEvents.

1095  def SelectEvents(self):
return self.__SelectEvents
def Config.SubProcess.type_ (   self)

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

1099  def type_(self):
return 'subProcess'

Member Data Documentation

Config.SubProcess.__outputCommands
private

Definition at line 1082 of file Config.py.

Referenced by Config.SubProcess.outputCommands().

Config.SubProcess.__process
private

Definition at line 1080 of file Config.py.

Referenced by Config.SubProcess.process().

Config.SubProcess.__SelectEvents
private

Definition at line 1081 of file Config.py.

Referenced by Config.SubProcess.SelectEvents().