ATLAS Offline Software
Loading...
Searching...
No Matches
DeleteChecker.py
Go to the documentation of this file.
1# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2
3# File: Hephaestus/DeleteChecker.py
4# Author Wim Lavrijsen (WLavrijsen@lbl.gov)
5
6__version__ = '1.1.0'
7__author__ = 'Wim Lavrijsen (WLavrijsen@lbl.gov)'
8
9def setup():
10 from MemoryTracker import DeleteChecker as ddcheck
11
12 ddcheck.save()
13 ddcheck.install()
14
15 return ddcheck.save, ddcheck.install, ddcheck.start, ddcheck.stop, ddcheck.uninstall
16
17save, install, start, stop, uninstall = setup()
18del setup