LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
trkf::SpacePointFinder Class Reference
Inheritance diagram for trkf::SpacePointFinder:
art::EDProducer art::detail::Producer art::detail::LegacyModule art::Modifier art::ModuleBase art::ProductRegistryHelper

Public Types

using ModuleType = EDProducer
 
template<typename UserConfig , typename KeysToIgnore = void>
using Table = Modifier::Table< UserConfig, KeysToIgnore >
 

Public Member Functions

 SpacePointFinder (fhicl::ParameterSet const &pset)
 
void doBeginJob (SharedResources const &resources)
 
void doEndJob ()
 
void doRespondToOpenInputFile (FileBlock const &fb)
 
void doRespondToCloseInputFile (FileBlock const &fb)
 
void doRespondToOpenOutputFiles (FileBlock const &fb)
 
void doRespondToCloseOutputFiles (FileBlock const &fb)
 
bool doBeginRun (RunPrincipal &rp, ModuleContext const &mc)
 
bool doEndRun (RunPrincipal &rp, ModuleContext const &mc)
 
bool doBeginSubRun (SubRunPrincipal &srp, ModuleContext const &mc)
 
bool doEndSubRun (SubRunPrincipal &srp, ModuleContext const &mc)
 
bool doEvent (EventPrincipal &ep, ModuleContext const &mc, std::atomic< std::size_t > &counts_run, std::atomic< std::size_t > &counts_passed, std::atomic< std::size_t > &counts_failed)
 
void fillProductDescriptions ()
 
void registerProducts (ProductDescriptions &productsToRegister)
 
ModuleDescription const & moduleDescription () const
 
void setModuleDescription (ModuleDescription const &)
 
std::array< std::vector< ProductInfo >, NumBranchTypes > const & getConsumables () const
 
void sortConsumables (std::string const &current_process_name)
 
std::unique_ptr< Worker > makeWorker (WorkerParams const &wp)
 
template<typename T , BranchType BT>
ViewToken< T > consumesView (InputTag const &tag)
 
template<typename T , BranchType BT>
ViewToken< T > mayConsumeView (InputTag const &tag)
 

Protected Member Functions

ConsumesCollector & consumesCollector ()
 
template<typename T , BranchType = InEvent>
ProductToken< T > consumes (InputTag const &)
 
template<typename Element , BranchType = InEvent>
ViewToken< Element > consumesView (InputTag const &)
 
template<typename T , BranchType = InEvent>
void consumesMany ()
 
template<typename T , BranchType = InEvent>
ProductToken< T > mayConsume (InputTag const &)
 
template<typename Element , BranchType = InEvent>
ViewToken< Element > mayConsumeView (InputTag const &)
 
template<typename T , BranchType = InEvent>
void mayConsumeMany ()
 

Private Member Functions

void produce (art::Event &evt) override
 
void endJob () override
 

Private Attributes

SpacePointAlg fSptalg
 
std::string fClusterModuleLabel
 
unsigned int fMinHits
 
bool fClusterAssns
 
int fNumEvent
 
int fNumSpt2
 
int fNumSpt3
 

Detailed Description

Definition at line 36 of file SpacePointFinder_module.cc.

Member Typedef Documentation

Definition at line 17 of file EDProducer.h.

template<typename UserConfig , typename KeysToIgnore = void>
using art::detail::Producer::Table = Modifier::Table<UserConfig, KeysToIgnore>
inherited

Definition at line 26 of file Producer.h.

Constructor & Destructor Documentation

trkf::SpacePointFinder::SpacePointFinder ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 61 of file SpacePointFinder_module.cc.

References fClusterAssns, fClusterModuleLabel, fMinHits, fNumEvent, fNumSpt2, fNumSpt3, and fSptalg.

