EGS Brachy
An egs++ user code for rapid brachytherapy calculations
Loading...
Searching...
No Matches
gen_transport.py
Go to the documentation of this file.
1
from
doc_utils
import
find_file_descriptions
2
import
os
3
4
root = os.path.join(
".."
,
"lib"
)
5
abs_root = os.path.abspath(root)
6
transport = os.path.join(abs_root,
"transport"
)
7
8
9
def
gen_docs
(fname):
10
11
docs =
"""@anchor egs_brachy_transport_lib
12
13
egs_brachy Sample Transport Parameters
14
======================================
15
16
Sample Monte Carlo transport parameters for various simulations.
17
18
%s
19
20
"""
% (find_file_descriptions(transport,
"start MC transport parameter"
))
21
22
23
open(fname,
"w"
).write(docs)
24
25
if
__name__ ==
"__main__"
:
26
outfile =
"transport.md"
27
gen_docs
(outfile)
28
29
gen_docs
Definition
gen_docs.py:1
Generated by
1.9.8