All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Member Functions | Private Attributes | List of all members
lar_pandora::LArPandoraTrackCreation Class Reference
Inheritance diagram for lar_pandora::LArPandoraTrackCreation:

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
 

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 26 of file LArPandoraTrackCreation_module.cc.

Constructor & Destructor Documentation

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

Definition at line 91 of file LArPandoraTrackCreation_module.cc.

91  :
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 }
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.
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 252 of file LArPandoraTrackCreation_module.cc.

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 }
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
LArTrackState class.
Definition: LArPfoObjects.h:29
constexpr int kBogusI
obviously bogus integer value
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
A trajectory in space reconstructed from hits.
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.
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:32
constexpr float kBogusF
obviously bogus float value
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
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
Set of flags pertaining a point of the track.
LArPandoraTrackCreation& lar_pandora::LArPandoraTrackCreation::operator= ( LArPandoraTrackCreation const &  )
delete
LArPandoraTrackCreation& lar_pandora::LArPandoraTrackCreation::operator= ( LArPandoraTrackCreation &&  )
delete
void lar_pandora::LArPandoraTrackCreation::produce ( art::Event &  evt)
override

Definition at line 109 of file LArPandoraTrackCreation_module.cc.

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 
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;
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 }
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.
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.
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.
j template void())
Definition: json.hpp:3108
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
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.
TCEvent evt
Definition: DataStructs.cxx:8

Member Data Documentation

unsigned int lar_pandora::LArPandoraTrackCreation::m_minTrajectoryPoints
private

The minimum number of trajectory points.

Definition at line 48 of file LArPandoraTrackCreation_module.cc.

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

The pf particle label.

Definition at line 47 of file LArPandoraTrackCreation_module.cc.

unsigned int lar_pandora::LArPandoraTrackCreation::m_slidingFitHalfWindow
private

The sliding fit half window.

Definition at line 49 of file LArPandoraTrackCreation_module.cc.

bool lar_pandora::LArPandoraTrackCreation::m_useAllParticles
private

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

Definition at line 50 of file LArPandoraTrackCreation_module.cc.


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