Definition at line 48 of file Persistency.py.
 
      
        
          | def GaudiPython.Persistency.FileDescription.__init__ | ( |  | self, | 
        
          |  |  |  | filename, | 
        
          |  |  |  | opt, | 
        
          |  |  |  | svc, | 
        
          |  |  |  | sel = None, | 
        
          |  |  |  | collection = None, | 
        
          |  |  |  | fun = None | 
        
          |  | ) |  |  | 
      
 
Class to hold/manipulate the file description.
@param filename: name of the file
@param opt: option (READ/CREATE/RECREATE/WRITE)
@param svc: conversion service (or selector)
@param sel: selection expression
@param collection: collection
@param fun: selection class
 
Definition at line 49 of file Persistency.py.
   49     def __init__(self, filename, opt, svc, sel=None, collection=None, fun=None):
    51         Class to hold/manipulate the file description.    53         @param filename: name of the file    54         @param opt: option (READ/CREATE/RECREATE/WRITE)    55         @param svc: conversion service (or selector)    56         @param sel: selection expression    57         @param collection: collection    58         @param fun: selection class 
def __init__(self, filename, opt, svc, sel=None, collection=None, fun=None)
 
 
      
        
          | def GaudiPython.Persistency.FileDescription.__data__ | ( |  | self | ) |  | 
      
 
Return a list of pairs describing the instance.
 
Definition at line 67 of file Persistency.py.
   69         Return a list of pairs describing the instance. 
 
 
      
        
          | def GaudiPython.Persistency.FileDescription.__str__ | ( |  | self | ) |  | 
      
 
Return the string representation of the file description to be passed
to the application.
 
Definition at line 78 of file Persistency.py.
   80         Return the string representation of the file description to be passed    83         return " ".join([
"%s='%s'" % (k, v) 
for k, v 
in self.
__data__() 
if v])
 
 
 
      
        
          | GaudiPython.Persistency.FileDescription.collection | 
      
 
 
      
        
          | GaudiPython.Persistency.FileDescription.filename | 
      
 
 
      
        
          | GaudiPython.Persistency.FileDescription.fun | 
      
 
 
      
        
          | GaudiPython.Persistency.FileDescription.opt | 
      
 
 
      
        
          | GaudiPython.Persistency.FileDescription.sel | 
      
 
 
      
        
          | GaudiPython.Persistency.FileDescription.svc | 
      
 
 
The documentation for this class was generated from the following file: