#ifndef TAwagsSisMAPEVENT_H #define TAwagsSisMAPEVENT_H #include "TGo4EventElement.h" #define CSA_MAXCHAMBERS 2 #define CSA_MAXWIRES 32 #define CSA_TRACE_SIZE 1024 // JAM 12-2023: number of electrodes used for x/y display [xleft, xright, yup, ydown,..?] #define AWAGS_NUM_ELECTRODES 4 class TAwagsSisMapEvent : public TGo4EventElement { public: TAwagsSisMapEvent() : TGo4EventElement() {} TAwagsSisMapEvent(const char* name) : TGo4EventElement(name) {} virtual ~TAwagsSisMapEvent() {} virtual void Clear(Option_t *t=""); // here we could pass the mapped traces further, to do JAM 2019 // std::vector fWireTrace[CSA_MAXCHAMBERS][CSA_MAXWIRES]; ClassDef(TAwagsSisMapEvent,1) }; #endif //TAwagsSisANLEVENT_H