Skip to content

Commit 4f32dc2

Browse files
committed
switch to minted for code blocks
1 parent 0f2f588 commit 4f32dc2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+197
-4314
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
*.pyg.lst
1414
*.pyg.sty
1515
*.cookie
16+
*.fdb_latexmk

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Download and install garamond::
22

33
wget http://tug.org/fonts/getnonfreefonts/install-getnonfreefonts
4-
texlua install-getnonfreefonts
4+
sudo texlua install-getnonfreefonts
55
sudo getnonfreefonts-sys garamond

common/preamble.tex

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
%\newenvironment{wideenumerate}{\enumerate\addtolength{\itemsep}{100pt}}{\endenumerate}
88

99
%\usepackage{upquote}
10-
\usepackage{listings}
11-
\lstset{language=Python}
10+
%\usepackage{listings}
11+
%\lstset{language=Python}
12+
\usepackage{minted}
1213

1314
% turn off hyphenation
1415
%\usepackage[none]{hyphenat}

overview/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_minted-rootpy-talk

overview/Makefile

100755100644
+17-4,146
Large diffs are not rendered by default.

overview/examples/branch.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from ROOT import TTree, TFile
44
from array import array
55
from random import gauss
@@ -15,5 +15,5 @@
1515

1616
tree.Write()
1717
output_file.Close()
18-
\end{pyglist}
18+
\end{minted}
1919
\end{footnotesize}

overview/examples/branch_output.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
\end{minted}
44
\end{footnotesize}

overview/examples/branch_rootpy.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.io import root_open
44
from rootpy.tree import Tree, TreeModel
55
from rootpy.types import FloatCol
@@ -14,5 +14,5 @@
1414
tree.variable = gauss(0, 1)
1515
tree.Fill()
1616
tree.Write()
17-
\end{pyglist}
17+
\end{minted}
1818
\end{footnotesize}
+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
Traceback (most recent call last):
4+
File "branch_rootpy.py.tmp", line 13, in <module>
5+
from rootpy.types import FloatCol
6+
File "/home/endw/software/ROOT/v6-06-02/lib/root/ROOT.py", line 303, in _importhook
7+
return _orig_ihook( name, *args, **kwds )
8+
ImportError: No module named types
9+
\end{minted}
410
\end{footnotesize}

overview/examples/canvas.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from ROOT import TCanvas, TH1D
44

55
def make_plot():
@@ -14,5 +14,5 @@
1414
canvas.Draw()
1515
# hack to keep Python from exiting while the canvas is displayed
1616
raw_input()
17-
\end{pyglist}
17+
\end{minted}
1818
\end{footnotesize}

overview/examples/canvas_output.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
\end{minted}
44
\end{footnotesize}

overview/examples/canvas_rootpy.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.plotting import Canvas, Hist
44
from rootpy.interactive import wait
55

@@ -13,5 +13,5 @@
1313
canvas = make_plot()
1414
canvas.Draw()
1515
wait()
16-
\end{pyglist}
16+
\end{minted}
1717
\end{footnotesize}
+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
WARNING:rootpy.interactive.rootwait] unable to access ROOT's GUI thread either because PyROOT's
4+
finalSetup() was called while in batch mode or because PyROOT
5+
is using the new PyOS_InputHook-based mechanism that is not yet
6+
supported in rootpy (PyConfig.StartGuiThread == 'inputhook' or
7+
gSystem.InheritsFrom('TMacOSXSystem')). wait() etc. will
8+
instead call raw_input() and wait for [Enter]
9+
\end{minted}
410
\end{footnotesize}

overview/examples/cuts.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from ROOT import TCut
44

55
cut1 = TCut('a<10')
@@ -10,5 +10,5 @@
1010
cut2.GetTitle()))
1111

1212
print cut.GetTitle()
13-
\end{pyglist}
13+
\end{minted}
1414
\end{footnotesize}

overview/examples/cuts_output.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
(a<10)&&(b%2==0)
4-
\end{pyglist}
4+
\end{minted}
55
\end{footnotesize}

overview/examples/cuts_rootpy.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.tree import Cut
44

55
cut1 = Cut('a < 10')
@@ -15,5 +15,5 @@
1515
# easily combine cuts arbitrarily
1616
cut = ((cut1 & cut2) | - cut3)
1717
print cut
18-
\end{pyglist}
18+
\end{minted}
1919
\end{footnotesize}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
(a<10)&&(b%2==0)
44
(10<a)&&(a<20)
55
((a<10)&&(b%2==0))||(!((10<a)&&(a<20)))
6-
\end{pyglist}
6+
\end{minted}
77
\end{footnotesize}