67  : EDProducer{pset}
68  , fSptalg(pset.get<fhicl::ParameterSet>("SpacePointAlg"))
69  , fMinHits(0)
70  , fClusterAssns(false)
71  , fNumEvent(0)
72  , fNumSpt2(0)
73  , fNumSpt3(0)
74  {
75  fClusterModuleLabel = pset.get<std::string>("ClusterModuleLabel");
76  fMinHits = pset.get<unsigned int>("MinHits");
77  fClusterAssns = pset.get<bool>("ClusterAssns");
78 
79  produces<std::vector<art::PtrVector<recob::SpacePoint>>>();
80  produces<std::vector<recob::SpacePoint>>();
81  produces<art::Assns<recob::SpacePoint, recob::Hit>>();
82  if (fClusterAssns) produces<art::Assns<recob::SpacePoint, recob::Cluster>>();
83 
84  // Report.
85 
86  mf::LogInfo("SpacePointFinder")
87  << "SpacePointFinder configured with the following parameters:\n"
88  << " ClusterModuleLabel = " << fClusterModuleLabel << "\n"
89  << " Minimum Hits per Cluster = " << fMinHits << "\n"
90  << " Cluster associations = " << fClusterAssns;
91  }
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6

Member Function Documentation

template<typename T , BranchType BT>
ProductToken< T > art::ModuleBase::consumes ( InputTag const &  tag)
protectedinherited

Definition at line 61 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumes().

