Created
September 22, 2013 07:27
-
-
Save ndawe/6657605 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG=1 python | |
Python 2.7.4 (default, Apr 19 2013, 18:28:01) | |
[GCC 4.7.3] on linux2 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> from rootpy import stl | |
INFO:rootpy.logger] | No default log handler configured. See `logging` module | | |
INFO:rootpy.logger] \ To suppress: 'rootpy.log.basic_config_colorized()' / | |
DEBUG:rootpy.utils.quickroot] Loaded libHist (required by TH1) | |
DEBUG:rootpy] Using ROOT 5.34/03 | |
>>> stl.map('int,vector<map<int, float> >') | |
DEBUG:rootpy.defaults] PyROOT's finalSetup() has been triggered | |
DEBUG:rootpy.defaults] PyROOT's finalSetup() has been called (gROOT.IsBatch()==False) | |
DEBUG:rootpy.defaults] configure_defaults() | |
DEBUG:rootpy.userdata] Using binary path: /home/endw/.cache/rootpy/x86_64-53403 | |
DEBUG:rootpy.stl] requesting dictionary for map<int, float> | |
DEBUG:rootpy.stl] using the headers <map> | |
DEBUG:rootpy.utils.lock] 8144@neutrino attempting to lock /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
DEBUG:rootpy.utils.lock] 8144@neutrino waiting for 5 seconds for lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock to be released | |
DEBUG:rootpy.utils.lock] 8144@neutrino locked /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
INFO:rootpy.stl] generating dictionary for map<int, float> ... | |
DEBUG:rootpy.stl] source path: /home/endw/.cache/rootpy/x86_64-53403/dicts/4258508e053f30d2.C | |
DEBUG:rootpy.stl] include path: -I$ROOTSYS/include -I"/home/endw/software/root/root_v5.34.03/include" | |
INFO:ROOT.TUnixSystem.ACLiC] creating shared library /home/endw/.cache/rootpy/x86_64-53403/dicts/4258508e053f30d2.so | |
DEBUG:rootpy.utils.lock] 8144@neutrino released lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
DEBUG:rootpy.stl] requesting dictionary for vector<map<int, float> > | |
DEBUG:rootpy.stl] using the headers <map>, <vector> | |
DEBUG:rootpy.utils.lock] 8144@neutrino attempting to lock /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
DEBUG:rootpy.utils.lock] 8144@neutrino waiting for 5 seconds for lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock to be released | |
DEBUG:rootpy.utils.lock] 8144@neutrino locked /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
INFO:rootpy.stl] generating dictionary for vector<map<int, float> > ... | |
DEBUG:rootpy.stl] source path: /home/endw/.cache/rootpy/x86_64-53403/dicts/9621f9c5c2255718.C | |
DEBUG:rootpy.stl] include path: -I$ROOTSYS/include -I"/home/endw/software/root/root_v5.34.03/include" | |
INFO:ROOT.TUnixSystem.ACLiC] creating shared library /home/endw/.cache/rootpy/x86_64-53403/dicts/9621f9c5c2255718.so | |
DEBUG:rootpy.utils.lock] 8144@neutrino released lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
DEBUG:rootpy.stl] requesting dictionary for map<int, vector<map<int, float> > > | |
DEBUG:rootpy.stl] using the headers <map>, <vector> | |
DEBUG:rootpy.utils.lock] 8144@neutrino attempting to lock /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
DEBUG:rootpy.utils.lock] 8144@neutrino waiting for 5 seconds for lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock to be released | |
DEBUG:rootpy.utils.lock] 8144@neutrino locked /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
INFO:rootpy.stl] generating dictionary for map<int, vector<map<int, float> > > ... | |
DEBUG:rootpy.stl] source path: /home/endw/.cache/rootpy/x86_64-53403/dicts/3490fcc0b320eade.C | |
DEBUG:rootpy.stl] include path: -I$ROOTSYS/include -I"/home/endw/software/root/root_v5.34.03/include" | |
INFO:ROOT.TUnixSystem.ACLiC] creating shared library /home/endw/.cache/rootpy/x86_64-53403/dicts/3490fcc0b320eade.so | |
DEBUG:rootpy.utils.lock] 8144@neutrino released lock on /home/endw/.cache/rootpy/x86_64-53403/dicts/lock | |
<class 'ROOT.map<int,vector<map<int,float,less<int>,allocator<pair<const int,float> > >,allocator<map<int,float,less<int>,allocator<pair<const int,float> > > > >,less<int>,allocator<pair<const int,vector<map<int,float,less<int>,allocator<pair<const int,float> > >,allocator<map<int,float,less<int>,allocator<pair<const int,float> > > > > > > >'> | |
>>> stl.map('int,vector<map<int, float> >') | |
<class 'ROOT.map<int,vector<map<int,float,less<int>,allocator<pair<const int,float> > >,allocator<map<int,float,less<int>,allocator<pair<const int,float> > > > >,less<int>,allocator<pair<const int,vector<map<int,float,less<int>,allocator<pair<const int,float> > >,allocator<map<int,float,less<int>,allocator<pair<const int,float> > > > > > > >'> | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment