#ifndef EVENT_H#define EVENT_H#include<stdint.h>#include"pmt.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[MAX_PMTS];}event;#endif