Skip to content
Snippets Groups Projects
Commit 90712ae8 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix failure after reordering of imports

parent 766b187f
No related branches found
No related tags found
1 merge request!1286Global reformatting
Pipeline #3337152 passed
......@@ -8,19 +8,19 @@
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
#####################################################################################
import cppyy
import ROOT
import GaudiPython as GP
import GaudiPython
DO = cppyy.gbl.DataObject
DO = GaudiPython.gbl.DataObject
objects = [DO() for i in range(52)]
# Once the object is registered the TES will clean it up
import ROOT
for i in objects:
ROOT.SetOwnership(i, False)
app = GP.AppMgr()
app = GaudiPython.AppMgr()
tes = app.evtsvc()
app.start()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment