LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
LArSlice.h
Go to the documentation of this file.
1 
8 #ifndef LAR_SLICE_H
9 #define LAR_SLICE_H 1
10 
11 #include <vector>
12 
13 #include "Objects/CaloHit.h"
14 
15 namespace lar_content
16 {
17 
21 class Slice
22 {
23 public:
24  pandora::CaloHitList m_caloHitListU;
25  pandora::CaloHitList m_caloHitListV;
26  pandora::CaloHitList m_caloHitListW;
27 };
28 
29 typedef std::vector<Slice> SliceList;
30 
31 } // namespace lar_content
32 
33 #endif // #ifndef LAR_SLICE_H
std::vector< Slice > SliceList
Definition: LArSlice.h:29
pandora::CaloHitList m_caloHitListW
The w calo hit list.
Definition: LArSlice.h:26
pandora::CaloHitList m_caloHitListU
The u calo hit list.
Definition: LArSlice.h:24
pandora::CaloHitList m_caloHitListV
The v calo hit list.
Definition: LArSlice.h:25
Slice class.
Definition: LArSlice.h:21