Definition at line 273 of file root_pickle.py.
◆ result
◆ __init__()
| python.root_pickle.Saver.__init__ |
( |
| self | ) |
|
Definition at line 274 of file root_pickle.py.
274 def __init__ (self):
275 self.__chunksize = 65536
276 self.__i = self.__chunksize
277 self.__chunks = []
278 return
279
◆ add()
| python.root_pickle.Saver.add |
( |
| self, |
|
|
| o ) |
Definition at line 280 of file root_pickle.py.
281 if self.__i >= self.__chunksize:
282 self.__chunks.append ([None] * self.__chunksize)
283 self.__i = 0
284 self.__chunks[-1][self.__i] = o
285 self.__i += 1
286 return
287
288
bool add(const std::string &hname, TKey *tobj)
◆ __chunks
| list python.root_pickle.Saver.__chunks = [] |
|
private |
◆ __chunksize
| python.root_pickle.Saver.__chunksize = 65536 |
|
private |
◆ __i
| int python.root_pickle.Saver.__i = self.__chunksize |
|
private |
The documentation for this class was generated from the following file: