CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
WorkFlow.WorkFlowBlock Class Reference
Inheritance diagram for WorkFlow.WorkFlowBlock:

Public Member Functions

def __init__
 
def getProcess
 

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 
43  def __init__(self, name,cmdDict):
44  self.nameId = name
45  self.command = ''#made from the cmdDict
46 
47  ##I/O of the block
48  self.ins=None
49  self.outs=None
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 
51  def getProcess(self):
52  #get ConfigBuilder to give a process back
53  return None
54 

Member Data Documentation

WorkFlow.WorkFlowBlock.command

Definition at line 44 of file WorkFlow.py.

Referenced by cmsRelvalreport.Profile._profile_edmsize(), cmsRelvalreport.Profile._profile_igprof(), cmsRelvalreport.Profile._profile_Memcheck_Valgrind(), cmsRelvalreport.Profile._profile_None(), cmsRelvalreport.Profile._profile_valgrindfce(), cmsRelvalreport.Profile._save_output(), and 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.