38 #include "art_root_io/TFileService.h" 78 Name(
"ProjectionMatchingAlg")};
89 Name(
"SaveOnlyBranchingVtx"),
90 Comment(
"use true to save only vertices interconnecting many tracks, otherwise vertex is " 91 "added to the front of each track")};
95 Comment(
"save track nodes (only for algorithm development purposes)")};
98 Name(
"HitModuleLabel"),
99 Comment(
"tag of unclustered hits, which were used to validate tracks")};
102 Comment(
"tag of recob::Wire producer.")};
105 Name(
"ClusterModuleLabel"),
106 Comment(
"tag of cluster collection, these clusters are used for track building")};
109 Name(
"EmClusterModuleLabel"),
110 Comment(
"EM-like clusters, will be excluded from tracking if provided")};
182 produces<std::vector<recob::Track>>();
183 produces<std::vector<recob::SpacePoint>>();
184 produces<std::vector<recob::Vertex>>();
185 produces<std::vector<recob::Vertex>>(
kKinksName);
186 produces<std::vector<recob::Vertex>>(
kNodesName);
187 produces<std::vector<anab::T0>>();
188 produces<std::vector<anab::CosmicTag>>();
192 produces<art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta>>();
194 produces<art::Assns<recob::Track, recob::SpacePoint>>();
195 produces<art::Assns<recob::SpacePoint, recob::Hit>>();
199 produces<art::Assns<recob::Track, recob::Vertex>>(
kKinksName);
200 produces<art::Assns<recob::Track, anab::T0>>();
201 produces<art::Assns<recob::Track, anab::CosmicTag>>();
203 produces<std::vector<recob::PFParticle>>();
204 produces<art::Assns<recob::PFParticle, recob::Cluster>>();
205 produces<art::Assns<recob::PFParticle, recob::Vertex>>();
206 produces<art::Assns<recob::PFParticle, recob::Track>>();
212 std::ostringstream ss1;
213 ss1 <<
"adc_plane_" <<
p;
215 (ss1.str() +
"_passing").c_str(),
"max adc around the point on track", 100., 0., 5.));
217 (ss1.str() +
"_rejected").c_str(),
"max adc around spurious point ", 100., 0., 5.));
231 int trkLikeIdx = hitResults->getIndex(
"track");
232 int emLikeIdx = hitResults->getIndex(
"em");
233 if ((trkLikeIdx < 0) || (emLikeIdx < 0)) {
235 <<
"No em/track labeled columns in MVA data products." <<
std::endl;
238 size_t nh[3] = {0, 0, 0};
239 for (
size_t hidx = 0; hidx < trk.
size(); ++hidx) {
240 ++nh[trk[hidx]->View2D()];
243 size_t best_view = 2;
244 if ((nh[0] >= nh[1]) && (nh[0] > 1.25 * nh[2])) best_view = 0;
245 if ((nh[1] >= nh[0]) && (nh[1] > 1.25 * nh[2])) best_view = 1;
247 std::vector<art::Ptr<recob::Hit>> trkHitPtrList;
248 trkHitPtrList.reserve(nh[best_view]);
249 for (
size_t hidx = 0; hidx < trk.
size(); ++hidx) {
250 if (trk[hidx]->View2D() == best_view) {
251 trkHitPtrList.emplace_back(trk[hidx]->Hit2DPtr());
254 auto vout = hitResults->getOutput(trkHitPtrList);
255 double trk_like = -1, trk_or_em = vout[trkLikeIdx] + vout[emLikeIdx];
257 trk_like = vout[trkLikeIdx] / trk_or_em;
272 if (!cluResults) {
return false; }
274 int trkLikeIdx = cluResults->getIndex(
"track");
275 int emLikeIdx = cluResults->getIndex(
"em");
276 if ((trkLikeIdx < 0) || (emLikeIdx < 0)) {
return false; }
278 const art::FindManyP<recob::Hit> hitsFromClusters(
279 cluResults->dataHandle(),
evt, cluResults->dataTag());
280 const auto& cnnOuts = cluResults->outputs();
281 std::vector<float> trackLike(cnnOuts.size());
282 for (
size_t i = 0; i < cnnOuts.size(); ++i) {
283 double trkOrEm = cnnOuts[i][trkLikeIdx] + cnnOuts[i][emLikeIdx];
284 if (trkOrEm > 0) { trackLike[i] = cnnOuts[i][trkLikeIdx] / trkOrEm; }
289 pmalgTracker.
init(hitsFromClusters, trackLike);
293 std::vector<anab::CosmicTagID_t>
296 std::vector<anab::CosmicTagID_t> anabTags;
332 auto tracks = std::make_unique<std::vector<recob::Track>>();
333 auto allsp = std::make_unique<std::vector<recob::SpacePoint>>();
334 auto vtxs = std::make_unique<std::vector<recob::Vertex>>();
335 auto kinks = std::make_unique<
336 std::vector<recob::Vertex>>();
337 auto nodes = std::make_unique<std::vector<recob::Vertex>>();
338 auto t0s = std::make_unique<std::vector<anab::T0>>();
339 auto cosmicTags = std::make_unique<std::vector<anab::CosmicTag>>();
341 auto trk2hit_oldway = std::make_unique<
344 auto trk2hit = std::make_unique<art::Assns<recob::Track, recob::Hit, recob::TrackHitMeta>>();
346 auto trk2sp = std::make_unique<art::Assns<recob::Track, recob::SpacePoint>>();
347 auto trk2t0 = std::make_unique<art::Assns<recob::Track, anab::T0>>();
348 auto trk2ct = std::make_unique<art::Assns<recob::Track, anab::CosmicTag>>();
350 auto sp2hit = std::make_unique<art::Assns<recob::SpacePoint, recob::Hit>>();
351 auto vtx2trk = std::make_unique<
355 std::make_unique<art::Assns<recob::Track, recob::Vertex>>();
357 auto pfps = std::make_unique<std::vector<recob::PFParticle>>();
359 auto pfp2clu = std::make_unique<art::Assns<recob::PFParticle, recob::Cluster>>();
360 auto pfp2vtx = std::make_unique<art::Assns<recob::PFParticle, recob::Vertex>>();
361 auto pfp2trk = std::make_unique<art::Assns<recob::PFParticle, recob::Track>>();
366 std::vector<art::Ptr<recob::Hit>> allhitlist;
380 size_t mvaLength = 0;
386 art::FindManyP<recob::Hit> hitsFromClusters(cluListHandle, evt,
fCluModuleLabel);
387 art::FindManyP<recob::Hit> hitsFromEmParts(splitCluHandle, evt,
fEmModuleLabel);
388 pmalgTracker.init(hitsFromClusters, hitsFromEmParts);
393 if (init<4>(evt, pmalgTracker)) { mvaLength = 4; }
394 else if (init<3>(evt, pmalgTracker)) {
397 else if (init<2>(evt, pmalgTracker)) {
407 art::FindManyP<recob::Hit> hitsFromClusters(cluListHandle, evt,
fCluModuleLabel);
408 pmalgTracker.init(hitsFromClusters);
415 int retCode = pmalgTracker.build(clockData, detProp);
424 else if (retCode == 1)
432 auto const&
result = pmalgTracker.result();
435 size_t spStart = 0, spEnd = 0;
436 double sp_pos[3], sp_err[6];
437 for (
size_t i = 0; i < 3; ++i)
439 for (
size_t i = 0; i < 6; ++i)
450 for (
size_t trkIndex = 0; trkIndex <
result.
size(); ++trkIndex) {
478 if (trk->
size() < 2)
continue;
482 pdg = getPdgFromCnnOnHits<4>(
evt, *(
result[trkIndex].Track()));
483 else if (mvaLength == 3)
484 pdg = getPdgFromCnnOnHits<3>(
evt, *(
result[trkIndex].Track()));
485 else if (mvaLength == 2)
486 pdg = getPdgFromCnnOnHits<2>(
evt, *(
result[trkIndex].Track()));
491 auto const trkPtr = make_trkptr(
tracks->size() - 1);
497 auto const t0Ptr = make_t0ptr(t0s->size() - 1);
498 trk2t0->addSingle(trkPtr, t0Ptr);
504 std::vector<float> trkEnd0;
505 std::vector<float> trkEnd1;
511 for (
int i = 0; i < 3; ++i) {
515 if (i == driftDir) { shift = trk->
Nodes()[0]->GetDriftShift(); }
516 trkEnd0.push_back(trk->
Nodes()[0]->Point3D()[i] - shift);
517 trkEnd1.push_back(trk->
Nodes()[trk->
Nodes().size() - 1]->Point3D()[i] - shift);
522 for (
const auto t : tags) {
523 cosmicTags->emplace_back(trkEnd0, trkEnd1, 1,
t);
524 auto const cosmicPtr = make_ctptr(cosmicTags->size() - 1);
525 trk2ct->addSingle(trkPtr, cosmicPtr);
530 for (
size_t h = 0, cnt = 0;
h < trk->
size();
h++) {
536 trk2hit_oldway->addSingle(
541 spStart = allsp->
size();
543 for (
size_t h = 0;
h < trk->
size(); ++
h) {
551 if ((
h == 0) || (std::fabs(sp_pos[0] - hx) > 1.0
e-5) ||
552 (std::fabs(sp_pos[1] - hy) > 1.0
e-5) || (std::fabs(sp_pos[2] - hz) > 1.0
e-5)) {
570 spEnd = allsp->size();
575 auto vsel = pmalgTracker.getVertices(
577 auto ksel = pmalgTracker.getKinks();
578 std::map<size_t, art::Ptr<recob::Vertex>> frontVtxs;
583 for (
auto const& v : vsel) {
584 xyz[0] = v.first.X();
585 xyz[1] = v.first.Y();
586 xyz[2] = v.first.Z();
587 mf::LogVerbatim(
"Summary") <<
" vtx:" << xyz[0] <<
":" << xyz[1] <<
":" << xyz[2]
588 <<
" (" << v.second.size() <<
" tracks)";
590 size_t vidx = vtxs->size();
591 vtxs->push_back(recob::Vertex(xyz, vidx));
593 auto const vptr = make_vtxptr(vidx);
594 if (!v.second.empty()) {
595 for (
const auto& vEntry : v.second) {
596 size_t tidx = vEntry.first;
597 bool isFront = vEntry.second;
599 if (isFront) frontVtxs[tidx] = vptr;
601 auto const tptr = make_trkptr(tidx);
602 vtx2trk->addSingle(vptr, tptr);
606 mf::LogWarning(
"PMAlgTrackMaker") <<
"No tracks found at this vertex.";
610 for (
auto const&
k : ksel) {
611 xyz[0] =
k.first.X();
612 xyz[1] =
k.first.Y();
613 xyz[2] =
k.first.Z();
614 mf::LogVerbatim(
"Summary") <<
" kink:" << xyz[0] <<
":" << xyz[1] <<
":" << xyz[2];
616 size_t kidx = kinks->size();
617 size_t tidx =
k.second;
620 recob::Vertex(xyz, tidx));
622 auto const tptr = make_trkptr(tidx);
623 auto const kptr = make_kinkptr(kidx);
624 trk2kink->addSingle(tptr, kptr);
633 for (
auto const* node :
trk.Nodes()) {
634 xyz[0] = node->Point3D().X();
635 xyz[1] = node->Point3D().Y();
636 xyz[2] = node->Point3D().Z();
637 nodes->push_back(recob::Vertex(xyz,
t));
644 if (
result[
t].Parent() >= 0) parentIdx = (
size_t)
result[
t].Parent();
646 std::vector<size_t> daughterIdxs;
647 for (
size_t idx :
result[
t].Daughters()) {
648 daughterIdxs.push_back(idx);
651 size_t pfpidx = pfps->size();
652 pfps->emplace_back((*
tracks)[
t].ParticleId(), pfpidx, parentIdx, daughterIdxs);
654 auto const pfpptr = make_pfpptr(pfpidx);
655 auto const tptr = make_trkptr(
t);
656 pfp2trk->addSingle(pfpptr, tptr);
662 pfp2vtx->addSingle(pfpptr, vptr);
664 mf::LogWarning(
"PMAlgTrackMaker") <<
"Front vertex for PFParticle is missing.";
668 <<
" PFParticles created for reconstructed tracks.";
671 std::vector<size_t> daughterIdxs;
672 for (
size_t idx :
result.parents()[
t].Daughters()) {
673 daughterIdxs.push_back(idx);
676 size_t pfpidx = pfps->size();
678 pfps->emplace_back(0, pfpidx, parentIdx, daughterIdxs);
682 auto const pfpptr = make_pfpptr(pfpidx);
684 frontVtxs[daughterIdxs.front()];
686 pfp2vtx->addSingle(pfpptr, vptr);
688 mf::LogWarning(
"PMAlgTrackMaker") <<
"Front vertex for PFParticle is missing.";
691 mf::LogVerbatim(
"Summary") << pfps->size() <<
" PFParticles created in total.";
PMAlgTrackMaker & operator=(PMAlgTrackMaker const &)=delete
bool SelectHits(float fraction=1.0F)
MaybeLogger_< ELseverityLevel::ELsev_info, true > LogVerbatim
bool HasPlane(unsigned int iplane) const
Returns whether a plane with index iplane is present in this TPC.
static const std::string kKinksName
void produce(art::Event &e) override
recob::Track convertFrom(const pma::Track3D &src, unsigned int tidx, int pdg=0)
fhicl::Atom< art::InputTag > EmClusterModuleLabel
static constexpr size_t kPFParticlePrimary
Define index to signify primary particle.
fhicl::Atom< art::InputTag > WireModuleLabel
bool IsEnabled() const noexcept
fhicl::Atom< art::InputTag > HitModuleLabel
fhicl::Table< pma::PMAlgVertexing::Config > PMAlgVertexing
EDProducer(fhicl::ParameterSet const &pset)
Planes which measure X direction.
fhicl::Table< pma::PMAlgCosmicTagger::Config > PMAlgCosmicTagging
fhicl::Atom< bool > SavePmaNodes
fhicl::Table< pma::ProjectionMatchingAlg::Config > ProjectionMatchingAlg
ChannelGroupService::Name Name
void produces(std::string const &instanceName={}, Persistable const persistable=Persistable::Yes)
fhicl::Atom< std::string > Validation
fhicl::Atom< art::InputTag > ClusterModuleLabel
TVector3 const & Point3D() const
Planes which measure Z direction.
fhicl::Atom< bool > RunVertexing
MaybeLogger_< ELseverityLevel::ELsev_error, false > LogError
Planes which measure Y direction.
std::vector< anab::CosmicTagID_t > getCosmicTag(const pma::Track3D::ETag pmaTag) const
art framework interface to geometry description
geo::GeometryCore const * fGeom
pma::PMAlgStitching::Config fPmaStitchConfig
unsigned int MaxPlanes() const
Returns the largest number of planes among all TPCs in this detector.
#define DEFINE_ART_MODULE(klass)
pma::ProjectionMatchingAlg::Config fPmaConfig
void push_back(Ptr< U > const &p)
bool HasTagFlag(ETag value) const noexcept
pma::PMAlgVertexing::Config fPmaVtxConfig
int getPdgFromCnnOnHits(const art::Event &evt, const pma::Track3D &trk) const
art::InputTag fCluModuleLabel
bool isNull() const noexcept
ValidHandle< PROD > getValidHandle(InputTag const &tag) const
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.
unsigned int FrontTPC() const
unsigned int FrontCryo() const
pma::PMAlgCosmicTagger::Config fPmaTaggingConfig
Description of geometry of one entire detector.
ETag GetTag() const noexcept
art::InputTag fHitModuleLabel
size_t CompleteMissingWires(detinfo::DetectorPropertiesData const &detProp, unsigned int view)
Declaration of signal hit object.
std::map< size_t, std::vector< double > > dedx_map
fhicl::Atom< float > TrackLikeThreshold
double GetRawdEdxSequence(std::map< size_t, std::vector< double >> &dedx, unsigned int view=geo::kZ, unsigned int skip=0, bool inclDisabled=false) const
void init(const art::FindManyP< recob::Hit > &hitsFromClusters)
double Dx() const noexcept
bool HasT0() const noexcept
fhicl::Table< pma::PMAlgTracker::Config > PMAlgTracking
bool init(const art::Event &evt, pma::PMAlgTracker &pmalgTracker) const
art::InputTag fEmModuleLabel
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
Provides recob::Track data product.
fhicl::Table< pma::PMAlgStitching::Config > PMAlgStitching
art::InputTag fWireModuleLabel
art::Ptr< recob::Hit > const & Hit2DPtr() const
std::vector< TH1F * > fAdcInRejectedPoints
bool fSaveOnlyBranchingVtx
boost::graph_traits< ModuleGraph >::vertex_descriptor Vertex
TrackCollectionProxyElement< TrackCollProxy > Track
Proxy to an element of a proxy collection of recob::Track objects.
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
std::vector< pma::Node3D * > const & Nodes() const noexcept
pma::PMAlgTracker::Config fPmaTrackerConfig
2D representation of charge deposited in the TDC/wire plane
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
PMAlgTrackMaker(Parameters const &config)
static std::unique_ptr< MVAReader > create(const art::Event &evt, const art::InputTag &tag)
std::vector< TH1F * > fAdcInPassingPoints
cet::coded_exception< error, detail::translate > exception
QTextStream & endl(QTextStream &s)
Encapsulate the construction of a single detector plane.
fhicl::Atom< bool > SaveOnlyBranchingVtx
static const std::string kNodesName