diff options
author | Stan Seibert <stan@mtrr.org> | 2011-08-16 13:52:00 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-08-16 13:52:00 -0400 |
commit | 7d9b50e9e64c9d8d9a25942e2ffaca52142c6c2b (patch) | |
tree | 6eaf16ef125df0b02cff8198e6bece51a093c8fa /generator/__init__.py | |
parent | 0dbfc2d7dc547452372d776ba74ec77838300a9a (diff) | |
download | chroma-7d9b50e9e64c9d8d9a25942e2ffaca52142c6c2b.tar.gz chroma-7d9b50e9e64c9d8d9a25942e2ffaca52142c6c2b.tar.bz2 chroma-7d9b50e9e64c9d8d9a25942e2ffaca52142c6c2b.zip |
Epic restructuring of code to switch to a generator-based style of
event creation.
Now we have vertex generators (that produce initial particles), photon
generators (that create photons to propagate), and a standard data
structure using Python class containers and numpy arrays to hand
around the code.
Also cleaned up some naming of things before they become conventions.
Diffstat (limited to 'generator/__init__.py')
-rw-r--r-- | generator/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/generator/__init__.py b/generator/__init__.py new file mode 100644 index 0000000..c3179d0 --- /dev/null +++ b/generator/__init__.py @@ -0,0 +1,5 @@ +from vertex import * +from event import * +from photon import * + + |