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
config.Config Class Reference
Inheritance diagram for config.Config:

Public Member Functions

def __init__
 
def __str__
 

Public Attributes

 components
 
 events_class
 
 preprocessor
 
 sequence
 
 services
 

Detailed Description

Main configuration object, holds a sequence of analyzers, and
a list of components.

Definition at line 187 of file config.py.

Constructor & Destructor Documentation

def config.Config.__init__ (   self,
  components,
  sequence,
  services,
  events_class,
  preprocessor = None 
)

Definition at line 190 of file config.py.

191  def __init__(self, components, sequence, services, events_class,preprocessor=None):
192  self.preprocessor = preprocessor
193  self.components = components
194  self.sequence = sequence
195  self.services = services
196  self.events_class = events_class
def __init__
Definition: config.py:190

Member Function Documentation

def config.Config.__str__ (   self)

Definition at line 197 of file config.py.

References config.Config.components, join(), python.multivaluedict.map(), FFTJetCorrectionESProducer< CT >.sequence, config.Config.sequence, ConfigBuilder.ConfigBuilder.sequence, config.Config.services, and Config.Process.services.

198  def __str__(self):
199  comp = '\n'.join(map(str, self.components))
200  sequence = str(self.sequence)
201  services = '\n'.join( map(str, self.services))
202  return '\n'.join([comp, sequence, services])
203 
204 
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
def __str__
Definition: config.py:197

Member Data Documentation

config.Config.components

Definition at line 192 of file config.py.

Referenced by config.Config.__str__().

config.Config.events_class

Definition at line 195 of file config.py.

config.Config.preprocessor

Definition at line 191 of file config.py.

config.Config.sequence

Definition at line 193 of file config.py.

Referenced by config.Config.__str__().

config.Config.services

Definition at line 194 of file config.py.

Referenced by config.Config.__str__().