CMS 3D CMS Logo

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

Constructor & Destructor Documentation

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

Definition at line 1220 of file Config.py.

1220  def __init__(self,process, SelectEvents = untracked.PSet(), outputCommands = untracked.vstring()):
1221  """
1222  """
1223  if not isinstance(process, Process):
1224  raise ValueError("the 'process' argument must be of type cms.Process")
1225  if not isinstance(SelectEvents,PSet):
1226  raise ValueError("the 'SelectEvents' argument must be of type cms.untracked.PSet")
1227  if not isinstance(outputCommands,vstring):
1228  raise ValueError("the 'outputCommands' argument must be of type cms.untracked.vstring")
1229  self.__process = process
1230  self.__SelectEvents = SelectEvents
1231  self.__outputCommands = outputCommands
def __init__(self, process, SelectEvents=untracked.PSet(), outputCommands=untracked.vstring())
Definition: Config.py:1220

Member Function Documentation

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

Definition at line 1251 of file Config.py.

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

Definition at line 1232 of file Config.py.

References cond.hash, and str.

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

1232  def dumpPython(self,options=PrintOptions()):
1233  out = "parentProcess"+str(hash(self))+" = process\n"
1234  out += self.__process.dumpPython()
1235  out += "childProcess = process\n"
1236  out += "process = parentProcess"+str(hash(self))+"\n"
1237  out += "process.addSubProcess(cms.SubProcess(process = childProcess, SelectEvents = "+self.__SelectEvents.dumpPython(options) +", outputCommands = "+self.__outputCommands.dumpPython(options) +"))"
1238  return out
def dumpPython(self, options=PrintOptions())
Definition: Config.py:1232
#define str(s)
def Config.SubProcess.getProcessName (   self)

Definition at line 1239 of file Config.py.

Referenced by Types.InputTag.cppTag().

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

Definition at line 1253 of file Config.py.

1253  def getSubProcessPSet(self,parameterSet):
1254  topPSet = parameterSet.newPSet()
1255  self.__process.fillProcessDesc(topPSet)
1256  subProcessPSet = parameterSet.newPSet()
1257  self.__SelectEvents.insertInto(subProcessPSet,"SelectEvents")
1258  self.__outputCommands.insertInto(subProcessPSet,"outputCommands")
1259  subProcessPSet.addPSet(False,"process",topPSet)
1260  return subProcessPSet
1261 
def getSubProcessPSet(self, parameterSet)
Definition: Config.py:1253
def Config.SubProcess.nameInProcessDesc_ (   self,
  label 
)

Definition at line 1249 of file Config.py.

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

1249  def nameInProcessDesc_(self,label):
1250  return label
def nameInProcessDesc_(self, label)
Definition: Config.py:1249
def Config.SubProcess.outputCommands (   self)

Definition at line 1245 of file Config.py.

References Config.SubProcess.__outputCommands.

1245  def outputCommands(self):
1246  return self.__outputCommands
def outputCommands(self)
Definition: Config.py:1245
def Config.SubProcess.process (   self)

Definition at line 1241 of file Config.py.

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

1241  def process(self):
1242  return self.__process
def process(self)
Definition: Config.py:1241
def Config.SubProcess.SelectEvents (   self)

Definition at line 1243 of file Config.py.

References Config.SubProcess.__SelectEvents.

1243  def SelectEvents(self):
1244  return self.__SelectEvents
def SelectEvents(self)
Definition: Config.py:1243
def Config.SubProcess.type_ (   self)

Member Data Documentation

Config.SubProcess.__outputCommands
private

Definition at line 1231 of file Config.py.

Referenced by Config.SubProcess.outputCommands().

Config.SubProcess.__process
private

Definition at line 1229 of file Config.py.

Referenced by Config.SubProcess.process().

Config.SubProcess.__SelectEvents
private

Definition at line 1230 of file Config.py.

Referenced by Config.SubProcess.SelectEvents().