// $Id$ // // File: DTOFDigiHit.h // Created: Wed Aug 7 09:30:38 EDT 2013 // Creator: davidl (on Darwin harriet.jlab.org 11.4.2 i386) // #ifndef _DTOFDigiHit_ #define _DTOFDigiHit_ #include #include class DTOFDigiHit:public jana::JObject{ public: JOBJECT_PUBLIC(DTOFDigiHit); int plane; // plane (0: vertical, 1: horizontal) int bar; // bar number int end; // left/right 0/1 or North/South 0/1 uint32_t pulse_integral; ///< identified pulse integral as returned by FPGA algorithm uint32_t pulse_time; ///< identified pulse time as returned by FPGA algorithm uint32_t pedestal; ///< pedestal info used by FPGA (if any) uint32_t QF; ///< Quality Factor from FPGA algorithms // This method is used primarily for pretty printing // the second argument to AddString is printf style format void toStrings(vector > &items)const{ AddString(items, "bar", "%d", bar); AddString(items, "plane", "%d", plane); AddString(items, "end", "%d", end); AddString(items, "pulse_integral", "%d", pulse_integral); AddString(items, "pulse_time", "%d", pulse_time); AddString(items, "pedestal", "%d", pedestal); AddString(items, "QF", "%d", QF); } }; #endif // _DTOFDigiHit_