LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
lar_pandora::LArPandoraTrackCreation Class Reference
Inheritance diagram for lar_pandora::LArPandoraTrackCreation:
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

 LArPandoraTrackCreation (fhicl::ParameterSet const &pset)
 
 LArPandoraTrackCreation (LArPandoraTrackCreation const &)=delete
 
 LArPandoraTrackCreation (LArPandoraTrackCreation &&)=delete
 
LArPandoraTrackCreationoperator= (LArPandoraTrackCreation const &)=delete
 
LArPandoraTrackCreationoperator= (LArPandoraTrackCreation &&)=delete
 
void produce (art::Event &evt) override
 
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

recob::Track BuildTrack (const int id, const lar_content::LArTrackStateVector &trackStateVector) const
 Build a recob::Track object. More...
 

Private Attributes

std::string m_pfParticleLabel
 The pf particle label. More...
 
unsigned int m_minTrajectoryPoints
 The minimum number of trajectory points. More...
 
unsigned int m_slidingFitHalfWindow
 The sliding fit half window. More...
 
bool m_useAllParticles
 Build a recob::Track for every recob::PFParticle. More...
 

Detailed Description

Definition at line 24 of file LArPandoraTrackCreation_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

lar_pandora::LArPandoraTrackCreation::LArPandoraTrackCreation ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 87 of file LArPandoraTrackCreation_module.cc.

References m_minTrajectoryPoints, m_pfParticleLabel, m_slidingFitHalfWindow, and m_useAllParticles.

88  : EDProducer{pset}
89  , m_pfParticleLabel(pset.get<std::string>("PFParticleLabel"))
90  , m_minTrajectoryPoints(pset.get<unsigned int>("MinTrajectoryPoints", 2))
91  , m_slidingFitHalfWindow(pset.get<unsigned int>("SlidingFitHalfWindow", 20))
92  , m_useAllParticles(pset.get<bool>("UseAllParticles", false))
93  {
94  produces<std::vector<recob::Track>>();
95  produces<art::Assns<recob::PFParticle, recob::Track>>();
96  produces<art::Assns<recob::Track, recob::Hit>>();
97  produces<art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta>>();
98 
99  if (m_minTrajectoryPoints < 2)
100  throw cet::exception("LArPandoraTrackCreation")
101  << "MinTrajectoryPoints should not be smaller than 2!";
102  }
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
unsigned int m_slidingFitHalfWindow
The sliding fit half window.
bool m_useAllParticles
Build a recob::Track for every recob::PFParticle.
std::string m_pfParticleLabel
The pf particle label.
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
lar_pandora::LArPandoraTrackCreation::LArPandoraTrackCreation ( LArPandoraTrackCreation const &  )
delete
lar_pandora::LArPandoraTrackCreation::LArPandoraTrackCreation ( LArPandoraTrackCreation &&  )
delete

Member Function Documentation

recob::Track lar_pandora::LArPandoraTrackCreation::BuildTrack ( const int  id,
const lar_content::LArTrackStateVector trackStateVector 
) const
private

Build a recob::Track object.

Parameters
idthe id code for the track
trackStateVectorthe vector of trajectory points for this track

Definition at line 264 of file LArPandoraTrackCreation_module.cc.

References recob::TrajectoryPointFlags::InvalidHitIndex, util::kBogusF, util::kBogusI, and recob::TrajectoryPointFlagTraits::NoPoint.

Referenced by produce().

