109 std::unique_ptr< std::vector<recob::Track> > outputTracks(
new std::vector<recob::Track> );
116 const float wirePitchW(detType->WirePitchW());
141 if (pfParticlesToSpacePoints.end() == particleToSpacePointIter)
143 mf::LogDebug(
"LArPandoraTrackCreation") <<
"No spacepoints associated to particle ";
150 if (pfParticlesToClusters.end() == particleToClustersIter)
152 mf::LogDebug(
"LArPandoraShowerCreation") <<
"No clusters associated to particle ";
159 if ((pfParticlesToVertices.end() == particleToVertexIter) || (1 != particleToVertexIter->second.size()))
161 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Unexpected number of vertices for particle ";
166 pandora::CartesianPointVector cartesianPointVector;
168 cartesianPointVector.emplace_back(pandora::CartesianVector(spacePoint->
XYZ()[0], spacePoint->
XYZ()[1], spacePoint->
XYZ()[2]));
170 double vertexXYZ[3] = {0., 0., 0.};
171 particleToVertexIter->second.front()->XYZ(vertexXYZ);
172 const pandora::CartesianVector vertexPosition(vertexXYZ[0], vertexXYZ[1], vertexXYZ[2]);
181 catch (
const pandora::StatusCodeException &)
183 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Unable to extract sliding fit trajectory";
189 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Insufficient input trajectory points to build track: " << trackStateVector.size();
193 HitVector hitsFromSpacePoints, hitsFromClusters, hitsInParticle;
199 for (
unsigned int hitIndex = 0; hitIndex < hitsFromSpacePoints.size(); hitIndex++)
201 hitsInParticle.push_back(hitsFromSpacePoints.at(hitIndex));
202 (void) hitsInParticleSet.insert(hitsFromSpacePoints.at(hitIndex));
205 for (
unsigned int hitIndex = 0; hitIndex < hitsFromClusters.size(); hitIndex++)
207 if (hitsInParticleSet.count(hitsFromClusters.at(hitIndex)) == 0)
208 hitsInParticle.push_back(hitsFromClusters.at(hitIndex));
212 if (trackStateVector.size()>hitsFromSpacePoints.size())
214 throw cet::exception(
"LArPandoraTrackCreation") <<
"trackStateVector.size() is greater than hitsFromSpacePoints.size()";
216 const unsigned int nInvalidPoints = hitsInParticle.size()-trackStateVector.size();
217 for (
unsigned int i=0;i<nInvalidPoints;++i) {
227 util::CreateAssn(*
this, evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
228 util::CreateAssn(*
this, evt, *(outputTracks.get()), hitsInParticle, *(outputTracksToHits.get()));
231 for (
unsigned int hitIndex = 0; hitIndex < hitsInParticle.size(); hitIndex++)
236 outputTracksToHitsWithMeta->addSingle(pTrack, pHit,
metadata);
240 mf::LogDebug(
"LArPandoraTrackCreation") <<
"Number of new tracks: " << outputTracks->size() <<
std::endl;
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.
ProductID put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
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::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.
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
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.
const Double32_t * XYZ() const
std::vector< art::Ptr< recob::Vertex > > VertexVector
std::vector< LArTrackState > LArTrackStateVector
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
cet::coded_exception< error, detail::translate > exception
QTextStream & endl(QTextStream &s)