CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
WorkFlow.WorkFlowBlock Class Reference
Inheritance diagram for WorkFlow.WorkFlowBlock:

Public Member Functions

def __init__ (self, name, cmdDict)
 
def getProcess (self)
 

Public Attributes

 command
 
 ins
 I/O of the block. More...
 
 nameId
 
 outs
 

Detailed Description

Definition at line 41 of file WorkFlow.py.

Constructor & Destructor Documentation

def WorkFlow.WorkFlowBlock.__init__ (   self,
  name,
  cmdDict 
)

Definition at line 42 of file WorkFlow.py.

42  def __init__(self, name,cmdDict):
43  self.nameId = name
44  self.command = ''#made from the cmdDict
45 
46  ##I/O of the block
47  self.ins=None
48  self.outs=None
49 
def __init__(self, name, cmdDict)
Definition: WorkFlow.py:42
ins
I/O of the block.
Definition: WorkFlow.py:47

Member Function Documentation

def WorkFlow.WorkFlowBlock.getProcess (   self)

Definition at line 50 of file WorkFlow.py.

50  def getProcess(self):
51  #get ConfigBuilder to give a process back
52  return None
53 
54 
def getProcess(self)
Definition: WorkFlow.py:50

Member Data Documentation

WorkFlow.WorkFlowBlock.command

Definition at line 44 of file WorkFlow.py.

Referenced by cmsswPreprocessor.CmsswPreprocessor.run().

WorkFlow.WorkFlowBlock.ins

I/O of the block.

Definition at line 47 of file WorkFlow.py.

WorkFlow.WorkFlowBlock.nameId

Definition at line 43 of file WorkFlow.py.

WorkFlow.WorkFlowBlock.outs

Definition at line 48 of file WorkFlow.py.