ATLAS Offline Software
Loading...
Searching...
No Matches
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"""
5Load the DQUtils dictionary
6
7Exposes quick_retrieve and GIL releasing functions
8"""
9
10import cppyy
11
12import PyCool
13
14cppyy.load_library("libDQUtilsDict.so")
15
16quick_retrieve = cppyy.gbl.quick_retrieve
17browse_coracool = cppyy.gbl.browse_coracool
18get_coracool_payload_spec = cppyy.gbl.get_coracool_payload_spec
19make_fieldselection = cppyy.gbl.make_fieldselection
20make_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']