// Struct Event (contains event data) // Glen Cowan, RHUL Physics, November 2007 #ifndef EVENT_H #define EVENT_H struct Event { double x; double y; double z; }; #endif