267  {
268  if (trackStateVector.empty())
269  throw cet::exception("LArPandoraTrackCreation")
270  << "BuildTrack - No input trajectory points provided ";
271 
275 
276  for (const lar_content::LArTrackState& trackState : trackStateVector) {
277  xyz.emplace_back(recob::tracking::Point_t(trackState.GetPosition().GetX(),
278  trackState.GetPosition().GetY(),
279  trackState.GetPosition().GetZ()));
280  pxpypz.emplace_back(recob::tracking::Vector_t(trackState.GetDirection().GetX(),
281  trackState.GetDirection().GetY(),
282  trackState.GetDirection().GetZ()));
283  // Set flag NoPoint if point has bogus coordinates, otherwise use clean flag set
284  if (std::fabs(trackState.GetPosition().GetX() - util::kBogusF) <
285  std::numeric_limits<float>::epsilon() &&
286  std::fabs(trackState.GetPosition().GetY() - util::kBogusF) <
287  std::numeric_limits<float>::epsilon() &&
288  std::fabs(trackState.GetPosition().GetZ() - util::kBogusF) <
289  std::numeric_limits<float>::epsilon()) {
292  }
293  else {
294  flags.emplace_back(recob::TrajectoryPointFlags());
295  }
296  }
297 
298  // note from gc: eventually we should produce a TrackTrajectory, not a Track with empty covariance matrix and bogus chi2, etc.
299  return recob::Track(
300  recob::TrackTrajectory(std::move(xyz), std::move(pxpypz), std::move(flags), false),
306  id);
307  }
static constexpr Flag_t NoPoint
The trajectory point is not defined.
LArTrackState class.
Definition: LArPfoObjects.h:29
constexpr int kBogusI
obviously bogus integer value
ROOT::Math::SMatrix< Double32_t, 5, 5, ROOT::Math::MatRepSym< Double32_t, 5 >> SMatrixSym55
A trajectory in space reconstructed from hits.
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< Coord_t >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space. See recob::tracking::Coord_t for more details on the ...
Definition: TrackingTypes.h:31
std::vector< Vector_t > Momenta_t
Type of momentum list.
Definition: TrackingTypes.h:37
std::vector< PointFlags_t > Flags_t
Type of point flag list.
static constexpr HitIndex_t InvalidHitIndex
Value marking an invalid hit index.
std::vector< Point_t > Positions_t
Type of trajectory point list.
Definition: TrackingTypes.h:34
constexpr float kBogusF
obviously bogus float value
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
Definition: Track.h:992
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< Coord_t >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space. See recob::tracking::Coord_t for more detai...
Definition: TrackingTypes.h:27
Set of flags pertaining a point of the track.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
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 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
LArPandoraTrackCreation& lar_pandora::LArPandoraTrackCreation::operator= ( LArPandoraTrackCreation const &  )
delete
LArPandoraTrackCreation& lar_pandora::LArPandoraTrackCreation::operator= ( LArPandoraTrackCreation &&  )
delete
void lar_pandora::LArPandoraTrackCreation::produce ( art::Event evt)
overridevirtual

Implements art::EDProducer.

Definition at line 106 of file LArPandoraTrackCreation_module.cc.

References BuildTrack(), lar_pandora::LArPandoraHelper::CollectPFParticles(), lar_pandora::LArPandoraHelper::CollectVertices(), util::CreateAssn(), lar_pandora::LArPandoraHelper::GetAssociatedHits(), lar_pandora::detector_functions::GetDetectorType(), lar_content::LArPfoHelper::GetSlidingFitTrajectory(), lar_pandora::LArPandoraHelper::IsTrack(), util::kBogusF, m_minTrajectoryPoints, m_pfParticleLabel, m_slidingFitHalfWindow, m_useAllParticles, art::Event::put(), lar_pandora::LArPandoraDetectorType::WirePitchW(), and recob::SpacePoint::XYZ().

