NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
TraceDefs.h
1 // Definition.h
2 //
3 // Author : Jeromy Tompkins
4 // Date : 8/14/2013
5 
6 #ifndef DEFINITIONS
7 #define DEFINITIONS
8 
9 #include <stdint.h>
10 #include "Trace.hpp"
11 #include "SumIterator.hpp"
12 #include "TrapFilter.hpp"
13 
14 namespace TrAnal
15 {
16 
17 // Typedef some useful type names that are most likely to be used
18 
20 typedef TraceT<uint16_t> TraceS;
21 
23 typedef TrIterator<uint16_t> TrIterS;
24 
26 typedef TrRange<uint16_t> TrRangeS;
27 
29 typedef SumIterator<uint16_t> SumIterS;
30 
32 typedef TrapFilter<uint16_t> TrFilterS;
33 }
34 
35 #endif
36 
Definition: AlgoIterator.hpp:12