All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LArPandoraTrackCreation_module.cc
Go to the documentation of this file.
1 /**
2  * @file larpandora/LArPandoraEventBuilding/LArPandoraTrackCreation_module.cc
3  *
4  * @brief module for lar pandora track creation
5  */
6 
8 
9 #include "art/Framework/Core/EDProducer.h"
10 #include "art/Framework/Core/ModuleMacros.h"
11 #include "art/Framework/Principal/Event.h"
12 
13 #include "fhiclcpp/ParameterSet.h"
14 
19 
20 
21 #include <memory>
22 
23 namespace lar_pandora
24 {
25 
26 class LArPandoraTrackCreation : public art::EDProducer
27 {
28 public:
29  explicit LArPandoraTrackCreation(fhicl::ParameterSet const &pset);
30 
35 
36  void produce(art::Event &evt) override;
37 
38 private:
39  /**
40  * @brief Build a recob::Track object
41  *
42  * @param id the id code for the track
43  * @param trackStateVector the vector of trajectory points for this track
44  */
45  recob::Track BuildTrack(const int id, const lar_content::LArTrackStateVector &trackStateVector) const;
46 
47  std::string m_pfParticleLabel; ///< The pf particle label
48  unsigned int m_minTrajectoryPoints; ///< The minimum number of trajectory points
49  unsigned int m_slidingFitHalfWindow; ///< The sliding fit half window
50  bool m_useAllParticles; ///< Build a recob::Track for every recob::PFParticle
51 };
52 
53 DEFINE_ART_MODULE(LArPandoraTrackCreation)
54 
55 } // namespace lar_pandora
56 
57 //------------------------------------------------------------------------------------------------------------------------------------------
58 // implementation follows
59 
60 #include "art/Framework/Principal/Handle.h"
61 #include "art/Framework/Principal/Run.h"
62 #include "art/Framework/Principal/SubRun.h"
63 
64 #include "art/Persistency/Common/PtrMaker.h"
65 
66 #include "canvas/Utilities/InputTag.h"
67 
69 
71 
76 
77 #include "messagefacility/MessageLogger/MessageLogger.h"
78 
80 
84 
85 
86 #include <iostream>
87 
88 namespace lar_pandora
89 {
90 
91 LArPandoraTrackCreation::LArPandoraTrackCreation(fhicl::ParameterSet const &pset) :
92  EDProducer{pset},
93  m_pfParticleLabel(pset.get<std::string>("PFParticleLabel")),
94  m_minTrajectoryPoints(pset.get<unsigned int>("MinTrajectoryPoints", 2)),
95  m_slidingFitHalfWindow(pset.get<unsigned int>("SlidingFitHalfWindow", 20)),
96  m_useAllParticles(pset.get<bool>("UseAllParticles", false))
97 {
98  produces< std::vector<recob::Track> >();
99  produces< art::Assns<recob::PFParticle, recob::Track> >();
100  produces< art::Assns<recob::Track, recob::Hit> >();
101  produces< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> >();
102 
103  if (m_minTrajectoryPoints<2) throw cet::exception("LArPandoraTrackCreation") << "MinTrajectoryPoints should not be smaller than 2!";
104 
105 }
106 
107 //------------------------------------------------------------------------------------------------------------------------------------------
108 
110 {
111  std::unique_ptr< std::vector<recob::Track> > outputTracks( new std::vector<recob::Track> );
112  std::unique_ptr< art::Assns<recob::PFParticle, recob::Track> > outputParticlesToTracks( new art::Assns<recob::PFParticle, recob::Track> );
113  std::unique_ptr< art::Assns<recob::Track, recob::Hit> > outputTracksToHits( new art::Assns<recob::Track, recob::Hit> );
114  std::unique_ptr< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> > outputTracksToHitsWithMeta( new art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> );
115 
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;
127  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, pfParticleVector, pfParticlesToSpacePoints);
128  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, extraPfParticleVector, pfParticlesToClusters);
129 
130  VertexVector vertexVector;
131  PFParticlesToVertices pfParticlesToVertices;
132  LArPandoraHelper::CollectVertices(evt, m_pfParticleLabel, vertexVector, pfParticlesToVertices);
133 
134  for (const art::Ptr<recob::PFParticle> pPFParticle : pfParticleVector)
135  {
136  // Select track-like pfparticles
137  if (!m_useAllParticles && !LArPandoraHelper::IsTrack(pPFParticle))
138  continue;
139 
140  // Obtain associated spacepoints
141  PFParticlesToSpacePoints::const_iterator particleToSpacePointIter(pfParticlesToSpacePoints.find(pPFParticle));
142 
143  if (pfParticlesToSpacePoints.end() == particleToSpacePointIter)
144  {
145  mf::LogDebug("LArPandoraTrackCreation") << "No spacepoints associated to particle ";
146  continue;
147  }
148 
149  // Obtain associated clusters
150  PFParticlesToClusters::const_iterator particleToClustersIter(pfParticlesToClusters.find(pPFParticle));
151 
152  if (pfParticlesToClusters.end() == particleToClustersIter)
153  {
154  mf::LogDebug("LArPandoraShowerCreation") << "No clusters associated to particle ";
155  continue;
156  }
157 
158  // Obtain associated vertex
159  PFParticlesToVertices::const_iterator particleToVertexIter(pfParticlesToVertices.find(pPFParticle));
160 
161  if ((pfParticlesToVertices.end() == particleToVertexIter) || (1 != particleToVertexIter->second.size()))
162  {
163  mf::LogDebug("LArPandoraTrackCreation") << "Unexpected number of vertices for particle ";
164  continue;
165  }
166 
167  // Copy information into expected pandora form
168  pandora::CartesianPointVector cartesianPointVector;
169  for (const art::Ptr<recob::SpacePoint> spacePoint : particleToSpacePointIter->second)
170  cartesianPointVector.emplace_back(pandora::CartesianVector(spacePoint->XYZ()[0], spacePoint->XYZ()[1], spacePoint->XYZ()[2]));
171 
172  double vertexXYZ[3] = {0., 0., 0.};
173  particleToVertexIter->second.front()->XYZ(vertexXYZ);
174  const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
175 
176  // Call pandora "fast" track fitter
177  lar_content::LArTrackStateVector trackStateVector;
178  pandora::IntVector indexVector;
179  try
180  {
181  lar_content::LArPfoHelper::GetSlidingFitTrajectory(cartesianPointVector, vertexPosition, m_slidingFitHalfWindow, wirePitchW, trackStateVector, &indexVector);
182  }
183  catch (const pandora::StatusCodeException &)
184  {
185  mf::LogDebug("LArPandoraTrackCreation") << "Unable to extract sliding fit trajectory";
186  continue;
187  }
188 
189  if (trackStateVector.size() < m_minTrajectoryPoints)
190  {
191  mf::LogDebug("LArPandoraTrackCreation") << "Insufficient input trajectory points to build track: " << trackStateVector.size();
192  continue;
193  }
194 
195  HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
196  HitSet hitsInParticleSet;
197 
198  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToSpacePointIter->second, hitsFromSpacePoints, &indexVector);
199  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToClustersIter->second, hitsFromClusters);
200  //ATTN: hits ordered from space points if available, rest added at the end
201  for (unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++)
202  {
203  hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
204  (void) hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
205  }
206 
207  for (unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++)
208  {
209  if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
210  hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
211  }
212 
213  // 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
214  if (trackStateVector.size()>hitsFromSpacePoints.size())
215  {
216  throw cet::exception("LArPandoraTrackCreation") << "trackStateVector.size() is greater than hitsFromSpacePoints.size()";
217  }
218  const unsigned int nInvalidPoints = hitsInParticle.size()-trackStateVector.size();
219  for (unsigned int i=0;i<nInvalidPoints;++i) {
220  trackStateVector.push_back(lar_content::LArTrackState(pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF),
221  pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF), nullptr));
222  }
223 
224  // Output objects
225  outputTracks->emplace_back(LArPandoraTrackCreation::BuildTrack(trackCounter++, trackStateVector));
226  art::Ptr<recob::Track> pTrack(makeTrackPtr(outputTracks->size() - 1));
227 
228  // Output associations, after output objects are in place
229  util::CreateAssn(*this, evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
230  util::CreateAssn(*this, evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
231 
232  //ATTN: metadata added with index from space points if available, null for others
233  for (unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++)
234  {
235  const art::Ptr<recob::Hit> pHit(hitsInParticle.at(hitIndex));
236  const int index((hitIndex < hitsFromSpacePoints.size()) ? hitIndex : std::numeric_limits<int>::max());
237  recob::TrackHitMeta metadata(index, -std::numeric_limits<double>::max());
238  outputTracksToHitsWithMeta->addSingle(pTrack, pHit, metadata);
239  }
240  }
241 
242  mf::LogDebug("LArPandoraTrackCreation") << "Number of new tracks: " << outputTracks->size() << std::endl;
243 
244  evt.put(std::move(outputTracks));
245  evt.put(std::move(outputTracksToHits));
246  evt.put(std::move(outputTracksToHitsWithMeta));
247  evt.put(std::move(outputParticlesToTracks));
248 }
249 
250 //------------------------------------------------------------------------------------------------------------------------------------------
251 
253 {
254  if (trackStateVector.empty())
255  throw cet::exception("LArPandoraTrackCreation") << "BuildTrack - No input trajectory points provided ";
256 
260 
261  for (const lar_content::LArTrackState &trackState : trackStateVector)
262  {
263  xyz.emplace_back(recob::tracking::Point_t(trackState.GetPosition().GetX(), trackState.GetPosition().GetY(), trackState.GetPosition().GetZ()));
264  pxpypz.emplace_back(recob::tracking::Vector_t(trackState.GetDirection().GetX(), trackState.GetDirection().GetY(), trackState.GetDirection().GetZ()));
265  // Set flag NoPoint if point has bogus coordinates, otherwise use clean flag set
266  if (std::fabs(trackState.GetPosition().GetX()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
267  std::fabs(trackState.GetPosition().GetY()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
268  std::fabs(trackState.GetPosition().GetZ()-util::kBogusF)<std::numeric_limits<float>::epsilon())
269  {
271  } else {
272  flags.emplace_back(recob::TrajectoryPointFlags());
273  }
274  }
275 
276  // note from gc: eventually we should produce a TrackTrajectory, not a Track with empty covariance matrix and bogus chi2, etc.
277  return recob::Track(recob::TrackTrajectory(std::move(xyz), std::move(pxpypz), std::move(flags), false),
279 }
280 
281 } // namespace lar_pandora
Header file for the pfo helper class.
LArPandoraTrackCreation & operator=(LArPandoraTrackCreation const &)=delete
static constexpr Flag_t NoPoint
The trajectory point is not defined.
std::unordered_set< art::Ptr< recob::Hit > > HitSet
std::map< art::Ptr< recob::PFParticle >, ClusterVector > PFParticlesToClusters
ROOT::Math::SMatrix< Double32_t, 5, 5, ROOT::Math::MatRepSym< Double32_t, 5 > > SMatrixSym55
Definition: TrackingTypes.h:85
Header file for lar pfo objects.
Declaration of signal hit object.
LArTrackState class.
Definition: LArPfoObjects.h:29
Empty interface to map pandora to specifics in the LArSoft geometry.
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.
Class to keep data related to recob::Hit associated with recob::Track.
constexpr int kBogusI
obviously bogus integer value
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
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.
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:29
std::vector< art::Ptr< recob::PFParticle > > PFParticleVector
A trajectory in space reconstructed from hits.
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.
virtual float WirePitchW() const =0
The wire pitch of the mapped W view.
std::vector< Vector_t > Momenta_t
Type of momentum list.
Definition: TrackingTypes.h:35
std::vector< PointFlags_t > Flags_t
Type of point flag list.
j template void())
Definition: json.hpp:3108
std::map< art::Ptr< recob::PFParticle >, SpacePointVector > PFParticlesToSpacePoints
static constexpr HitIndex_t InvalidHitIndex
Value marking an invalid hit index.
static void CollectPFParticles(const art::Event &evt, const std::string &label, PFParticleVector &particleVector)
Collect the reconstructed PFParticles from the ART event record.
Provides recob::Track data product.
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
std::vector< Point_t > Positions_t
Type of trajectory point list.
Definition: TrackingTypes.h:32
LArPandoraDetectorType * GetDetectorType()
Factory class that returns the correct detector type interface.
constexpr float kBogusF
obviously bogus float value
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
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
std::vector< LArTrackState > LArTrackStateVector
Definition: LArPfoObjects.h:67
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
TCEvent evt
Definition: DataStructs.cxx:8
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:26
Helper functions for extracting detector geometry for use in reconsruction.
helper function for LArPandoraInterface producer module
Set of flags pertaining a point of the track.
LArPandoraTrackCreation(fhicl::ParameterSet const &pset)
art framework interface to geometry description
Track from a non-cascading particle.A recob::Track consists of a recob::TrackTrajectory, plus additional members relevant for a &quot;fitted&quot; track: