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> );
118 const float wirePitchW(detType->WirePitchW());
121 const art::PtrMaker<recob::Track> makeTrackPtr(
evt);
134 for (
const art::Ptr<recob::PFParticle> pPFParticle : pfParticleVector)
141 PFParticlesToSpacePoints::const_iterator particleToSpacePointIter(pfParticlesToSpacePoints.find(pPFParticle));
143 if (pfParticlesToSpacePoints.end() == particleToSpacePointIter)
145 mf::LogDebug(
"LArPandoraTrackCreation") <<
"No spacepoints associated to particle ";
150 PFParticlesToClusters::const_iterator particleToClustersIter(pfParticlesToClusters.find(pPFParticle));
152 if (pfParticlesToClusters.end() == particleToClustersIter)
154 mf::LogDebug(
"LArPandoraShowerCreation") <<
"No clusters associated to particle ";
159 PFParticlesToVertices::const_iterator particleToVertexIter(pfParticlesToVertices.find(pPFParticle));
161 if ((pfParticlesToVertices.end() == particleToVertexIter) || (1 != particleToVertexIter->second.size()))
163 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Unexpected number of vertices for particle ";
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]));
172 double vertexXYZ[3] = {0., 0., 0.};
173 particleToVertexIter->second.front()->XYZ(vertexXYZ);
174 const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
183 catch (
const pandora::StatusCodeException &)
185 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Unable to extract sliding fit trajectory";
191 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Insufficient input trajectory points to build track: " << trackStateVector.size();
195 HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
201 for (
unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++)
203 hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
204 (
void) hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
207 for (
unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++)
209 if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
210 hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
214 if (trackStateVector.size()>hitsFromSpacePoints.size())
216 throw cet::exception(
"LArPandoraTrackCreation") <<
"trackStateVector.size() is greater than hitsFromSpacePoints.size()";
218 const unsigned int nInvalidPoints = hitsInParticle.size()-trackStateVector.size();
219 for (
unsigned int i=0;i<nInvalidPoints;++i) {
226 art::Ptr<recob::Track> pTrack(makeTrackPtr(outputTracks->size() - 1));
230 util::CreateAssn(*
this,
evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
233 for (
unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++)
235 const art::Ptr<recob::Hit> pHit(hitsInParticle.at(hitIndex));
236 const int index((hitIndex < hitsFromSpacePoints.size()) ? hitIndex : std::numeric_limits<int>::max());
238 outputTracksToHitsWithMeta->addSingle(pTrack, pHit, metadata);
242 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Number of new tracks: " << outputTracks->size() << std::endl;
244 evt.put(std::move(outputTracks));
245 evt.put(std::move(outputTracksToHits));
246 evt.put(std::move(outputTracksToHitsWithMeta));
247 evt.put(std::move(outputParticlesToTracks));
std::unordered_set< art::Ptr< recob::Hit > > HitSet
std::map< art::Ptr< recob::PFParticle >, ClusterVector > PFParticlesToClusters
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.
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.
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
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.