LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
HitsStandard_tool.cc
Go to the documentation of this file.
1 
8 // Framework Includes
11 
12 // LArSoft includes
15 
16 // std includes
17 #include <cmath>
18 #include <ostream>
19 #include <vector>
20 
21 //------------------------------------------------------------------------------------------------------------------------------------------
22 // implementation follows
23 
24 namespace reco3d {
25 
26  class HitsStandard : virtual public IHitReader {
27  public:
33  explicit HitsStandard(const fhicl::ParameterSet&);
34 
38  ~HitsStandard();
39 
40  void configure(fhicl::ParameterSet const& pset) override;
41 
48  bool readHits(const std::vector<art::Ptr<recob::Hit>>&, // input hits
49  std::vector<art::Ptr<recob::Hit>>&, // output hits plane 0
50  std::vector<art::Ptr<recob::Hit>>&, // output hits plane 1
51  std::vector<art::Ptr<recob::Hit>>&) const override; // output hits plane 2
52  };
53 
55  {
56  this->configure(pset);
57  }
58 
59  //------------------------------------------------------------------------------------------------------------------------------------------
60 
62 
63  //------------------------------------------------------------------------------------------------------------------------------------------
64 
66  {
67  // m_enableMonitoring = pset.get<bool> ("EnableMonitoring", true );
68 
69  return;
70  }
71 
72  bool HitsStandard::readHits(const std::vector<art::Ptr<recob::Hit>>& inputHits, // input hits
73  std::vector<art::Ptr<recob::Hit>>& xhits, // output hits plane 0
74  std::vector<art::Ptr<recob::Hit>>& uhits, // output hits plane 1
75  std::vector<art::Ptr<recob::Hit>>& vhits) const // output hits plane 2
76  {
77 
78  bool is2view = false;
79 
80  for (auto& hit : inputHits) {
81  if (hit->Integral() < 0 || std::isnan(hit->Integral()) || std::isinf(hit->Integral())) {
82  mf::LogWarning("HitsStandard")
83  << "WARNING: bad recob::Hit::Integral() = " << hit->Integral() << ". Skipping."
84  << std::endl;
85  continue;
86  }
87 
88  if (hit->SignalType() == geo::kCollection) {
89  // For DualPhase, both view are collection. Arbitrarily map V to the main
90  // "X" view. For Argoneut and Lariat, collection=V is also the right
91  // convention.
92  if (hit->View() == geo::kZ) { xhits.push_back(hit); }
93  if (hit->View() == geo::kV) {
94  xhits.push_back(hit);
95  is2view = true;
96  }
97  if (hit->View() == geo::kU || hit->View() == geo::kY) {
98  uhits.push_back(hit);
99  is2view = true;
100  }
101  }
102  else {
103  if (hit->View() == geo::kU) uhits.push_back(hit);
104  if (hit->View() == geo::kV) vhits.push_back(hit);
105  }
106  } // end for hit
107 
108  mf::LogDebug("HitsStandard") << ">>>>> Reading hits done" << std::endl;
109 
110  return is2view;
111  }
112 
114 } // namespace lar_cluster3d
#define DEFINE_ART_CLASS_TOOL(tool)
Definition: ToolMacros.h:42
Planes which measure V.
Definition: geo_types.h:132
Declaration of signal hit object.
This provides an art tool interface definition for reading hits into the SpacePointSolver universe...
Planes which measure Z direction.
Definition: geo_types.h:134
~HitsStandard()
Destructor.
Planes which measure Y direction.
Definition: geo_types.h:135
auto vector(Vector const &v)
Returns a manipulator which will print the specified array.
Definition: DumpUtils.h:289
Planes which measure U.
Definition: geo_types.h:131
bool readHits(const std::vector< art::Ptr< recob::Hit >> &, std::vector< art::Ptr< recob::Hit >> &, std::vector< art::Ptr< recob::Hit >> &, std::vector< art::Ptr< recob::Hit >> &) const override
Scan an input collection of clusters and modify those according to the specific implementing algorith...
Detector simulation of raw signals on wires.
IHitReader interface class definiton.
Definition: IHitReader.h:23
MaybeLogger_< ELseverityLevel::ELsev_success, false > LogDebug
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
void configure(fhicl::ParameterSet const &pset) override
HitsStandard(const fhicl::ParameterSet &)
Constructor.
Signal from collection planes.
Definition: geo_types.h:148