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 
10 
11 #include "fhiclcpp/ParameterSet.h"
12 
17 
19 
20 #include <memory>
21 
22 namespace lar_pandora
23 {
24 
26 {
27 public:
28  explicit LArPandoraTrackCreation(fhicl::ParameterSet const &pset);
29 
34 
35  void produce(art::Event &evt) override;
36 
37 private:
38  /**
39  * @brief Build a recob::Track object
40  *
41  * @param id the id code for the track
42  * @param trackStateVector the vector of trajectory points for this track
43  */
44  recob::Track BuildTrack(const int id, const lar_content::LArTrackStateVector &trackStateVector) const;
45 
46  std::string m_pfParticleLabel; ///< The pf particle label
47  unsigned int m_minTrajectoryPoints; ///< The minimum number of trajectory points
48  unsigned int m_slidingFitHalfWindow; ///< The sliding fit half window
49  bool m_useAllParticles; ///< Build a recob::Track for every recob::PFParticle
50 };
51 
53 
54 } // namespace lar_pandora
55 
56 //------------------------------------------------------------------------------------------------------------------------------------------
57 // implementation follows
58 
62 
64 
66 
68 
70 
75 
77 
79 
82 
83 
84 #include <iostream>
85 
86 namespace lar_pandora
87 {
88 
90  EDProducer{pset},
91  m_pfParticleLabel(pset.get<std::string>("PFParticleLabel")),
92  m_minTrajectoryPoints(pset.get<unsigned int>("MinTrajectoryPoints", 2)),
93  m_slidingFitHalfWindow(pset.get<unsigned int>("SlidingFitHalfWindow", 20)),
94  m_useAllParticles(pset.get<bool>("UseAllParticles", false))
95 {
96  produces< std::vector<recob::Track> >();
97  produces< art::Assns<recob::PFParticle, recob::Track> >();
98  produces< art::Assns<recob::Track, recob::Hit> >();
99  produces< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> >();
100 
101  if (m_minTrajectoryPoints<2) throw cet::exception("LArPandoraTrackCreation") << "MinTrajectoryPoints should not be smaller than 2!";
102 
103 }
104 
105 //------------------------------------------------------------------------------------------------------------------------------------------
106 
108 {
109  std::unique_ptr< std::vector<recob::Track> > outputTracks( new std::vector<recob::Track> );
110  std::unique_ptr< art::Assns<recob::PFParticle, recob::Track> > outputParticlesToTracks( new art::Assns<recob::PFParticle, recob::Track> );
111  std::unique_ptr< art::Assns<recob::Track, recob::Hit> > outputTracksToHits( new art::Assns<recob::Track, recob::Hit> );
112  std::unique_ptr< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> > outputTracksToHitsWithMeta( new art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> );
113 
115  // 'wirePitchW` is here used only to provide length scale for binning hits and performing sliding/local linear fits.
116  const float wirePitchW(detType->WirePitchW());
117 
118  int trackCounter(0);
119  const art::PtrMaker<recob::Track> makeTrackPtr(evt);
120 
121  // Organise inputs
122  PFParticleVector pfParticleVector, extraPfParticleVector;
123  PFParticlesToSpacePoints pfParticlesToSpacePoints;
124  PFParticlesToClusters pfParticlesToClusters;
125  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, pfParticleVector, pfParticlesToSpacePoints);
126  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, extraPfParticleVector, pfParticlesToClusters);
127 
128  VertexVector vertexVector;
129  PFParticlesToVertices pfParticlesToVertices;
130  LArPandoraHelper::CollectVertices(evt, m_pfParticleLabel, vertexVector, pfParticlesToVertices);
131 
132  for (const art::Ptr<recob::PFParticle> pPFParticle : pfParticleVector)
133  {
134  // Select track-like pfparticles
135  if (!m_useAllParticles && !LArPandoraHelper::IsTrack(pPFParticle))
136  continue;
137 
138  // Obtain associated spacepoints
139  PFParticlesToSpacePoints::const_iterator particleToSpacePointIter(pfParticlesToSpacePoints.find(pPFParticle));
140 
141  if (pfParticlesToSpacePoints.end() == particleToSpacePointIter)
142  {
143  mf::LogDebug("LArPandoraTrackCreation") << "No spacepoints associated to particle ";
144  continue;
145  }
146 
147  // Obtain associated clusters
148  PFParticlesToClusters::const_iterator particleToClustersIter(pfParticlesToClusters.find(pPFParticle));
149 
150  if (pfParticlesToClusters.end() == particleToClustersIter)
151  {
152  mf::LogDebug("LArPandoraShowerCreation") << "No clusters associated to particle ";
153  continue;
154  }
155 
156  // Obtain associated vertex
157  PFParticlesToVertices::const_iterator particleToVertexIter(pfParticlesToVertices.find(pPFParticle));
158 
159  if ((pfParticlesToVertices.end() == particleToVertexIter) || (1 != particleToVertexIter->second.size()))
160  {
161  mf::LogDebug("LArPandoraTrackCreation") << "Unexpected number of vertices for particle ";
162  continue;
163  }
164 
165  // Copy information into expected pandora form
166  pandora::CartesianPointVector cartesianPointVector;
167  for (const art::Ptr<recob::SpacePoint> spacePoint : particleToSpacePointIter->second)
168  cartesianPointVector.emplace_back(pandora::CartesianVector(spacePoint->XYZ()[0], spacePoint->XYZ()[1], spacePoint->XYZ()[2]));
169 
170  double vertexXYZ[3] = {0., 0., 0.};
171  particleToVertexIter->second.front()->XYZ(vertexXYZ);
172  const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
173 
174  // Call pandora "fast" track fitter
175  lar_content::LArTrackStateVector trackStateVector;
176  pandora::IntVector indexVector;
177  try
178  {
179  lar_content::LArPfoHelper::GetSlidingFitTrajectory(cartesianPointVector, vertexPosition, m_slidingFitHalfWindow, wirePitchW, trackStateVector, &indexVector);
180  }
181  catch (const pandora::StatusCodeException &)
182  {
183  mf::LogDebug("LArPandoraTrackCreation") << "Unable to extract sliding fit trajectory";
184  continue;
185  }
186 
187  if (trackStateVector.size() < m_minTrajectoryPoints)
188  {
189  mf::LogDebug("LArPandoraTrackCreation") << "Insufficient input trajectory points to build track: " << trackStateVector.size();
190  continue;
191  }
192 
193  HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
194  HitSet hitsInParticleSet;
195 
196  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToSpacePointIter->second, hitsFromSpacePoints, &indexVector);
197  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToClustersIter->second, hitsFromClusters);
198  //ATTN: hits ordered from space points if available, rest added at the end
199  for (unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++)
200  {
201  hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
202  (void) hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
203  }
204 
205  for (unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++)
206  {
207  if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
208  hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
209  }
210 
211  // 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
212  if (trackStateVector.size()>hitsFromSpacePoints.size())
213  {
214  throw cet::exception("LArPandoraTrackCreation") << "trackStateVector.size() is greater than hitsFromSpacePoints.size()";
215  }
216  const unsigned int nInvalidPoints = hitsInParticle.size()-trackStateVector.size();
217  for (unsigned int i=0;i<nInvalidPoints;++i) {
218  trackStateVector.push_back(lar_content::LArTrackState(pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF),
219  pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF), nullptr));
220  }
221 
222  // Output objects
223  outputTracks->emplace_back(LArPandoraTrackCreation::BuildTrack(trackCounter++, trackStateVector));
224  art::Ptr<recob::Track> pTrack(makeTrackPtr(outputTracks->size() - 1));
225 
226  // Output associations, after output objects are in place
227  util::CreateAssn(*this, evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
228  util::CreateAssn(*this, evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
229 
230  //ATTN: metadata added with index from space points if available, null for others
231  for (unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++)
232  {
233  const art::Ptr<recob::Hit> pHit(hitsInParticle.at(hitIndex));
234  const int index((hitIndex < hitsFromSpacePoints.size()) ? hitIndex : std::numeric_limits<int>::max());
236  outputTracksToHitsWithMeta->addSingle(pTrack, pHit, metadata);
237  }
238  }
239 
240  mf::LogDebug("LArPandoraTrackCreation") << "Number of new tracks: " << outputTracks->size() << std::endl;
241 
242  evt.put(std::move(outputTracks));
243  evt.put(std::move(outputTracksToHits));
244  evt.put(std::move(outputTracksToHitsWithMeta));
245  evt.put(std::move(outputParticlesToTracks));
246 }
247 
248 //------------------------------------------------------------------------------------------------------------------------------------------
249 
251 {
252  if (trackStateVector.empty())
253  throw cet::exception("LArPandoraTrackCreation") << "BuildTrack - No input trajectory points provided ";
254 
258 
259  for (const lar_content::LArTrackState &trackState : trackStateVector)
260  {
261  xyz.emplace_back(recob::tracking::Point_t(trackState.GetPosition().GetX(), trackState.GetPosition().GetY(), trackState.GetPosition().GetZ()));
262  pxpypz.emplace_back(recob::tracking::Vector_t(trackState.GetDirection().GetX(), trackState.GetDirection().GetY(), trackState.GetDirection().GetZ()));
263  // Set flag NoPoint if point has bogus coordinates, otherwise use clean flag set
264  if (std::fabs(trackState.GetPosition().GetX()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
265  std::fabs(trackState.GetPosition().GetY()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
266  std::fabs(trackState.GetPosition().GetZ()-util::kBogusF)<std::numeric_limits<float>::epsilon())
267  {
269  } else {
270  flags.emplace_back(recob::TrajectoryPointFlags());
271  }
272  }
273 
274  // note from gc: eventually we should produce a TrackTrajectory, not a Track with empty covariance matrix and bogus chi2, etc.
275  return recob::Track(recob::TrackTrajectory(std::move(xyz), std::move(pxpypz), std::move(flags), false),
277 }
278 
279 } // 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
std::string string
Definition: nybbler.cc:12
ROOT::Math::SMatrix< Double32_t, 5, 5, ROOT::Math::MatRepSym< Double32_t, 5 > > SMatrixSym55
Definition: TrackingTypes.h:85
Header file for lar pfo objects.
LArTrackState class.
Definition: LArPfoObjects.h:29
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.h:20
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
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.
art framework interface to geometry description
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
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:67
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.
def move(depos, offset)
Definition: depos.py:107
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.
ProductID put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: DataViewImpl.h:686
std::vector< Vector_t > Momenta_t
Type of momentum list.
Definition: TrackingTypes.h:35
bool CreateAssn(PRODUCER const &prod, art::Event &evt, std::vector< T > const &a, art::Ptr< U > const &b, art::Assns< U, T > &assn, std::string a_instance, size_t indx=UINT_MAX)
Creates a single one-to-one association.
static int max(int a, int b)
std::vector< PointFlags_t > Flags_t
Type of point flag list.
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.
virtual float WirePitchW() const =0
The wire pitch of the mapped W view.
std::vector< art::Ptr< recob::Hit > > HitVector
Declaration of signal hit object.
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
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.
Provides recob::Track data product.
recob::Track BuildTrack(const int id, const lar_content::LArTrackStateVector &trackStateVector) const
Build a recob::Track object.
const Double32_t * XYZ() const
Definition: SpacePoint.h:76
std::vector< art::Ptr< recob::Vertex > > VertexVector
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
Definition: Track.h:1036
std::vector< LArTrackState > LArTrackStateVector
Definition: LArPfoObjects.h:67
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
TCEvent evt
Definition: DataStructs.cxx:7
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)
Track from a non-cascading particle.A recob::Track consists of a recob::TrackTrajectory, plus additional members relevant for a "fitted" track:
Definition: Track.h:49
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
QTextStream & endl(QTextStream &s)