ProtoDUNEEmptyEventFinder.h
Go to the documentation of this file.
1 #ifndef PROTODUNE_EMPTY_EVENT_FINDER_H
2 #define PROTODUNE_EMPTY_EVENT_FINDER_H
3 
4 #include <string>
5 #include <vector>
6 
9 
10 namespace protoana
11 {
13  {
14 
15  public:
16 
18 
19  bool IsEmptyEvent(const art::Event &evt) const;
20 
21  private:
22 
23  // Input label for the space points. By default use the space point solver
24  // as it is pseudo independent of Pandora
26 
27  // Number of hits required in the beam region for an event to not
28  // be classed as empty
29  unsigned int fNHitsThreshold;
30 
31  // Store the x, y and z values to define the beam region cuboid
32  std::vector<float> fMinCoordsData;
33  std::vector<float> fMaxCoordsData;
34  std::vector<float> fMinCoordsSim;
35  std::vector<float> fMaxCoordsSim;
36  };
37 }
38 #endif
std::string string
Definition: nybbler.cc:12
bool IsEmptyEvent(const art::Event &evt) const
TCEvent evt
Definition: DataStructs.cxx:7
ProtoDUNEEmptyEventFinder(const fhicl::ParameterSet &pset)