LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
ShowerReco3D Class Reference
Inheritance diagram for ShowerReco3D:
art::EDProducer art::detail::Producer art::detail::LegacyModule art::Modifier art::ModuleBase art::ProductRegistryHelper

Public Types

using ModuleType = EDProducer
 
template<typename UserConfig , typename KeysToIgnore = void>
using Table = Modifier::Table< UserConfig, KeysToIgnore >
 

Public Member Functions

 ShowerReco3D (fhicl::ParameterSet const &p)
 
 ShowerReco3D (ShowerReco3D const &)=delete
 
 ShowerReco3D (ShowerReco3D &&)=delete
 
ShowerReco3Doperator= (ShowerReco3D const &)=delete
 
ShowerReco3Doperator= (ShowerReco3D &&)=delete
 
void doBeginJob (SharedResources const &resources)
 
void doEndJob ()
 
void doRespondToOpenInputFile (FileBlock const &fb)
 
void doRespondToCloseInputFile (FileBlock const &fb)
 
void doRespondToOpenOutputFiles (FileBlock const &fb)
 
void doRespondToCloseOutputFiles (FileBlock const &fb)
 
bool doBeginRun (RunPrincipal &rp, ModuleContext const &mc)
 
bool doEndRun (RunPrincipal &rp, ModuleContext const &mc)
 
bool doBeginSubRun (SubRunPrincipal &srp, ModuleContext const &mc)
 
bool doEndSubRun (SubRunPrincipal &srp, ModuleContext const &mc)
 
bool doEvent (EventPrincipal &ep, ModuleContext const &mc, std::atomic< std::size_t > &counts_run, std::atomic< std::size_t > &counts_passed, std::atomic< std::size_t > &counts_failed)
 
void fillProductDescriptions ()
 
void registerProducts (ProductDescriptions &productsToRegister)
 
ModuleDescription const & moduleDescription () const
 
void setModuleDescription (ModuleDescription const &)
 
std::array< std::vector< ProductInfo >, NumBranchTypes > const & getConsumables () const
 
void sortConsumables (std::string const &current_process_name)
 
std::unique_ptr< Worker > makeWorker (WorkerParams const &wp)
 
template<typename T , BranchType BT>
ViewToken< T > consumesView (InputTag const &tag)
 
template<typename T , BranchType BT>
ViewToken< T > mayConsumeView (InputTag const &tag)
 

Protected Member Functions

ConsumesCollector & consumesCollector ()
 
template<typename T , BranchType = InEvent>
ProductToken< T > consumes (InputTag const &)
 
template<typename Element , BranchType = InEvent>
ViewToken< Element > consumesView (InputTag const &)
 
template<typename T , BranchType = InEvent>
void consumesMany ()
 
template<typename T , BranchType = InEvent>
ProductToken< T > mayConsume (InputTag const &)
 
template<typename Element , BranchType = InEvent>
ViewToken< Element > mayConsumeView (InputTag const &)
 
template<typename T , BranchType = InEvent>
void mayConsumeMany ()
 

Private Member Functions

void produce (art::Event &e) override
 

Private Attributes

bool fUsePFParticle
 
std::string fInputProducer
 
::showerreco::ShowerRecoManager fManager
 
::showerreco::ShowerRecoAlgfShowerAlgo
 
::calo::CalorimetryAlgfCaloAlgo
 
::cmtool::CPAlgoArrayfCPAlgoArray
 
::cmtool::CPAlgoNHitsfCPAlgoNHits
 
::cmtool::CPAlgoIgnoreTracksfCPAlgoIgnoreTracks
 
::cmtool::CFAlgoTimeOverlapfCFAlgoTimeOverlap
 

Detailed Description

Definition at line 42 of file ShowerReco3D_module.cc.

Member Typedef Documentation

Definition at line 17 of file EDProducer.h.

template<typename UserConfig , typename KeysToIgnore = void>
using art::detail::Producer::Table = Modifier::Table<UserConfig, KeysToIgnore>
inherited

