9 #include "art/Framework/Core/EDProducer.h"
10 #include "art/Framework/Core/ModuleMacros.h"
11 #include "art/Framework/Principal/Event.h"
13 #include "fhiclcpp/ParameterSet.h"
60 #include "art/Framework/Principal/Handle.h"
61 #include "art/Framework/Principal/Run.h"
62 #include "art/Framework/Principal/SubRun.h"
64 #include "art/Persistency/Common/PtrMaker.h"
66 #include "canvas/Utilities/InputTag.h"
77 #include "messagefacility/MessageLogger/MessageLogger.h"
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))
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> >();
103 if (m_minTrajectoryPoints<2)
throw cet::exception(
"LArPandoraTrackCreation") <<
"MinTrajectoryPoints should not be smaller than 2!";
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));
229 util::CreateAssn(*
this, evt, pTrack, pPFParticle, *(outputParticlesToTracks.get()));
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));
254 if (trackStateVector.empty())
255 throw cet::exception(
"LArPandoraTrackCreation") <<
"BuildTrack - No input trajectory points provided ";
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()));
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())
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
ROOT::Math::SMatrix< Double32_t, 5, 5, ROOT::Math::MatRepSym< Double32_t, 5 > > SMatrixSym55
Header file for lar pfo objects.
Declaration of signal hit object.
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.
void produce(art::Event &evt) override
constexpr int kBogusI
obviously bogus integer value
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.
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 ...
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.
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.
virtual float WirePitchW() const =0
The wire pitch of the mapped W view.
std::vector< Vector_t > Momenta_t
Type of momentum list.
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.
Provides recob::Track data product.
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
std::vector< Point_t > Positions_t
Type of trajectory point list.
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
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
std::vector< LArTrackState > LArTrackStateVector
unsigned int m_minTrajectoryPoints
The minimum number of trajectory points.
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...
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)
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: