#ifndef EVENT_H#define EVENT_H#include<stdint.h>/* Struct to hold all data from a single event used for fitting. */typedefstructpmt_hit{inthit;floatt;floatqhl;floatqhs;floatqlx;intflags;}pmt_hit;typedefstructevent{intrun;uint32_tgtid;pmt_hitpmt_hits[10000];}event;#endif