Definition at line 26 of file Producer.h.

Constructor & Destructor Documentation

ShowerReco3D::ShowerReco3D ( fhicl::ParameterSet const &  p)
explicit

Definition at line 70 of file ShowerReco3D_module.cc.

References cmtool::CPAlgoArray::AddAlgo(), cmtool::CMatchManager::AddMatchAlgo(), cmtool::CMManagerBase::AddPriorityAlgo(), showerreco::ShowerRecoManager::Algo(), showerreco::ShowerRecoAlg::CaloAlgo(), fCaloAlgo, fCFAlgoTimeOverlap, fCPAlgoArray, fCPAlgoIgnoreTracks, fCPAlgoNHits, fInputProducer, fManager, fShowerAlgo, fUsePFParticle, showerreco::ShowerRecoManager::MatchManager(), showerreco::ShowerRecoAlg::setEcorrection(), cmtool::CPAlgoNHits::SetMinHits(), showerreco::ShowerRecoAlg::SetUseArea(), and showerreco::ShowerRecoAlg::Verbose().

70  : EDProducer{p}
71 {
72  fInputProducer = p.get<std::string>("InputProducer");
73  fUsePFParticle = p.get<bool>("UsePFParticle");
74  produces<std::vector<recob::Shower>>();
75  produces<art::Assns<recob::Shower, recob::Cluster>>();
76  produces<art::Assns<recob::Shower, recob::Hit>>();
77  if (fUsePFParticle) produces<art::Assns<recob::PFParticle, recob::Shower>>();
78 
79  // Instantiate algorithms
80  fCaloAlgo = new ::calo::CalorimetryAlg(p.get<fhicl::ParameterSet>("CalorimetryAlg"));
81  fShowerAlgo = new ::showerreco::ShowerRecoAlg;
82  fCPAlgoArray = new ::cmtool::CPAlgoArray;
83  fCPAlgoNHits = new ::cmtool::CPAlgoNHits;
84  fCPAlgoIgnoreTracks = new ::cmtool::CPAlgoIgnoreTracks;
85  fCFAlgoTimeOverlap = new ::cmtool::CFAlgoTimeOverlap;
86 
87  // Configure
88  fCPAlgoNHits->SetMinHits(p.get<int>("MinHits"));
89 
92 
95 
96  fShowerAlgo->Verbose(p.get<bool>("Verbosity"));
97  fShowerAlgo->SetUseArea(p.get<bool>("UseArea"));
98  fShowerAlgo->setEcorrection(p.get<bool>("ApplyMCEnergyCorrection"));
99  fShowerAlgo->CaloAlgo(fCaloAlgo);
100 
102 }
void Algo(ShowerRecoAlgBase *alg)
::calo::CalorimetryAlg * fCaloAlgo
::cmtool::CPAlgoArray * fCPAlgoArray
::showerreco::ShowerRecoManager fManager
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
void AddAlgo(CPriorityAlgoBase *algo)
Setter to add a new algorithm.
Definition: CPAlgoArray.h:62
void SetMinHits(size_t n)
Setter for minimum # hits.
Definition: CPAlgoNHits.h:41
::cmtool::CFAlgoTimeOverlap * fCFAlgoTimeOverlap
void AddMatchAlgo(CFloatAlgoBase *algo)
A simple method to add an algorithm for merging.
Definition: CMatchManager.h:46
void CaloAlgo(calo::CalorimetryAlg *alg)
Definition: ShowerRecoAlg.h:27
std::string fInputProducer
void setEcorrection(bool on)
Function to set whether to use E correction.
Definition: ShowerRecoAlg.h:30
void SetUseArea(bool on)
Function to decide if to use Area or Pulse Amplitude for calculations.
Definition: ShowerRecoAlg.h:23
::cmtool::CMatchManager & MatchManager()
void Verbose(bool verbose)
Definition: ShowerRecoAlg.h:25
::cmtool::CPAlgoIgnoreTracks * fCPAlgoIgnoreTracks
::showerreco::ShowerRecoAlg * fShowerAlgo
::cmtool::CPAlgoNHits * fCPAlgoNHits
void AddPriorityAlgo(CPriorityAlgoBase *algo)
Setter to add an algorithm for priority determination.
Definition: CMManagerBase.h:71
ShowerReco3D::ShowerReco3D ( ShowerReco3D const &  )
delete
ShowerReco3D::ShowerReco3D ( ShowerReco3D &&  )
delete

