ATLAS Offline Software
quick_retrieve.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
4 """
5 Load the DQUtils dictionary
6 
7 Exposes quick_retrieve and GIL releasing functions
8 """
9 
10 import cppyy
11 
12 import PyCool
13 
14 cppyy.load_library("libDQUtilsDict.so")
15 
16 quick_retrieve = cppyy.gbl.quick_retrieve
17 browse_coracool = cppyy.gbl.browse_coracool
18 get_coracool_payload_spec = cppyy.gbl.get_coracool_payload_spec
19 make_fieldselection = cppyy.gbl.make_fieldselection
20 make_selection_vector = cppyy.gbl.make_selection_vector
21 
22 __all__ = ['PyCool', 'quick_retrieve', 'browse_coracool',
23  'get_coracool_payload_spec', 'make_fieldselection',
24  'make_selection_vector']