From 7d9b50e9e64c9d8d9a25942e2ffaca52142c6c2b Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Tue, 16 Aug 2011 13:52:00 -0400 Subject: 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. --- generator/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 generator/__init__.py (limited to 'generator/__init__.py') 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 * + + -- cgit