|
ATLAS Offline Software
|
Go to the documentation of this file.
23 ROOT.xAOD.TPyStore.__init__( self )
42 clname = type.__name__
43 if hasattr( type,
"__cpp_name__" ):
44 clname = type.__cpp_name__
47 return super( TPyStore, self ).
contains( key, clname )
65 clname = type.__name__
66 if hasattr( type,
"__cpp_name__" ):
67 clname = type.__cpp_name__
70 return super( TPyStore, self ).
isConst( key, clname )
89 clname = obj.__class__.__name__
90 if hasattr( obj.__class__,
"__cpp_name__" ):
91 clname = obj.__class__.__cpp_name__
94 print(
"Recording",key,clname)
95 return super( TPyStore, self ).
record( obj, key, clname )
def contains(self, key, type)
Convenient version of the base class's contains function.
A Python wrapper around xAOD::TPyStore.
def __init__(self)
Constructor for the class.
def record(self, obj, key)
Convenient version of the base class's record function.
void print(std::FILE *stream, std::format_string< Args... > fmt, Args &&... args)
def isConst(self, key, type)
Convenient version of the base class's isConst function.