LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
LArPandoraTrackCreation_module.cc
Go to the documentation of this file.
1 
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:
44  recob::Track BuildTrack(const int id, const lar_content::LArTrackStateVector &trackStateVector) const;
45 
46  std::string m_pfParticleLabel;
47  unsigned int m_minTrajectoryPoints;
48  unsigned int m_slidingFitHalfWindow;
50 };
51 
53 
54 } // namespace lar_pandora
55 
56 //------------------------------------------------------------------------------------------------------------------------------------------
57 // implementation follows
58 
62 
64 
66 
68 
70 
75 
77 
79 
81 
82 #include <iostream>
83 
84 namespace lar_pandora
85 {
86 
88  m_pfParticleLabel(pset.get<std::string>("PFParticleLabel")),
89  m_minTrajectoryPoints(pset.get<unsigned int>("MinTrajectoryPoints", 2)),
90  m_slidingFitHalfWindow(pset.get<unsigned int>("SlidingFitHalfWindow", 20)),
91  m_useAllParticles(pset.get<bool>("UseAllParticles", false))
92 {
93  produces< std::vector<recob::Track> >();
94  produces< art::Assns<recob::PFParticle, recob::Track> >();
95  produces< art::Assns<recob::Track, recob::Hit> >();
96  produces< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> >();
97 
98  if (m_minTrajectoryPoints<2) throw cet::exception("LArPandoraTrackCreation") << "MinTrajectoryPoints should not be smaller than 2!";
99 
100 }
101 
102 //------------------------------------------------------------------------------------------------------------------------------------------
103 
105 {
106  std::unique_ptr< std::vector<recob::Track> > outputTracks( new std::vector<recob::Track> );
107  std::unique_ptr< art::Assns<recob::PFParticle, recob::Track> > outputParticlesToTracks( new art::Assns<recob::PFParticle, recob::Track> );
108  std::unique_ptr< art::Assns<recob::Track, recob::Hit> > outputTracksToHits( new art::Assns<recob::Track, recob::Hit> );
109  std::unique_ptr< art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> > outputTracksToHitsWithMeta( new art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta> );
110 
111  // 'wirePitchW` is here used only to provide length scale for binning hits and performing sliding/local linear fits.
112  // Fits should be robust against the precise choice, provided length scale is comparable to the granularity of the images.
114  const unsigned int nWirePlanes(theGeometry->MaxPlanes());
115 
116  if (nWirePlanes > 3)
117  throw cet::exception("LArPandoraTrackCreation") << " LArPandoraTrackCreation::produce --- More than three wire planes present ";
118 
119  if ((0 == theGeometry->Ncryostats()) || (0 == theGeometry->NTPC(0)))
120  throw cet::exception("LArPandoraTrackCreation") << " LArPandoraTrackCreation::produce --- unable to access first tpc in first cryostat ";
121 
122  std::unordered_set<geo::_plane_proj> planeSet;
123  for (unsigned int iPlane = 0; iPlane < nWirePlanes; ++iPlane)
124  (void) planeSet.insert(theGeometry->TPC(0, 0).Plane(iPlane).View());
125 
126  if ((nWirePlanes != planeSet.size()) || !planeSet.count(geo::kU) || !planeSet.count(geo::kV) || (planeSet.count(geo::kW) && planeSet.count(geo::kY)))
127  throw cet::exception("LArPandoraTrackCreation") << " LArPandoraTrackCreation::produce --- expect to find u and v views; if there is one further view, it must be w or y ";
128 
129  const bool useYPlane((nWirePlanes > 2) && planeSet.count(geo::kY));
130 
131  const float wirePitchU(theGeometry->WirePitch(geo::kU));
132  const float wirePitchV(theGeometry->WirePitch(geo::kV));
133  const float wirePitchW((nWirePlanes < 3) ? 0.5f * (wirePitchU + wirePitchV) : (useYPlane) ? theGeometry->WirePitch(geo::kY) : theGeometry->WirePitch(geo::kW));
134 
135  int trackCounter(0);
136  const art::PtrMaker<recob::Track> makeTrackPtr(evt, *this);
137 
138  // Organise inputs
139  PFParticleVector pfParticleVector, extraPfParticleVector;
140  PFParticlesToSpacePoints pfParticlesToSpacePoints;
141  PFParticlesToClusters pfParticlesToClusters;
142  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, pfParticleVector, pfParticlesToSpacePoints);
143  LArPandoraHelper::CollectPFParticles(evt, m_pfParticleLabel, extraPfParticleVector, pfParticlesToClusters);
144 
145  VertexVector vertexVector;
146  PFParticlesToVertices pfParticlesToVertices;
147  LArPandoraHelper::CollectVertices(evt, m_pfParticleLabel, vertexVector, pfParticlesToVertices);
148 
149  for (const art::Ptr<recob::PFParticle> pPFParticle : pfParticleVector)
150  {
151  // Select track-like pfparticles
152  if (!m_useAllParticles && !LArPandoraHelper::IsTrack(pPFParticle))
153  continue;
154 
155  // Obtain associated spacepoints
156  PFParticlesToSpacePoints::const_iterator particleToSpacePointIter(pfParticlesToSpacePoints.find(pPFParticle));
157 
158  if (pfParticlesToSpacePoints.end() == particleToSpacePointIter)
159  {
160  mf::LogDebug("LArPandoraTrackCreation") << "No spacepoints associated to particle ";
161  continue;
162  }
163 
164  // Obtain associated clusters
165  PFParticlesToClusters::const_iterator particleToClustersIter(pfParticlesToClusters.find(pPFParticle));
166 
167  if (pfParticlesToClusters.end() == particleToClustersIter)
168  {
169  mf::LogDebug("LArPandoraShowerCreation") << "No clusters associated to particle ";
170  continue;
171  }
172 
173  // Obtain associated vertex
174  PFParticlesToVertices::const_iterator particleToVertexIter(pfParticlesToVertices.find(pPFParticle));
175 
176  if ((pfParticlesToVertices.end() == particleToVertexIter) || (1 != particleToVertexIter->second.size()))
177  {
178  mf::LogDebug("LArPandoraTrackCreation") << "Unexpected number of vertices for particle ";
179  continue;
180  }
181 
182  // Copy information into expected pandora form
183  pandora::CartesianPointVector cartesianPointVector;
184  for (const art::Ptr<recob::SpacePoint> spacePoint : particleToSpacePointIter->second)
185  cartesianPointVector.emplace_back(pandora::CartesianVector(spacePoint->XYZ()[0], spacePoint->XYZ()[1], spacePoint->XYZ()[2]));
186 
187  double vertexXYZ[3] = {0., 0., 0.};
188  particleToVertexIter->second.front()->XYZ(vertexXYZ);
189  const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
190 
191  // Call pandora "fast" track fitter
192  lar_content::LArTrackStateVector trackStateVector;
193  pandora::IntVector indexVector;
194  try
195  {
196  lar_content::LArPfoHelper::GetSlidingFitTrajectory(cartesianPointVector, vertexPosition, m_slidingFitHalfWindow, wirePitchW, trackStateVector, &indexVector);
197  }
198  catch (const pandora::StatusCodeException &)
199  {
200  mf::LogDebug("LArPandoraTrackCreation") << "Unable to extract sliding fit trajectory";
201  continue;
202  }
203 
204  if (trackStateVector.size() < m_minTrajectoryPoints)
205  {
206  mf::LogDebug("LArPandoraTrackCreation") << "Insufficient input trajectory points to build track: " << trackStateVector.size();
207  continue;
208  }
209 
210  HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
211  HitSet hitsInParticleSet;
212 
213  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToSpacePointIter->second, hitsFromSpacePoints, &indexVector);
214  LArPandoraHelper::GetAssociatedHits(evt, m_pfParticleLabel, particleToClustersIter->second, hitsFromClusters);
215  //ATTN: hits ordered from space points if available, rest added at the end
216  for (unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++)
217  {
218  hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
219  (void) hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
220  }
221 
222  for (unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++)
223  {
224  if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
225  hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
226  }
227 
228  // 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
229  if (trackStateVector.size()>hitsFromSpacePoints.size())
230  {
231  throw cet::exception("LArPandoraTrackCreation") << "trackStateVector.size() is greater than hitsFromSpacePoints.size()";
232  }
233  const unsigned int nInvalidPoints = hitsInParticle.size()-trackStateVector.size();
234  for (unsigned int i=0;i<nInvalidPoints;++i) {
235  trackStateVector.push_back(lar_content::LArTrackState(pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF),
236  pandora::CartesianVector(util::kBogusF,util::kBogusF,util::kBogusF), nullptr));
237  }
238 
239  // Output objects
240  outputTracks->emplace_back(LArPandoraTrackCreation::BuildTrack(trackCounter++, trackStateVector));
241  art::Ptr<recob::Track> pTrack(makeTrackPtr(outputTracks->size() - 1));
242 
243  // Output associations, after output objects are in place
244  util::CreateAssn(*this, evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
245  util::CreateAssn(*this, evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
246 
247  //ATTN: metadata added with index from space points if available, null for others
248  for (unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++)
249  {
250  const art::Ptr<recob::Hit> pHit(hitsInParticle.at(hitIndex));
251  const int index((hitIndex < hitsFromSpacePoints.size()) ? hitIndex : std::numeric_limits<int>::max());
253  outputTracksToHitsWithMeta->addSingle(pTrack, pHit, metadata);
254  }
255  }
256 
257  mf::LogDebug("LArPandoraTrackCreation") << "Number of new tracks: " << outputTracks->size() << std::endl;
258 
259  evt.put(std::move(outputTracks));
260  evt.put(std::move(outputTracksToHits));
261  evt.put(std::move(outputTracksToHitsWithMeta));
262  evt.put(std::move(outputParticlesToTracks));
263 }
264 
265 //------------------------------------------------------------------------------------------------------------------------------------------
266 
268 {
269  if (trackStateVector.empty())
270  throw cet::exception("LArPandoraTrackCreation") << "BuildTrack - No input trajectory points provided ";
271 
275 
276  for (const lar_content::LArTrackState &trackState : trackStateVector)
277  {
278  xyz.emplace_back(recob::tracking::Point_t(trackState.GetPosition().GetX(), trackState.GetPosition().GetY(), trackState.GetPosition().GetZ()));
279  pxpypz.emplace_back(recob::tracking::Vector_t(trackState.GetDirection().GetX(), trackState.GetDirection().GetY(), trackState.GetDirection().GetZ()));
280  // Set flag NoPoint if point has bogus coordinates, otherwise use clean flag set
281  if (std::fabs(trackState.GetPosition().GetX()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
282  std::fabs(trackState.GetPosition().GetY()-util::kBogusF)<std::numeric_limits<float>::epsilon() &&
283  std::fabs(trackState.GetPosition().GetZ()-util::kBogusF)<std::numeric_limits<float>::epsilon())
284  {
286  } else {
287  flags.emplace_back(recob::TrajectoryPointFlags());
288  }
289  }
290 
291  // note from gc: eventually we should produce a TrackTrajectory, not a Track with empty covariance matrix and bogus chi2, etc.
292  return recob::Track(recob::TrackTrajectory(std::move(xyz), std::move(pxpypz), std::move(flags), false),
294 }
295 
296 } // namespace lar_pandora
Header file for the pfo helper class.
std::map< art::Ptr< recob::PFParticle >, ClusterVector > PFParticlesToClusters
LArPandoraTrackCreation & operator=(LArPandoraTrackCreation const &)=delete
static constexpr Flag_t NoPoint
The trajectory point is not defined.
ROOT::Math::SMatrix< Double32_t, 5, 5, ROOT::Math::MatRepSym< Double32_t, 5 > > SMatrixSym55
Definition: TrackingTypes.h:85
Planes which measure V.
Definition: geo_types.h:77
std::vector< art::Ptr< recob::PFParticle > > PFParticleVector
Header file for lar pfo objects.
Declaration of signal hit object.
LArTrackState class.
Definition: LArPfoObjects.h:26
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.
STL namespace.
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 Ncryostats() const
Returns the number of cryostats in the detector.
geo::Length_t WirePitch(geo::PlaneID const &planeid) const
Returns the distance between two consecutive wires.
Planes which measure Y direction.
Definition: geo_types.h:80
unsigned int m_slidingFitHalfWindow
The sliding fit half window.
TFile f
Definition: plotHisto.C:6
ProductID put(std::unique_ptr< PROD > &&product)
Definition: Event.h:102
std::unordered_set< art::Ptr< recob::Hit > > HitSet
Planes which measure U.
Definition: geo_types.h:76
View_t View() const
Which coordinate does this plane measure.
Definition: PlaneGeo.h:171
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
Int_t max
Definition: plot.C:27
unsigned int MaxPlanes() const
Returns the largest number of planes among all TPCs in this detector.
intermediate_table::const_iterator const_iterator
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:42
Provides recob::Track data product.
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.
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.
std::map< art::Ptr< recob::PFParticle >, VertexVector > PFParticlesToVertices
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.
const Double32_t * XYZ() const
Definition: SpacePoint.h:65
std::vector< PointFlags_t > Flags_t
Type of point flag list.
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.
std::vector< art::Ptr< recob::Hit > > HitVector
unsigned int NTPC(unsigned int cstat=0) const
Returns the total number of TPCs in the specified cryostat.
Utility object to perform functions of association.
std::vector< Point_t > Positions_t
Type of trajectory point list.
Definition: TrackingTypes.h:32
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.
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
Definition: Track.h:1035
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
std::map< art::Ptr< recob::PFParticle >, SpacePointVector > PFParticlesToSpacePoints
std::vector< LArTrackState > LArTrackStateVector
Definition: LArPfoObjects.h:64
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
Planes which measure W (third view for Bo, MicroBooNE, etc).
Definition: geo_types.h:78
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:299
TCEvent evt
Definition: DataStructs.cxx:5
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 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 "fitted" track:
Definition: Track.h:52
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
std::vector< art::Ptr< recob::Vertex > > VertexVector