107  {
108  std::unique_ptr<std::vector<recob::Track>> outputTracks(new std::vector<recob::Track>);
109  std::unique_ptr<art::Assns<recob::PFParticle, recob::Track>> outputParticlesToTracks(
111  std::unique_ptr<art::Assns<recob::Track, recob::Hit>> outputTracksToHits(
113  std::unique_ptr<art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta>>
114  outputTracksToHitsWithMeta(new art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta>);
115 
116  LArPandoraDetectorType* detType(detector_functions::GetDetectorType());
117  // 'wirePitchW` is here used only to provide length scale for binning hits and performing sliding/local linear fits.
118  const float wirePitchW(detType->WirePitchW());
119 
120  int trackCounter(0);
121  const art::PtrMaker<recob::Track> makeTrackPtr(evt);
122 
123  // Organise inputs
124  PFParticleVector pfParticleVector, extraPfParticleVector;
125  PFParticlesToSpacePoints pfParticlesToSpacePoints;
126  PFParticlesToClusters pfParticlesToClusters;
128  evt, m_pfParticleLabel, pfParticleVector, pfParticlesToSpacePoints);
130  evt, m_pfParticleLabel, extraPfParticleVector, pfParticlesToClusters);
131 
132  VertexVector vertexVector;
133  PFParticlesToVertices pfParticlesToVertices;
134  LArPandoraHelper::CollectVertices(evt, m_pfParticleLabel, vertexVector, pfParticlesToVertices);
135 
136  for (const art::Ptr<recob::PFParticle> pPFParticle : pfParticleVector) {
137  // Select track-like pfparticles
138  if (!m_useAllParticles && !LArPandoraHelper::IsTrack(pPFParticle)) continue;
139 
140  // Obtain associated spacepoints
141  PFParticlesToSpacePoints::const_iterator particleToSpacePointIter(
142  pfParticlesToSpacePoints.find(pPFParticle));
143 
144  if (pfParticlesToSpacePoints.end() == particleToSpacePointIter) {
145  mf::LogDebug("LArPandoraTrackCreation") << "No spacepoints associated to particle ";
146  continue;
147  }
148 
149  // Obtain associated clusters
150  PFParticlesToClusters::const_iterator particleToClustersIter(
151  pfParticlesToClusters.find(pPFParticle));
152 
153  if (pfParticlesToClusters.end() == particleToClustersIter) {
154  mf::LogDebug("LArPandoraShowerCreation") << "No clusters associated to particle ";
155  continue;
156  }
157 
158  // Obtain associated vertex
159  PFParticlesToVertices::const_iterator particleToVertexIter(
160  pfParticlesToVertices.find(pPFParticle));
161 
162  if ((pfParticlesToVertices.end() == particleToVertexIter) ||
163  (1 != particleToVertexIter->second.size())) {
164  mf::LogDebug("LArPandoraTrackCreation") << "Unexpected number of vertices for particle ";
165  continue;
166  }
167 
168  // Copy information into expected pandora form
169  pandora::CartesianPointVector cartesianPointVector;
170  for (const art::Ptr<recob::SpacePoint> spacePoint : particleToSpacePointIter->second)
171  cartesianPointVector.emplace_back(pandora::CartesianVector(
172  spacePoint->XYZ()[0], spacePoint->XYZ()[1], spacePoint->XYZ()[2]));
173 
174  double vertexXYZ[3] = {0., 0., 0.};
175  particleToVertexIter->second.front()->XYZ(vertexXYZ);
176  const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
177 
178  // Call pandora "fast" track fitter
179  lar_content::LArTrackStateVector trackStateVector;
180  pandora::IntVector indexVector;
181  try {
183  vertexPosition,
185  wirePitchW,
186  trackStateVector,
187  &indexVector);
188  }
189  catch (const pandora::StatusCodeException&) {
190  mf::LogDebug("LArPandoraTrackCreation") << "Unable to extract sliding fit trajectory";
191  continue;
192  }
193 
194  if (trackStateVector.size() < m_minTrajectoryPoints) {
195  mf::LogDebug("LArPandoraTrackCreation")
196  << "Insufficient input trajectory points to build track: " << trackStateVector.size();
197  continue;
198  }
199 
200  HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
201  HitSet hitsInParticleSet;
202 
205  particleToSpacePointIter->second,
206  hitsFromSpacePoints,
207  &indexVector);
209  evt, m_pfParticleLabel, particleToClustersIter->second, hitsFromClusters);
210  //ATTN: hits ordered from space points if available, rest added at the end
211  for (unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++) {
212  hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
213  (void)hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
214  }
215 
216  for (unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++) {
217  if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
218  hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
219  }
220 
221  // Add invalid points at the end of the vector, so that the number of the trajectory points is the same as the number of hits
222  if (trackStateVector.size() > hitsFromSpacePoints.size()) {
223  throw cet::exception("LArPandoraTrackCreation")
224  << "trackStateVector.size() is greater than hitsFromSpacePoints.size()";
225  }
226  const unsigned int nInvalidPoints = hitsInParticle.size() - trackStateVector.size();
227  for (unsigned int i = 0; i < nInvalidPoints; ++i) {
228  trackStateVector.push_back(lar_content::LArTrackState(
229  pandora::CartesianVector(util::kBogusF, util::kBogusF, util::kBogusF),
230  pandora::CartesianVector(util::kBogusF, util::kBogusF, util::kBogusF),
231  nullptr));
232  }
233 
234  // Output objects
235  outputTracks->emplace_back(
236  LArPandoraTrackCreation::BuildTrack(trackCounter++, trackStateVector));
237  art::Ptr<recob::Track> pTrack(makeTrackPtr(outputTracks->size() - 1));
238 
239  // Output associations, after output objects are in place
240  util::CreateAssn(evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
241  util::CreateAssn(evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
242 
243  //ATTN: metadata added with index from space points if available, null for others
244  for (unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++) {
245  const art::Ptr<recob::Hit> pHit(hitsInParticle.at(hitIndex));
246  const int index((hitIndex < hitsFromSpacePoints.size()) ? hitIndex :
247  std::numeric_limits<int>::max());
248  recob::TrackHitMeta metadata(index, -std::numeric_limits<double>::max());
249  outputTracksToHitsWithMeta->addSingle(pTrack, pHit, metadata);
250  }
251  }
252 
253  mf::LogDebug("LArPandoraTrackCreation")
254  << "Number of new tracks: " << outputTracks->size() << std::endl;
255 
256  evt.put(std::move(outputTracks));
257  evt.put(std::move(outputTracksToHits));
258  evt.put(std::move(outputTracksToHitsWithMeta));
259  evt.put(std::move(outputParticlesToTracks));
260  }
std::unordered_set< art::Ptr< recob::Hit > > HitSet
std::map< art::Ptr< recob::PFParticle >, ClusterVector > PFParticlesToClusters
LArTrackState class.
Definition: LArPfoObjects.h:29
static void GetSlidingFitTrajectory(const pandora::CartesianPointVector &pointVector, const pandora::CartesianVector &vertexPosition, const unsigned int layerWindow, const float layerPitch, LArTrackStateVector &trackStateVector, pandora::IntVector *const pIndexVector=nullptr)
Apply 3D sliding fit to a set of 3D points and return track trajectory.
intermediate_table::const_iterator const_iterator
Data related to recob::Hit associated with recob::Track.The purpose is to collect several variables t...
Definition: TrackHitMeta.h:43
std::vector< int > IntVector
unsigned int m_slidingFitHalfWindow
The sliding fit half window.
std::map< art::Ptr< recob::PFParticle >, VertexVector > PFParticlesToVertices
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
static void GetAssociatedHits(const art::Event &evt, const std::string &label, const std::vector< art::Ptr< T >> &inputVector, HitVector &associatedHits, const pandora::IntVector *const indexVector=nullptr)
Get all hits associated with input clusters.
std::vector< art::Ptr< recob::PFParticle > > PFParticleVector
bool m_useAllParticles
Build a recob::Track for every recob::PFParticle.
std::string m_pfParticleLabel
The pf particle label.
static void CollectVertices(const art::Event &evt, const std::string &label, VertexVector &vertexVector, PFParticlesToVertices &particlesToVertices)
Collect the reconstructed PFParticles and associated Vertices from the ART event record.
const Double32_t * XYZ() const
Definition: SpacePoint.h:78
std::map< art::Ptr< recob::PFParticle >, SpacePointVector > PFParticlesToSpacePoints
static void CollectPFParticles(const art::Event &evt, const std::string &label, PFParticleVector &particleVector)
Collect the reconstructed PFParticles from the ART event record.
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.
std::vector< art::Ptr< recob::Hit > > HitVector
LArPandoraDetectorType * GetDetectorType()
Factory class that returns the correct detector type interface.
constexpr float kBogusF
obviously bogus float value
MaybeLogger_< ELseverityLevel::ELsev_success, false > LogDebug
static bool IsTrack(const art::Ptr< recob::PFParticle > particle)
Determine whether a particle has been reconstructed as track-like.
recob::Track BuildTrack(const int id, const lar_content::LArTrackStateVector &trackStateVector) const
Build a recob::Track object.
std::vector< art::Ptr< recob::Vertex > > VertexVector
std::vector< LArTrackState > LArTrackStateVector
Definition: LArPfoObjects.h:67
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
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

unsigned int lar_pandora::LArPandoraTrackCreation::m_minTrajectoryPoints
private

The minimum number of trajectory points.

Definition at line 46 of file LArPandoraTrackCreation_module.cc.

Referenced by LArPandoraTrackCreation(), and produce().

std::string lar_pandora::LArPandoraTrackCreation::m_pfParticleLabel
private

The pf particle label.

Definition at line 45 of file LArPandoraTrackCreation_module.cc.

Referenced by LArPandoraTrackCreation(), and produce().

unsigned int lar_pandora::LArPandoraTrackCreation::m_slidingFitHalfWindow
private

The sliding fit half window.

Definition at line 47 of file LArPandoraTrackCreation_module.cc.

Referenced by LArPandoraTrackCreation(), and produce().

bool lar_pandora::LArPandoraTrackCreation::m_useAllParticles
private

Build a recob::Track for every recob::PFParticle.

Definition at line 48 of file LArPandoraTrackCreation_module.cc.

Referenced by LArPandoraTrackCreation(), and produce().


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