CMS 3D CMS Logo

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

Public Member Functions

def __str__ (self)
 

Detailed Description

A list with print functionalities.

Used to define a sequence of analyzers.

Definition at line 173 of file config.py.

Member Function Documentation

◆ __str__()

def config.Sequence.__str__ (   self)

Definition at line 177 of file config.py.

References join().

177  def __str__(self):
178  tmp = []
179  for index, ana in enumerate( self ):
180  tmp.append( '{index} :'.format(index=index) )
181  tmp.append( '{ana} :'.format(ana=ana) )
182  return '\n'.join(tmp)
183 
184 #TODO review inheritance, and in particular constructor args - this is a mess.
185 
static std::string join(char **cmd)
Definition: RemoteFile.cc:21