Revision: | 1.4 |
Committed: | Tue Oct 23 10:17:23 2012 UTC (12 years, 6 months ago) by dkralph |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | compiled |
Changes since 1.3: | +2 -1 lines |
Log Message: | *** empty log message *** |
# | Content |
---|---|
1 | #ifndef EVENT_DATA |
2 | #define EVENT_DATA |
3 | |
4 | #include "TObject.h" |
5 | #include "SimpleLepton.h" |
6 | #include "SelectionStatus.h" |
7 | |
8 | #include <vector> |
9 | |
10 | class EventData { |
11 | |
12 | public : |
13 | |
14 | EventData():status(0) { |
15 | Z1leptons.reserve(2); |
16 | Z2leptons.reserve(2); |
17 | fsrPhotons.reserve(2); |
18 | leptonptrs.reserve(2); |
19 | }; |
20 | |
21 | ~EventData() { |
22 | }; |
23 | |
24 | std::vector<SimpleLepton> Z1leptons, Z2leptons, fsrPhotons; |
25 | std::vector<TObject *> leptonptrs; |
26 | |
27 | SelectionStatus status; |
28 | |
29 | }; |
30 | |
31 | |
32 | #endif |