62  {
63  return collector_.consumes<T, BT>(tag);
64  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ProductToken< T > consumes(InputTag const &)
ConsumesCollector & art::ModuleBase::consumesCollector ( )
protectedinherited

Definition at line 57 of file ModuleBase.cc.

References art::ModuleBase::collector_.

58  {
59  return collector_;
60  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename T , BranchType BT>
void art::ModuleBase::consumesMany ( )
protectedinherited

Definition at line 75 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumesMany().

76  {
77  collector_.consumesMany<T, BT>();
78  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename Element , BranchType = InEvent>
ViewToken<Element> art::ModuleBase::consumesView ( InputTag const &  )
protectedinherited
template<typename T , BranchType BT>
ViewToken<T> art::ModuleBase::consumesView ( InputTag const &  tag)
inherited

Definition at line 68 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumesView().

69  {
70  return collector_.consumesView<T, BT>(tag);
71  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ViewToken< Element > consumesView(InputTag const &)
void art::detail::Producer::doBeginJob ( SharedResources const &  resources)
inherited

Definition at line 22 of file Producer.cc.

References art::detail::Producer::beginJobWithFrame(), and art::detail::Producer::setupQueues().

23  {
24  setupQueues(resources);
25  ProcessingFrame const frame{ScheduleID{}};
26  beginJobWithFrame(frame);
27  }
virtual void setupQueues(SharedResources const &)=0
virtual void beginJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Producer::doBeginRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 65 of file Producer.cc.

References art::detail::Producer::beginRunWithFrame(), art::RangeSet::forRun(), art::RunPrincipal::makeRun(), r, art::RunPrincipal::runID(), and art::ModuleContext::scheduleID().

66  {
67  auto r = rp.makeRun(mc, RangeSet::forRun(rp.runID()));
68  ProcessingFrame const frame{mc.scheduleID()};
69  beginRunWithFrame(r, frame);
70  r.commitProducts();
71  return true;
72  }
TRandom r
Definition: spectrum.C:23
virtual void beginRunWithFrame(Run &, ProcessingFrame const &)=0
static RangeSet forRun(RunID)
Definition: RangeSet.cc:51
bool art::detail::Producer::doBeginSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 85 of file Producer.cc.

References art::detail::Producer::beginSubRunWithFrame(), art::RangeSet::forSubRun(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::SubRunPrincipal::subRunID().

86  {
87  auto sr = srp.makeSubRun(mc, RangeSet::forSubRun(srp.subRunID()));
88  ProcessingFrame const frame{mc.scheduleID()};
89  beginSubRunWithFrame(sr, frame);
90  sr.commitProducts();
91  return true;
92  }
virtual void beginSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
static RangeSet forSubRun(SubRunID)
Definition: RangeSet.cc:57
void art::detail::Producer::doEndJob ( )
inherited

Definition at line 30 of file Producer.cc.

References art::detail::Producer::endJobWithFrame().

31  {
32  ProcessingFrame const frame{ScheduleID{}};
33  endJobWithFrame(frame);
34  }
virtual void endJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Producer::doEndRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 75 of file Producer.cc.

References art::detail::Producer::endRunWithFrame(), art::RunPrincipal::makeRun(), r, art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

76  {
77  auto r = rp.makeRun(mc, rp.seenRanges());
78  ProcessingFrame const frame{mc.scheduleID()};
79  endRunWithFrame(r, frame);
80  r.commitProducts();
81  return true;
82  }
TRandom r
Definition: spectrum.C:23
virtual void endRunWithFrame(Run &, ProcessingFrame const &)=0
bool art::detail::Producer::doEndSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 95 of file Producer.cc.

References art::detail::Producer::endSubRunWithFrame(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

96  {
97  auto sr = srp.makeSubRun(mc, srp.seenRanges());
98  ProcessingFrame const frame{mc.scheduleID()};
99  endSubRunWithFrame(sr, frame);
100  sr.commitProducts();
101  return true;
102  }
virtual void endSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
bool art::detail::Producer::doEvent ( EventPrincipal ep,
ModuleContext const &  mc,
std::atomic< std::size_t > &  counts_run,
std::atomic< std::size_t > &  counts_passed,
std::atomic< std::size_t > &  counts_failed 
)
inherited

Definition at line 105 of file Producer.cc.

References art::detail::Producer::checkPutProducts_, e, art::EventPrincipal::makeEvent(), art::detail::Producer::produceWithFrame(), and art::ModuleContext::scheduleID().

110  {
111  auto e = ep.makeEvent(mc);
112  ++counts_run;
113  ProcessingFrame const frame{mc.scheduleID()};
114  produceWithFrame(e, frame);
115  e.commitProducts(checkPutProducts_, &expectedProducts<InEvent>());
116  ++counts_passed;
117  return true;
118  }
bool const checkPutProducts_
Definition: Producer.h:70
Float_t e
Definition: plot.C:35
virtual void produceWithFrame(Event &, ProcessingFrame const &)=0
void art::detail::Producer::doRespondToCloseInputFile ( FileBlock const &  fb)
inherited

Definition at line 44 of file Producer.cc.

References art::detail::Producer::respondToCloseInputFileWithFrame().

45  {
46  ProcessingFrame const frame{ScheduleID{}};
48  }
virtual void respondToCloseInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToCloseOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 58 of file Producer.cc.

References art::detail::Producer::respondToCloseOutputFilesWithFrame().

59  {
60  ProcessingFrame const frame{ScheduleID{}};
62  }
virtual void respondToCloseOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToOpenInputFile ( FileBlock const &  fb)
inherited

Definition at line 37 of file Producer.cc.

References art::detail::Producer::respondToOpenInputFileWithFrame().

38  {
39  ProcessingFrame const frame{ScheduleID{}};
41  }
virtual void respondToOpenInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToOpenOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 51 of file Producer.cc.

References art::detail::Producer::respondToOpenOutputFilesWithFrame().

52  {
53  ProcessingFrame const frame{ScheduleID{}};
55  }
virtual void respondToOpenOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void trkf::SpacePointFinder::endJob ( )
overrideprivatevirtual

Reimplemented from art::EDProducer.

Definition at line 318 of file SpacePointFinder_module.cc.

References fNumEvent, fNumSpt2, and fNumSpt3.

322  {
323  mf::LogInfo("SpacePointFinder")
324  << "SpacePointFinder statistics:\n"
325  << " Number of events = " << fNumEvent << "\n"
326  << " Number of 2-view space points created = " << fNumSpt2 << "\n"
327  << " Number of 3-view space points created = " << fNumSpt3;
328  }
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
void art::Modifier::fillProductDescriptions ( )
inherited

Definition at line 10 of file Modifier.cc.

References art::ProductRegistryHelper::fillDescriptions(), and art::ModuleBase::moduleDescription().

11  {
13  }
void fillDescriptions(ModuleDescription const &md)
ModuleDescription const & moduleDescription() const
Definition: ModuleBase.cc:13
std::array< std::vector< ProductInfo >, NumBranchTypes > const & art::ModuleBase::getConsumables ( ) const
inherited

Definition at line 43 of file ModuleBase.cc.

References art::ModuleBase::collector_, and art::ConsumesCollector::getConsumables().

44  {
45  return collector_.getConsumables();
46  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
std::array< std::vector< ProductInfo >, NumBranchTypes > const & getConsumables() const
std::unique_ptr< Worker > art::ModuleBase::makeWorker ( WorkerParams const &  wp)
inherited

Definition at line 37 of file ModuleBase.cc.

References art::ModuleBase::doMakeWorker(), and art::NumBranchTypes.

38  {
39  return doMakeWorker(wp);
40  }
virtual std::unique_ptr< Worker > doMakeWorker(WorkerParams const &wp)=0
template<typename T , BranchType BT>
ProductToken< T > art::ModuleBase::mayConsume ( InputTag const &  tag)
protectedinherited

Definition at line 82 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsume().

83  {
84  return collector_.mayConsume<T, BT>(tag);
85  }
ProductToken< T > mayConsume(InputTag const &)
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename T , BranchType BT>
void art::ModuleBase::mayConsumeMany ( )
protectedinherited

Definition at line 96 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeMany().

97  {
98  collector_.mayConsumeMany<T, BT>();
99  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename Element , BranchType = InEvent>
ViewToken<Element> art::ModuleBase::mayConsumeView ( InputTag const &  )
protectedinherited
template<typename T , BranchType BT>
ViewToken<T> art::ModuleBase::mayConsumeView ( InputTag const &  tag)
inherited

Definition at line 89 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeView().

90  {
91  return collector_.mayConsumeView<T, BT>(tag);
92  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ViewToken< Element > mayConsumeView(InputTag const &)
ModuleDescription const & art::ModuleBase::moduleDescription ( ) const
inherited

Definition at line 13 of file ModuleBase.cc.

References art::errors::LogicError.

Referenced by art::OutputModule::doRespondToOpenInputFile(), art::OutputModule::doWriteEvent(), art::Modifier::fillProductDescriptions(), art::OutputModule::makePlugins_(), art::OutputWorker::OutputWorker(), reco::shower::LArPandoraModularShowerCreation::produce(), art::Modifier::registerProducts(), and art::OutputModule::registerProducts().

14  {
15  if (md_.has_value()) {
16  return *md_;
17  }
18 
20  "There was an error while calling moduleDescription().\n"}
21  << "The moduleDescription() base-class member function cannot be called\n"
22  "during module construction. To determine which module is "
23  "responsible\n"
24  "for calling it, find the '<module type>:<module "
25  "label>@Construction'\n"
26  "tag in the message prefix above. Please contact artists@fnal.gov\n"
27  "for guidance.\n";
28  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
std::optional< ModuleDescription > md_
Definition: ModuleBase.h:55
void trkf::SpacePointFinder::produce ( art::Event evt)
overrideprivatevirtual

Implements art::EDProducer.

Definition at line 94 of file SpacePointFinder_module.cc.

References art::PtrVector< T >::clear(), util::CreateAssn(), trkf::SpacePointAlg::enableU(), trkf::SpacePointAlg::enableV(), trkf::SpacePointAlg::enableW(), fClusterAssns, fClusterModuleLabel, fMinHits, fNumEvent, fNumSpt2, fNumSpt3, fSptalg, trkf::SpacePointAlg::getAssociatedHits(), art::ProductRetriever::getByLabel(), art::ProductRetriever::getProductID(), hits(), art::Handle< T >::isValid(), geo::kU, geo::kV, geo::kZ, trkf::SpacePointAlg::makeSpacePoints(), trkf::SpacePointAlg::minViews(), art::PtrVector< T >::pop_back(), art::ProductRetriever::productGetter(), art::PtrVector< T >::push_back(), art::Event::put(), art::PtrVector< T >::reserve(), art::PtrVector< T >::size(), lar::dump::vector(), and recob::Cluster::View().

100  {
101  ++fNumEvent;
102 
103  // Get Services.
104 
106 
107  // Get clusters.
108 
110  evt.getByLabel(fClusterModuleLabel, clusterh);
111 
112  // Make a double or triple loop over clusters in distinct views
113  // (depending on minimum number of views configured in SpacePointAlg).
114 
115  if (clusterh.isValid()) {
116 
117  // Make a collection of space points that will be inserted into the event.
118 
119  std::unique_ptr<std::vector<art::PtrVector<recob::SpacePoint>>> sptvecs(
121  std::unique_ptr<std::vector<recob::SpacePoint>> spts(new std::vector<recob::SpacePoint>);
122  std::unique_ptr<art::Assns<recob::SpacePoint, recob::Hit>> sphitassn(
124  std::unique_ptr<art::Assns<recob::SpacePoint, recob::Cluster>> spclassn(
126 
127  // Make a hit vector which will be used to store hits to be passed
128  // to SpacePointAlg.
129 
132 
133  auto const clockData =
135  auto const detProp =
137 
138  // Loop over first cluster.
139 
140  int nclus = clusterh->size();
141  for (int iclus = 0; iclus < nclus; ++iclus) {
142  art::Ptr<recob::Cluster> piclus(clusterh, iclus);
143  geo::View_t iview = piclus->View();
144 
145  std::vector<art::Ptr<recob::Hit>> ihits = fm.at(iclus);
146 
147  // Test first view.
148 
149  if (ihits.size() >= fMinHits &&
150  ((iview == geo::kU && fSptalg.enableU()) || (iview == geo::kV && fSptalg.enableV()) ||
151  (iview == geo::kZ && fSptalg.enableW()))) {
152 
153  // Store hits from first view into hit vector.
154 
155  unsigned int nihits = ihits.size();
156  hits.clear();
157  hits.reserve(nihits);
158  for (std::vector<art::Ptr<recob::Hit>>::const_iterator i = ihits.begin();
159  i != ihits.end();
160  ++i)
161  hits.push_back(*i);
162 
163  // Loop over second cluster.
164 
165  for (int jclus = 0; jclus < iclus; ++jclus) {
166  art::Ptr<recob::Cluster> pjclus(clusterh, jclus);
167  geo::View_t jview = pjclus->View();
168 
169  std::vector<art::Ptr<recob::Hit>> jhits = fm.at(jclus);
170 
171  // Test second view.
172 
173  if (jhits.size() >= fMinHits &&
174  ((jview == geo::kU && fSptalg.enableU()) ||
175  (jview == geo::kV && fSptalg.enableV()) ||
176  (jview == geo::kZ && fSptalg.enableW())) &&
177  jview != iview) {
178 
179  // Store hits from second view into hit vector.
180 
181  unsigned int njhits = jhits.size();
182  assert(hits.size() >= nihits);
183  //hits.resize(nihits);
184  while (hits.size() > nihits)
185  hits.pop_back();
186  assert(hits.size() == nihits);
187  hits.reserve(nihits + njhits);
188  for (std::vector<art::Ptr<recob::Hit>>::const_iterator j = jhits.begin();
189  j != jhits.end();
190  ++j)
191  hits.push_back(*j);
192 
193  // If two-view space points are allowed, make them here.
194 
195  if (fSptalg.minViews() <= 2) {
196  std::vector<recob::SpacePoint> new_spts;
197  fSptalg.makeSpacePoints(clockData, detProp, hits, new_spts);
198 
199  // If we found some space points, insert them into the event.
200 
201  if (new_spts.size() > 0) {
202  fNumSpt2 += new_spts.size();
204  clusters.reserve(2);
205  clusters.push_back(piclus);
206  clusters.push_back(pjclus);
207 
208  // Insert newly found space points into event collection.
209 
210  int nspt = spts->size();
211  spts->insert(spts->end(), new_spts.begin(), new_spts.end());
212 
213  // Associate space points with hits and clusters.
214 
216  for (unsigned int ispt = nspt; ispt < spts->size(); ++ispt) {
217  const recob::SpacePoint& spt = (*spts)[ispt];
219  util::CreateAssn(evt, *spts, hits, *sphitassn, ispt);
220  if (fClusterAssns) util::CreateAssn(evt, *spts, clusters, *spclassn, ispt);
221 
222  // make the PtrVector for this collection of space points
223  // Do not reproduce the following lines
224  // Contact brebel@fnal.gov if you think you need to reproduce these lines.
225  art::ProductID spid = evt.getProductID<std::vector<recob::SpacePoint>>();
226  art::Ptr<recob::SpacePoint> spptr(spid, ispt, evt.productGetter(spid));
227  sptvec.push_back(spptr);
228  }
229  sptvecs->push_back(sptvec);
230  }
231  }
232 
233  // Loop over third cluster.
234 
235  for (int kclus = 0; kclus < jclus; ++kclus) {
236  art::Ptr<recob::Cluster> pkclus(clusterh, kclus);
237  geo::View_t kview = pkclus->View();
238 
239  std::vector<art::Ptr<recob::Hit>> khits = fm.at(kclus);
240 
241  // Test third view.
242 
243  if (khits.size() >= fMinHits &&
244  ((kview == geo::kU && fSptalg.enableU()) ||
245  (kview == geo::kV && fSptalg.enableV()) ||
246  (kview == geo::kZ && fSptalg.enableW())) &&
247  kview != iview && kview != jview) {
248 
249  // Store hits from third view into hit vector.
250 
251  unsigned int nkhits = khits.size();
252  assert(hits.size() >= nihits + njhits);
253  //hits.resize(nihits + njhits);
254  while (hits.size() > nihits + njhits)
255  hits.pop_back();
256  assert(hits.size() == nihits + njhits);
257  hits.reserve(nihits + njhits + nkhits);
258  for (std::vector<art::Ptr<recob::Hit>>::const_iterator k = khits.begin();
259  k != khits.end();
260  ++k)
261  hits.push_back(*k);
262 
263  // Make three-view space points.
264 
265  std::vector<recob::SpacePoint> new_spts;
266  fSptalg.makeSpacePoints(clockData, detProp, hits, new_spts);
267 
268  // If we found some space points, insert them into the event.
269 
270  if (new_spts.size() > 0) {
271  fNumSpt3 += new_spts.size();
273  clusters.reserve(3);
274  clusters.push_back(piclus);
275  clusters.push_back(pjclus);
276  clusters.push_back(pkclus);
277 
278  // Insert newly found space points into event collection.
279 
280  int nspt = spts->size();
281  spts->insert(spts->end(), new_spts.begin(), new_spts.end());
282 
283  // Associate space points with hits and clusters.
284 
286  for (unsigned int ispt = nspt; ispt < spts->size(); ++ispt) {
287  const recob::SpacePoint& spt = (*spts)[ispt];
289  util::CreateAssn(evt, *spts, hits, *sphitassn, ispt);
290  if (fClusterAssns) util::CreateAssn(evt, *spts, clusters, *spclassn, ispt);
291 
292  // make the PtrVector for this collection of space points
293  // Do not reproduce the following lines
294  // Contact brebel@fnal.gov if you think you need to reproduce these lines.
295  art::ProductID spid = evt.getProductID<std::vector<recob::SpacePoint>>();
296  art::Ptr<recob::SpacePoint> spptr(spid, ispt, evt.productGetter(spid));
297  sptvec.push_back(spptr);
298  }
299  sptvecs->push_back(sptvec);
300  }
301  }
302  }
303  }
304  }
305  }
306  }
307 
308  // Add space points and associations to event.
309 
310  evt.put(std::move(spts));
311  evt.put(std::move(sptvecs));
312  evt.put(std::move(sphitassn));
313  if (fClusterAssns) evt.put(std::move(spclassn));
314  }
315  }
void reserve(size_type n)
Definition: PtrVector.h:337
bool enableW() const noexcept
Definition: SpacePointAlg.h:93
bool enableV() const noexcept
Definition: SpacePointAlg.h:92
ProductID getProductID(std::string const &instance_name="") const
enum geo::_plane_proj View_t
Enumerate the possible plane projections.
Planes which measure V.
Definition: geo_types.h:136
Planes which measure Z direction.
Definition: geo_types.h:138
int minViews() const noexcept
Definition: SpacePointAlg.h:90
const art::PtrVector< recob::Hit > & getAssociatedHits(const recob::SpacePoint &spt) const
bool isValid() const noexcept
Definition: Handle.h:203
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
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:135
void hits()
Definition: readHits.C:15
EDProductGetter const * productGetter(ProductID const pid) const
void push_back(Ptr< U > const &p)
Definition: PtrVector.h:435
void makeSpacePoints(detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const art::PtrVector< recob::Hit > &hits, std::vector< recob::SpacePoint > &spts) const
size_type size() const
Definition: PtrVector.h:302
bool CreateAssn(art::Event &evt, std::vector< T > const &a, art::Ptr< U > const &b, art::Assns< U, T > &assn, std::string a_instance, size_t index=UINT_MAX)
Creates a single one-to-one association.
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
bool enableU() const noexcept
Definition: SpacePointAlg.h:91
void pop_back()
Definition: PtrVector.h:457
void clear()
Definition: PtrVector.h:533
void art::Modifier::registerProducts ( ProductDescriptions productsToRegister)
inherited

Definition at line 16 of file Modifier.cc.

References art::ModuleBase::moduleDescription(), and art::ProductRegistryHelper::registerProducts().

17  {
18  ProductRegistryHelper::registerProducts(productsToRegister,
20  }
void registerProducts(ProductDescriptions &productsToRegister, ModuleDescription const &md)
ModuleDescription const & moduleDescription() const
Definition: ModuleBase.cc:13
void art::ModuleBase::setModuleDescription ( ModuleDescription const &  md)
inherited

Definition at line 31 of file ModuleBase.cc.

References art::ModuleBase::md_.

32  {
33  md_ = md;
34  }
std::optional< ModuleDescription > md_
Definition: ModuleBase.h:55
void art::ModuleBase::sortConsumables ( std::string const &  current_process_name)
inherited

Definition at line 49 of file ModuleBase.cc.

References art::ModuleBase::collector_, and art::ConsumesCollector::sortConsumables().

50  {
51  // Now that we know we have seen all the consumes declarations,
52  // sort the results for fast lookup later.
53  collector_.sortConsumables(current_process_name);
54  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
void sortConsumables(std::string const &current_process_name)

Member Data Documentation

bool trkf::SpacePointFinder::fClusterAssns
private

Definition at line 49 of file SpacePointFinder_module.cc.

Referenced by produce(), and SpacePointFinder().

std::string trkf::SpacePointFinder::fClusterModuleLabel
private

Definition at line 47 of file SpacePointFinder_module.cc.

Referenced by produce(), and SpacePointFinder().

unsigned int trkf::SpacePointFinder::fMinHits
private

Definition at line 48 of file SpacePointFinder_module.cc.

Referenced by produce(), and SpacePointFinder().

int trkf::SpacePointFinder::fNumEvent
private

Definition at line 53 of file SpacePointFinder_module.cc.

Referenced by endJob(), produce(), and SpacePointFinder().

int trkf::SpacePointFinder::fNumSpt2
private

Definition at line 54 of file SpacePointFinder_module.cc.

Referenced by endJob(), produce(), and SpacePointFinder().

int trkf::SpacePointFinder::fNumSpt3
private

Definition at line 55 of file SpacePointFinder_module.cc.

Referenced by endJob(), produce(), and SpacePointFinder().

SpacePointAlg trkf::SpacePointFinder::fSptalg
private

Definition at line 46 of file SpacePointFinder_module.cc.

Referenced by produce(), and SpacePointFinder().


The documentation for this class was generated from the following file: