-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvent.h
More file actions
44 lines (33 loc) · 705 Bytes
/
Copy pathEvent.h
File metadata and controls
44 lines (33 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef EVENT_H_
#define EVENT_H_
#include "Particle.h"
#include <vector>
class Event {
public:
/**
* Basic constructors
*/
Event();
Event(const std::vector<Particle> & particles);
/**
* Destructor
*/
virtual ~Event();
/**
* Get the particles for an event
*/
std::vector<Particle> get_particles();
/**
* Set the particles for an event if using with default constructor
*/
void set_particles(std::vector<Particle> particles);
/**
* Returns the number of particles in an event
*/
int num_particles_in_event();
/**
* Vector containing all of the particles in an event
*/
std::vector<Particle> _particles;
};
#endif /* EVENT_H_ */