Class Reference for E1039 Core & Analysis Software
EVIO_Event.h
Go to the documentation of this file.
1 /*
2  * EVIO_Event.h
3  *
4  * Created on: Sep. 5, 2018
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_EVIO_Event_H_
9 #define _H_EVIO_Event_H_
10 
11 #include "Event.h"
12 
13 class EVIO_Event : public Event {
14 
15 public:
16 
17  EVIO_Event();
18 
19  EVIO_Event(int * data);
20 
21  virtual ~EVIO_Event();
22 
23  int *get_words(){return words;}
24 
25 private:
26  int *words;
27 };
28 
29 
30 #endif /* _H_EVIO_Event_H_ */
int * get_words()
Definition: EVIO_Event.h:23
virtual ~EVIO_Event()
Definition: EVIO_Event.cxx:18
Definition: Event.h:13