SRNDLAr.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRNDLAr.h
3 // \brief ND-LAr reconstruction output.
4 // \author J. Wolcott <jwolcott@fnal.gov>
5 // \date Sept. 2021
6 ////////////////////////////////////////////////////////////////////////
7 #ifndef DUNEANAOBJ_SRNDLAR_H
8 #define DUNEANAOBJ_SRNDLAR_H
9 
12 
13 namespace caf
14 {
15  /// ND-LAr reconstruction output
16  class SRNDLAr
17  {
18  public:
19  std::vector<SRTrack> tracks;
20  std::size_t ntracks = 0;
21 
22  std::vector<SRShower> showers;
23  std::size_t nshowers = 0;
24  };
25 
26 }
27 #endif //DUNEANAOBJ_SRNDLAR_H
std::size_t nshowers
Definition: SRNDLAr.h:23
std::vector< SRTrack > tracks
Definition: SRNDLAr.h:19
std::size_t ntracks
Definition: SRNDLAr.h:20
std::vector< SRShower > showers
Definition: SRNDLAr.h:22
ND-LAr reconstruction output.
Definition: SRNDLAr.h:16
Common Analysis Files.
Definition: SRGAr.h:13
Reconstructed shower object.