]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/MUON/src/DecisionRecord.hpp
Fixes in order to avoid compilation problems.
[u/mrichter/AliRoot.git] / HLT / MUON / src / DecisionRecord.hpp
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // Author: Artur Szostak
4 // Email:  artur@alice.phy.uct.ac.za | artursz@iafrica.com
5 //
6 ////////////////////////////////////////////////////////////////////////////////
7
8 #ifndef dHLT_DECISION_RECORD_HPP
9 #define dHLT_DECISION_RECORD_HPP
10
11 #include "BasicTypes.hpp"
12 #include "Track.hpp"
13
14 namespace dHLT
15 {
16
17
18 enum DecisionType
19 {
20         UnknownDecision = 0,
21         EventAccepted,
22         EventRejected
23 };
24
25
26 struct DecisionRecord
27 {
28         DecisionType type;
29 };
30
31
32 } // dHLT
33
34 #endif // dHLT_DECISION_RECORD_HPP