// $Id$ // // File: DCDCHit.h // Created: Thu Jun 9 10:22:37 EDT 2005 // Creator: davidl (on Darwin wire129.jlab.org 7.8.0 powerpc) // #ifndef _DCDCHit_ #define _DCDCHit_ #include "JANA/JObject.h" #include "JANA/JFactory.h" class DCDCHit:public JObject{ public: JOBJECT_PUBLIC(DCDCHit); int ring; int straw; float dE; float t; void toStrings(vector > &items)const{ AddString(items, "ring", "%d", ring); AddString(items, "straw", "%d", straw); AddString(items, "dE", "%2.3f", dE); AddString(items, "t", "%4.0f", t); } }; #endif // _DCDCHit_