Member Function Documentation

template<typename T , BranchType BT>
ProductToken< T > art::ModuleBase::consumes ( InputTag const &  tag)
protectedinherited

Definition at line 61 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumes().

62  {
63  return collector_.consumes<T, BT>(tag);
64  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ProductToken< T > consumes(InputTag const &)
ConsumesCollector & art::ModuleBase::consumesCollector ( )
protectedinherited

Definition at line 57 of file ModuleBase.cc.

References art::ModuleBase::collector_.

58  {
59  return collector_;
60  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename T , BranchType BT>
void art::ModuleBase::consumesMany ( )
protectedinherited

Definition at line 75 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumesMany().

76  {
77  collector_.consumesMany<T, BT>();
78  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename Element , BranchType = InEvent>
ViewToken<Element> art::ModuleBase::consumesView ( InputTag const &  )
protectedinherited
template<typename T , BranchType BT>
ViewToken<T> art::ModuleBase::consumesView ( InputTag const &  tag)
inherited

Definition at line 68 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::consumesView().

69  {
70  return collector_.consumesView<T, BT>(tag);
71  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ViewToken< Element > consumesView(InputTag const &)
void art::detail::Producer::doBeginJob ( SharedResources const &  resources)
inherited

Definition at line 22 of file Producer.cc.

References art::detail::Producer::beginJobWithFrame(), and art::detail::Producer::setupQueues().

23  {
24  setupQueues(resources);
25  ProcessingFrame const frame{ScheduleID{}};
26  beginJobWithFrame(frame);
27  }
virtual void setupQueues(SharedResources const &)=0
virtual void beginJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Producer::doBeginRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 65 of file Producer.cc.

References art::detail::Producer::beginRunWithFrame(), art::RangeSet::forRun(), art::RunPrincipal::makeRun(), r, art::RunPrincipal::runID(), and art::ModuleContext::scheduleID().

66  {
67  auto r = rp.makeRun(mc, RangeSet::forRun(rp.runID()));
68  ProcessingFrame const frame{mc.scheduleID()};
69  beginRunWithFrame(r, frame);
70  r.commitProducts();
71  return true;
72  }
TRandom r
Definition: spectrum.C:23
virtual void beginRunWithFrame(Run &, ProcessingFrame const &)=0
static RangeSet forRun(RunID)
Definition: RangeSet.cc:51
bool art::detail::Producer::doBeginSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 85 of file Producer.cc.

References art::detail::Producer::beginSubRunWithFrame(), art::RangeSet::forSubRun(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::SubRunPrincipal::subRunID().

86  {
87  auto sr = srp.makeSubRun(mc, RangeSet::forSubRun(srp.subRunID()));
88  ProcessingFrame const frame{mc.scheduleID()};
89  beginSubRunWithFrame(sr, frame);
90  sr.commitProducts();
91  return true;
92  }
virtual void beginSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
static RangeSet forSubRun(SubRunID)
Definition: RangeSet.cc:57
void art::detail::Producer::doEndJob ( )
inherited

Definition at line 30 of file Producer.cc.

References art::detail::Producer::endJobWithFrame().

31  {
32  ProcessingFrame const frame{ScheduleID{}};
33  endJobWithFrame(frame);
34  }
virtual void endJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Producer::doEndRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 75 of file Producer.cc.

References art::detail::Producer::endRunWithFrame(), art::RunPrincipal::makeRun(), r, art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

76  {
77  auto r = rp.makeRun(mc, rp.seenRanges());
78  ProcessingFrame const frame{mc.scheduleID()};
79  endRunWithFrame(r, frame);
80  r.commitProducts();
81  return true;
82  }
TRandom r
Definition: spectrum.C:23
virtual void endRunWithFrame(Run &, ProcessingFrame const &)=0
bool art::detail::Producer::doEndSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 95 of file Producer.cc.

References art::detail::Producer::endSubRunWithFrame(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

96  {
97  auto sr = srp.makeSubRun(mc, srp.seenRanges());
98  ProcessingFrame const frame{mc.scheduleID()};
99  endSubRunWithFrame(sr, frame);
100  sr.commitProducts();
101  return true;
102  }
virtual void endSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
bool art::detail::Producer::doEvent ( EventPrincipal ep,
ModuleContext const &  mc,
std::atomic< std::size_t > &  counts_run,
std::atomic< std::size_t > &  counts_passed,
std::atomic< std::size_t > &  counts_failed 
)
inherited

Definition at line 105 of file Producer.cc.

References art::detail::Producer::checkPutProducts_, e, art::EventPrincipal::makeEvent(), art::detail::Producer::produceWithFrame(), and art::ModuleContext::scheduleID().

110  {
111  auto e = ep.makeEvent(mc);
112  ++counts_run;
113  ProcessingFrame const frame{mc.scheduleID()};
114  produceWithFrame(e, frame);
115  e.commitProducts(checkPutProducts_, &expectedProducts<InEvent>());
116  ++counts_passed;
117  return true;
118  }
bool const checkPutProducts_
Definition: Producer.h:70
Float_t e
Definition: plot.C:35
virtual void produceWithFrame(Event &, ProcessingFrame const &)=0
void art::detail::Producer::doRespondToCloseInputFile ( FileBlock const &  fb)
inherited

Definition at line 44 of file Producer.cc.

References art::detail::Producer::respondToCloseInputFileWithFrame().

45  {
46  ProcessingFrame const frame{ScheduleID{}};
48  }
virtual void respondToCloseInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToCloseOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 58 of file Producer.cc.

References art::detail::Producer::respondToCloseOutputFilesWithFrame().

59  {
60  ProcessingFrame const frame{ScheduleID{}};
62  }
virtual void respondToCloseOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToOpenInputFile ( FileBlock const &  fb)
inherited

Definition at line 37 of file Producer.cc.

References art::detail::Producer::respondToOpenInputFileWithFrame().

38  {
39  ProcessingFrame const frame{ScheduleID{}};
41  }
virtual void respondToOpenInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::detail::Producer::doRespondToOpenOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 51 of file Producer.cc.

References art::detail::Producer::respondToOpenOutputFilesWithFrame().

52  {
53  ProcessingFrame const frame{ScheduleID{}};
55  }
virtual void respondToOpenOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
TFile fb("Li6.root")
void art::Modifier::fillProductDescriptions ( )
inherited

Definition at line 10 of file Modifier.cc.

References art::ProductRegistryHelper::fillDescriptions(), and art::ModuleBase::moduleDescription().

11  {
13  }
void fillDescriptions(ModuleDescription const &md)
ModuleDescription const & moduleDescription() const
Definition: ModuleBase.cc:13
std::array< std::vector< ProductInfo >, NumBranchTypes > const & art::ModuleBase::getConsumables ( ) const
inherited

Definition at line 43 of file ModuleBase.cc.

References art::ModuleBase::collector_, and art::ConsumesCollector::getConsumables().

44  {
45  return collector_.getConsumables();
46  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
std::array< std::vector< ProductInfo >, NumBranchTypes > const & getConsumables() const
std::unique_ptr< Worker > art::ModuleBase::makeWorker ( WorkerParams const &  wp)
inherited

Definition at line 37 of file ModuleBase.cc.

References art::ModuleBase::doMakeWorker(), and art::NumBranchTypes.

38  {
39  return doMakeWorker(wp);
40  }
virtual std::unique_ptr< Worker > doMakeWorker(WorkerParams const &wp)=0
template<typename T , BranchType BT>
ProductToken< T > art::ModuleBase::mayConsume ( InputTag const &  tag)
protectedinherited

Definition at line 82 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsume().

83  {
84  return collector_.mayConsume<T, BT>(tag);
85  }
ProductToken< T > mayConsume(InputTag const &)
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename T , BranchType BT>
void art::ModuleBase::mayConsumeMany ( )
protectedinherited

Definition at line 96 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeMany().

97  {
98  collector_.mayConsumeMany<T, BT>();
99  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
template<typename Element , BranchType = InEvent>
ViewToken<Element> art::ModuleBase::mayConsumeView ( InputTag const &  )
protectedinherited
template<typename T , BranchType BT>
ViewToken<T> art::ModuleBase::mayConsumeView ( InputTag const &  tag)
inherited

Definition at line 89 of file ModuleBase.h.

References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeView().

90  {
91  return collector_.mayConsumeView<T, BT>(tag);
92  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
ViewToken< Element > mayConsumeView(InputTag const &)
ModuleDescription const & art::ModuleBase::moduleDescription ( ) const
inherited

Definition at line 13 of file ModuleBase.cc.

References art::errors::LogicError.

Referenced by art::OutputModule::doRespondToOpenInputFile(), art::OutputModule::doWriteEvent(), art::Modifier::fillProductDescriptions(), art::OutputModule::makePlugins_(), art::OutputWorker::OutputWorker(), reco::shower::LArPandoraModularShowerCreation::produce(), art::Modifier::registerProducts(), and art::OutputModule::registerProducts().

14  {
15  if (md_.has_value()) {
16  return *md_;
17  }
18 
20  "There was an error while calling moduleDescription().\n"}
21  << "The moduleDescription() base-class member function cannot be called\n"
22  "during module construction. To determine which module is "
23  "responsible\n"
24  "for calling it, find the '<module type>:<module "
25  "label>@Construction'\n"
26  "tag in the message prefix above. Please contact artists@fnal.gov\n"
27  "for guidance.\n";
28  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
std::optional< ModuleDescription > md_
Definition: ModuleBase.h:55
ShowerReco3D& ShowerReco3D::operator= ( ShowerReco3D const &  )
delete
ShowerReco3D& ShowerReco3D::operator= ( ShowerReco3D &&  )
delete
void ShowerReco3D::produce ( art::Event e)
overrideprivatevirtual

Implements art::EDProducer.

Definition at line 104 of file ShowerReco3D_module.cc.

References util::CreateAssn(), DEFINE_ART_MODULE, fInputProducer, fManager, fUsePFParticle, art::ProductRetriever::getByLabel(), hits(), art::Handle< T >::isValid(), recob::PFParticle::PdgCode(), art::Event::put(), showerreco::ShowerRecoManager::Reconstruct(), and showerreco::ShowerRecoManager::Reset().

105 {
106  auto const& geom = *lar::providerFrom<geo::Geometry>();
107  auto const clockData = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(e);
108  auto const detProp =
110  util::GeometryUtilities const gser{geom, clockData, detProp};
111 
112  // Create output data product containers
113  std::unique_ptr<std::vector<recob::Shower>> out_shower_v(new std::vector<recob::Shower>);
114  std::unique_ptr<art::Assns<recob::Shower, recob::Cluster>> sc_assn(
116  std::unique_ptr<art::Assns<recob::Shower, recob::Hit>> sh_assn(
118  std::unique_ptr<art::Assns<recob::PFParticle, recob::Shower>> sp_assn(
120 
121  // Preparation
122 
123  // Reset ShowerRecoManager
124  fManager.Reset();
125 
126  // Retrieve input clusters
128  e.getByLabel(fInputProducer, cHandle);
129 
130  if (!cHandle.isValid())
131  throw cet::exception(__FUNCTION__) << "Invalid input cluster label!" << std::endl;
132 
133  // Cluster type conversion: recob::Hit => util::PxHit
134  std::vector<std::vector<::util::PxHit>> local_clusters;
135  art::FindManyP<recob::Hit> hit_m(cHandle, e, fInputProducer);
136  ::util::PxHitConverter conv{gser};
137  for (size_t i = 0; i < cHandle->size(); ++i) {
138  local_clusters.push_back(std::vector<::util::PxHit>());
139 
140  const std::vector<art::Ptr<recob::Hit>>& hits = hit_m.at(i);
141 
142  conv.GeneratePxHit(hits, local_clusters.back());
143  }
144 
145  //
146  // Run shower reconstruction
147  //
148  // shower pfparticle index (later used to make an association)
149  std::vector<size_t> shower_pfpart_index;
150  // cluster combination in terms of cluster index (for ShowerRecoManager::Reconstruct)
151  std::vector<std::vector<unsigned int>> matched_pairs;
152  // shower vector container to receive from ShowerRecoManager::Reconstruct
153  std::vector<recob::Shower> shower_v;
154 
155  if (!fUsePFParticle) {
156  matched_pairs = fManager.Reconstruct(geom, clockData, detProp, local_clusters, shower_v);
157  }
158  else {
159 
160  // Retrieve PFParticle
162  e.getByLabel(fInputProducer, pfHandle);
163  if (!pfHandle.isValid())
164  throw cet::exception(__FUNCTION__) << "Invalid input PFParticle label!" << std::endl;
165 
166  // Make a cluster ptr => index map to fill matched_pairs
167  std::map<art::Ptr<recob::Cluster>, size_t> cmap;
168  for (size_t i = 0; i < cHandle->size(); ++i) {
169 
170  const art::Ptr<recob::Cluster> cptr(cHandle, i);
171 
172  cmap[cptr] = i;
173  }
174  // Now to fill matched_pairs retrieve association of pfpart => cluster(s)
175  art::FindManyP<recob::Cluster> cluster_m(pfHandle, e, fInputProducer);
176 
177  for (size_t i = 0; i < pfHandle->size(); ++i) {
178 
179  const art::Ptr<recob::PFParticle> pf(pfHandle, i);
180 
181  if (pf->PdgCode() != 11) continue;
182 
183  const std::vector<art::Ptr<recob::Cluster>>& clusters = cluster_m.at(i);
184 
185  std::vector<unsigned int> one_pair;
186  one_pair.reserve(clusters.size());
187 
188  for (auto const& cptr : clusters) {
189 
190  auto iter = cmap.find(cptr);
191  if (iter == cmap.end())
192  throw cet::exception(__FUNCTION__)
193  << "PFParticle=>Cluster association not valid!" << std::endl;
194 
195  one_pair.push_back((*iter).second);
196  }
197  matched_pairs.push_back(one_pair);
198  shower_pfpart_index.push_back(i);
199  }
200  // Run reconstruction
201  fManager.Reconstruct(geom, clockData, detProp, local_clusters, matched_pairs, shower_v);
202  }
203 
204  // Make sure output shower vector size is same as expected length
205  if (shower_v.size() != matched_pairs.size())
206  throw cet::exception(__FUNCTION__)
207  << "Logic error: # of matched pairs != # of reco-ed showers!" << std::endl;
208 
209  // Fill output shower vector data container
210  out_shower_v->reserve(shower_v.size());
211 
212  for (size_t i = 0; i < shower_v.size(); ++i) {
213 
214  // Set output shower ID
215  shower_v[i].set_id(i);
216 
217  out_shower_v->push_back(shower_v[i]);
218 
219  // Create shower=>cluster association
220  std::vector<art::Ptr<recob::Cluster>> ass_clusters;
221  // Create shower=>hit association
222  std::vector<art::Ptr<recob::Hit>> ass_hits;
223  for (auto const& cindex : matched_pairs[i]) {
224 
225  ass_clusters.push_back(art::Ptr<recob::Cluster>(cHandle, cindex));
226 
227  const std::vector<art::Ptr<recob::Hit>>& hits = hit_m.at(cindex);
228 
229  for (auto const& ptr : hits)
230  ass_hits.push_back(ptr);
231  }
232  // Shower=>Cluster
233  util::CreateAssn(e, *(out_shower_v.get()), ass_clusters, *(sc_assn.get()));
234  // Shower=>Hits
235  util::CreateAssn(e, *(out_shower_v.get()), ass_hits, *(sh_assn.get()));
236 
237  if (fUsePFParticle) {
238 
240  e.getByLabel(fInputProducer, pfHandle);
241 
242  art::Ptr<recob::PFParticle> pf_ptr(pfHandle, shower_pfpart_index[i]);
243 
244  util::CreateAssn(e, *(out_shower_v.get()), pf_ptr, *(sp_assn.get()));
245  }
246  }
247 
248  // Store in an event record
249  e.put(std::move(out_shower_v));
250  e.put(std::move(sh_assn));
251  e.put(std::move(sc_assn));
252  if (fUsePFParticle) e.put(std::move(sp_assn));
253 }
::showerreco::ShowerRecoManager fManager
bool isValid() const noexcept
Definition: Handle.h:203
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
void hits()
Definition: readHits.C:15
std::string fInputProducer
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.
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
ClusterAss_t Reconstruct(geo::GeometryCore const &geom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const std::vector< std::vector< util::PxHit >> &clusters, std::vector<::recob::Shower > &showers)
void art::Modifier::registerProducts ( ProductDescriptions productsToRegister)
inherited

Definition at line 16 of file Modifier.cc.

References art::ModuleBase::moduleDescription(), and art::ProductRegistryHelper::registerProducts().

17  {
18  ProductRegistryHelper::registerProducts(productsToRegister,
20  }
void registerProducts(ProductDescriptions &productsToRegister, ModuleDescription const &md)
ModuleDescription const & moduleDescription() const
Definition: ModuleBase.cc:13
void art::ModuleBase::setModuleDescription ( ModuleDescription const &  md)
inherited

Definition at line 31 of file ModuleBase.cc.

References art::ModuleBase::md_.

32  {
33  md_ = md;
34  }
std::optional< ModuleDescription > md_
Definition: ModuleBase.h:55
void art::ModuleBase::sortConsumables ( std::string const &  current_process_name)
inherited

Definition at line 49 of file ModuleBase.cc.

References art::ModuleBase::collector_, and art::ConsumesCollector::sortConsumables().

50  {
51  // Now that we know we have seen all the consumes declarations,
52  // sort the results for fast lookup later.
53  collector_.sortConsumables(current_process_name);
54  }
ConsumesCollector collector_
Definition: ModuleBase.h:56
void sortConsumables(std::string const &current_process_name)

Member Data Documentation

::calo::CalorimetryAlg* ShowerReco3D::fCaloAlgo
private

Definition at line 63 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

::cmtool::CFAlgoTimeOverlap* ShowerReco3D::fCFAlgoTimeOverlap
private

Definition at line 67 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

::cmtool::CPAlgoArray* ShowerReco3D::fCPAlgoArray
private

Definition at line 64 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

::cmtool::CPAlgoIgnoreTracks* ShowerReco3D::fCPAlgoIgnoreTracks
private

Definition at line 66 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

::cmtool::CPAlgoNHits* ShowerReco3D::fCPAlgoNHits
private

Definition at line 65 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

std::string ShowerReco3D::fInputProducer
private

Definition at line 60 of file ShowerReco3D_module.cc.

Referenced by produce(), and ShowerReco3D().

::showerreco::ShowerRecoManager ShowerReco3D::fManager
private

Definition at line 61 of file ShowerReco3D_module.cc.

Referenced by produce(), and ShowerReco3D().

::showerreco::ShowerRecoAlg* ShowerReco3D::fShowerAlgo
private

Definition at line 62 of file ShowerReco3D_module.cc.

Referenced by ShowerReco3D().

bool ShowerReco3D::fUsePFParticle
private

Definition at line 59 of file ShowerReco3D_module.cc.

Referenced by produce(), and ShowerReco3D().


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