overview/examples/file.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.testdata import get_file
44

55
# use the test file shipped with rootpy
@@ -10,5 +10,5 @@
1010
for path, dirs, objects in f.walk():
1111
# do something
1212
print path, dirs, objects
13-
\end{pyglist}
13+
\end{minted}
1414
\end{footnotesize}

overview/examples/file_open.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
"""
44
ROOT is unable to open the file of course and emits an error message but an
55
exception is not raised at this point leading to (sometimes difficult to
@@ -10,5 +10,5 @@
1010
myfile = TFile.Open("file_does_not_exist.root")
1111
print myfile
1212
myfile.Get("something")
13-
\end{pyglist}
13+
\end{minted}
1414
\end{footnotesize}
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
Error in <TFile::TFile>: file file_does_not_exist.root does not exist
44
<ROOT.TFile object at 0x(nil)>
55
Traceback (most recent call last):
6-
File "file_open.py.tmp.py", line 13, in <module>
6+
File "file_open.py.tmp", line 16, in <module>
77
myfile.Get("something")
88
ReferenceError: attempt to access a null-pointer
9-
\end{pyglist}
9+
\end{minted}
1010
\end{footnotesize}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
"""
44
rootpy routes ROOT messages through Python`s logging system and raises error
55
messages as Python exceptions at the point of failure:
@@ -9,5 +9,5 @@
99
myfile = root_open("file_does_not_exist.root")
1010
print myfile
1111
myfile.Get("something")
12-
\end{pyglist}
12+
\end{minted}
1313
\end{footnotesize}

overview/examples/file_open_rootpy_output.lock

Whitespace-only changes.
+10-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
ERROR:ROOT.TFile.TFile] file file_does_not_exist.root does not exist
4-
\end{pyglist}
5-
\end{footnotesize}
6-
\begin{tiny}
7-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
84
Traceback (most recent call last):
9-
File "file_open_rootpy.py.tmp.py", line 13, in <module>
5+
File "file_open_rootpy.py.tmp", line 16, in <module>
106
myfile = root_open("file_does_not_exist.root")
11-
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/io/file.py", line 224, in root_open
12-
root_file = ROOT.TFile.Open(filename, mode)
13-
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/io/file.py", line 224, in root_open
14-
root_file = ROOT.TFile.Open(filename, mode)
15-
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/logger/roothandler.py", line 91, in python_logging_error_handler
16-
raise ROOTError(level, location, msg)
7+
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/io/file.py", line 138, in root_open
8+
root_file = ROOT.R.TFile.Open(filename, mode)
9+
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/io/file.py", line 138, in root_open
10+
root_file = ROOT.R.TFile.Open(filename, mode)
11+
File "/home/endw/.local/lib/python2.7/site-packages/rootpy/logger/magic.py", line 247, in intercept_next_line
12+
raise exception
1713
rootpy.ROOTError: level=3000, loc='TFile::TFile', msg='file file_does_not_exist.root does not exist'
18-
\end{pyglist}
19-
\end{tiny}
14+
\end{minted}
15+
\end{footnotesize}

overview/examples/file_output.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
['dimensions', 'scales', 'means', 'graphs', 'gaps', 'efficiencies'] []
44
dimensions [] ['hist2d', 'hist3d']
55
scales [] ['hist1', 'hist3', 'hist2', 'hist4']
66
means [] ['hist1', 'hist3', 'hist2', 'hist4']
77
graphs [] ['tgrapherrors', 'tgraph2d', 'tgraphasymmerrors', 'tgraph']
88
gaps [] ['hist1', 'hist3', 'hist2', 'hist4']
99
efficiencies [] ['hist1', 'hist3', 'hist2', 'hist4', 'eff3v1', 'eff2v1', 'eff4v1']
10-
\end{pyglist}
10+
\end{minted}
1111
\end{footnotesize}

overview/examples/hist.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from ROOT import TH3D
44
from array import array
55

@@ -11,5 +11,5 @@
1111
hist3d = TH3D('3d', '3d', 3, 0, 5,
1212
5, array('d', [2.3, 4.2, 5.8, 10, 20, 25.5]),
1313
2, array('d', [-100, 0, 20]))
14-
\end{pyglist}
14+
\end{minted}
1515
\end{footnotesize}

overview/examples/hist_output.tex

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
2+
\begin{minted}{text}
33
Traceback (most recent call last):
4-
File "hist.py.tmp.py", line 15, in <module>
4+
File "hist.py.tmp", line 18, in <module>
55
2, array('d', [-100, 0, 20]))
66
TypeError: none of the 5 overloaded methods succeeded. Full details:
77
TH3D::TH3D() =>
88
takes at most 0 arguments (9 given)
99
TH3D::TH3D(const TH3D& h3d) =>
1010
takes at most 1 arguments (9 given)
11-
TH3D::TH3D(const char* name, const char* title, Int_t nbinsx, Double_t xlow, Double_t xup, Int_t nbinsy, Double_t ylow, Double_t yup, Int_t nbinsz, Double_t zlow, Double_t zup) =>
11+
TH3D::TH3D(const char* name, const char* title, int nbinsx, double xlow, double xup, int nbinsy, double ylow, double yup, int nbinsz, double zlow, double zup) =>
1212
takes at least 11 arguments (9 given)
13-
TH3D::TH3D(const char* name, const char* title, Int_t nbinsx, const Float_t* xbins, Int_t nbinsy, const Float_t* ybins, Int_t nbinsz, const Float_t* zbins) =>
13+
TH3D::TH3D(const char* name, const char* title, int nbinsx, const float* xbins, int nbinsy, const float* ybins, int nbinsz, const float* zbins) =>
1414
takes at most 8 arguments (9 given)
15-
TH3D::TH3D(const char* name, const char* title, Int_t nbinsx, const Double_t* xbins, Int_t nbinsy, const Double_t* ybins, Int_t nbinsz, const Double_t* zbins) =>
15+
TH3D::TH3D(const char* name, const char* title, int nbinsx, const double* xbins, int nbinsy, const double* ybins, int nbinsz, const double* zbins) =>
1616
takes at most 8 arguments (9 given)
17-
\end{pyglist}
17+
\end{minted}
1818
\end{footnotesize}

overview/examples/hist_rootpy.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.plotting import Hist3D
44

55
# variable width bins
66
hist3d = Hist3D([0, 3, 10, 100], [2.3, 4.2, 5.8, 10, 20, 25.5], [-100, 0, 20])
77
# easy to mix variable and fixed width bins with rootpy
88
hist3d = Hist3D(3, 0, 5, [2.3, 4.2, 5.8, 10, 20, 25.5], [-100, 0, 20])
9-
\end{pyglist}
9+
\end{minted}
1010
\end{footnotesize}

overview/examples/hist_rootpy_2.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.plotting import Hist, Hist2D, Hist3D
44

55
# create a 1D histogram
@@ -22,5 +22,5 @@
2222
h.linecolor = 'blue'
2323
h.fillcolor = 'green'
2424
h.fillstyle = '/'
25-
\end{pyglist}
25+
\end{minted}
2626
\end{footnotesize}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
\end{minted}
44
\end{footnotesize}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
\end{minted}
44
\end{footnotesize}

overview/examples/memory.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from ROOT import TCanvas, TH1D
44

55
def make_plot():
@@ -18,5 +18,5 @@
1818
# hack to keep Python from exiting
1919
# while the canvas is displayed
2020
raw_input()
21-
\end{pyglist}
21+
\end{minted}
2222
\end{footnotesize}

overview/examples/memory_output.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
\end{minted}
44
\end{footnotesize}

overview/examples/memory_rootpy.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=python,texcl=true,abovecaptionskip=0,style=vs,bgcolor=Moccasin]
2+
\begin{minted}{python}
33
from rootpy.plotting import Canvas, Hist
44
from rootpy.interactive import wait
55

@@ -13,5 +13,5 @@
1313
canvas = make_plot()
1414
canvas.Draw()
1515
wait()
16-
\end{pyglist}
16+
\end{minted}
1717
\end{footnotesize}
+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
\begin{footnotesize}
2-
\begin{pyglist}[language=text,texcl=true,abovecaptionskip=0,style=bw]
3-
\end{pyglist}
2+
\begin{minted}{text}
3+
WARNING:rootpy.interactive.rootwait] unable to access ROOT's GUI thread either because PyROOT's
4+
finalSetup() was called while in batch mode or because PyROOT
5+
is using the new PyOS_InputHook-based mechanism that is not yet
6+
supported in rootpy (PyConfig.StartGuiThread == 'inputhook' or
7+
gSystem.InheritsFrom('TMacOSXSystem')). wait() etc. will
8+
instead call raw_input() and wait for [Enter]
9+
\end{minted}
410
\end{footnotesize}

0 commit comments

Comments
 (0)