EGS Brachy
An egs++ user code for rapid brachytherapy calculations
Loading...
Searching...
No Matches
gen_docs.py
Go to the documentation of this file.
1import gen_geom
2import gen_specs
3import gen_transport
4import gen_media
5import gen_tests
6
7
8modules = [
9 (gen_geom, "geom.md"),
10 (gen_specs, "spectra.md"),
11 (gen_transport, "transport.md"),
12 (gen_media, "media.md"),
13 (gen_tests, "tests.md"),
14]
15
16
18 for module, outfile in modules:
19 module.gen_docs(outfile)
20
21
22if __name__ == "__main__":
23 gen_docs()
24
gen_docs()
Definition gen_docs.py:17