All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FlashTriggerPrimitive.hh
Go to the documentation of this file.
1 /**
2  * \class CRTData
3  *
4  * \ingroup crt
5  *
6  * \brief CRT Hit Info
7  *
8  * \author $Author: David Lorca $
9  *
10  */
11 
12 #ifndef FlashTriggerPrimitive_SBN_hh_
13 #define FlashTriggerPrimitive_SBN_hh_
14 
15 #include <cstdint>
16 #include <vector>
17 #include <map>
18 #include <string>
19 #include <utility>
20 
21 namespace sbn {
23  unsigned channel;
24  struct Trig {
25  int adc;
26  int tdc;
27  };
28  std::vector<Trig> triggers;
29  };
30 
31 } // namespace sbnd
32 
33 #endif