#ifndef _EVENTINTERFACE_H_ #define _EVENTINTERFACE_H_ typedef struct hitInfoFDC { int index; double x; double y; double z; double xWire; double yWire; double zWire; double theta; double phi; double L; } hitInfoFDC_t; typedef struct hitInfoCDC { int index; double x; double y; double z; double theta; double phi; double L; double tdrift; } hitInfoCDC_t; typedef struct residInfoCDC { int idTraj; int index; double x; double y; double z; double xTraj; double yTraj; double zTraj; double theta; double phi; double dist; } residInfoCDC_t; typedef struct residInfoFDC { int idTraj; int index; double x; double y; double z; double xTraj; double yTraj; double zTraj; double dist; } residInfoFDC_t; typedef struct pointInfo { int trajId; int index; double x; double y; double z; } pointInfo_t; typedef struct eventInfo { int event; double paramsTrue[5]; double paramsFit[5]; double chisq; } eventInfo_t; #endif // _EVENTINTERFACE_H_