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 ).pyContains( key, clname )
65 clname = type.__name__
66 if hasattr( type,
"__cpp_name__" ):
67 clname = type.__cpp_name__
70 return super( TPyStore, self ).pyIsConst( 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 ).pyRecord( obj, key, clname )
void print(char *figname, TCanvas *c1)
A Python wrapper around xAOD.TPyStore.
__init__(self)
Constructor for the class.
contains(self, key, type)
Convenient version of the base class's contains function.
isConst(self, key, type)
Convenient version of the base class's isConst function.
record(self, obj, key)
Convenient version of the base class's record function.