CMS 3D CMS Logo

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

Public Member Functions

def __init__ (self, components, sequence, services, events_class, preprocessor=None)
 
def __str__ (self)
 

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 246 of file config.py.

Constructor & Destructor Documentation

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

Definition at line 249 of file config.py.

249  def __init__(self, components, sequence, services, events_class,preprocessor=None):
250  self.preprocessor = preprocessor
251  self.components = components
252  self.sequence = sequence
253  self.services = services
254  self.events_class = events_class
255 
def __init__(self, components, sequence, services, events_class, preprocessor=None)
Definition: config.py:249

Member Function Documentation

def config.Config.__str__ (   self)

Definition at line 256 of file config.py.

References config.Config.components, join(), genParticles_cff.map, FFTJetCorrectionESProducer< CT >.sequence, config.Config.sequence, SequenceVisitors.NodeVisitor.services, Config.Process.services, config.Config.services, and harvestTrackValidationPlots.str.

256  def __str__(self):
257  comp = '\n'.join(map(str, self.components))
258  sequence = str(self.sequence)
259  services = '\n'.join( map(str, self.services))
260  return '\n'.join([comp, sequence, services])
261 
262 
263 
def __str__(self)
Definition: config.py:256
static std::string join(char **cmd)
Definition: RemoteFile.cc:18

Member Data Documentation

config.Config.components

Definition at line 251 of file config.py.

Referenced by config.Config.__str__().

config.Config.events_class

Definition at line 254 of file config.py.

config.Config.preprocessor

Definition at line 250 of file config.py.

config.Config.sequence

Definition at line 252 of file config.py.

Referenced by config.Config.__str__().

config.Config.services

Definition at line 253 of file config.py.

Referenced by config.Config.__str__().