// $Id$ // // File: DTOFPoint.h // Created: Tue Oct 18 09:50:52 EST 2005 // Creator: remitche (on Linux mantrid00 2.4.20-18.8smp i686) // #ifndef _DTOFPoint_ #define _DTOFPoint_ #include "JANA/JObject.h" #include "JANA/JFactory.h" class DTOFPoint:public JObject{ public: HDCLASSDEF(DTOFPoint); unsigned int trackid; //index to DHDDMTOFTruth (temporary) int ptype; // GEANT particle type float x, y, z; //reconstructed position float t; //reconstructed time float dedx; //reconstructed dedx unsigned int nhits; //number of hits in this point unsigned int hits[16]; //indices to DTOFHit (temporary form) float chisq; //chisquare of this point }; #endif // _DTOFPoint_