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. --- fileio/root.C | 1 + 1 file changed, 1 insertion(+) (limited to 'fileio/root.C') diff --git a/fileio/root.C b/fileio/root.C index 9a959f5..8f7d0a9 100644 --- a/fileio/root.C +++ b/fileio/root.C @@ -18,6 +18,7 @@ struct Track { double t; TVector3 pos; TVector3 dir; + double start_time; double total_energy; }; -- cgit