LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
shower::TCShower Class Reference
Inheritance diagram for shower::TCShower:
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

 TCShower (fhicl::ParameterSet const &p)
 
 TCShower (TCShower const &)=delete
 
 TCShower (TCShower &&)=delete
 
TCShoweroperator= (TCShower const &)=delete
 
TCShoweroperator= (TCShower &&)=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
 
int getShowersWithSlices (art::Event const &evt, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, art::Ptr< recob::Slice > const &thisslice)
 
int getShowersWithoutSlices (art::Event const &evt, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp)
 

Private Attributes

shower::TCShowerAlg fTCAlg
 
std::string fClusterModuleLabel
 
std::string fTrackModuleLabel
 
std::string fHitModuleLabel
 
std::string fSliceModuleLabel
 
std::string fVertexModuleLabel
 
std::string fCalorimetryModuleLabel
 

Detailed Description

Definition at line 44 of file TCShower_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

shower::TCShower::TCShower ( fhicl::ParameterSet const &  p)
explicit

Definition at line 76 of file TCShower_module.cc.

References fCalorimetryModuleLabel, fClusterModuleLabel, fHitModuleLabel, fSliceModuleLabel, fTCAlg, fTrackModuleLabel, and fVertexModuleLabel.

77  : EDProducer{pset}
78  , fTCAlg(pset.get<fhicl::ParameterSet>("TCAlg"))
79  , fClusterModuleLabel(pset.get<std::string>("ClusterModuleLabel", "trajcluster"))
80  , fTrackModuleLabel(pset.get<std::string>("TrackModuleLabel", "trajclusterKalmanTrack"))
81  , fHitModuleLabel(pset.get<std::string>("HitModuleLabel", "trajcluster"))
82  , fSliceModuleLabel(pset.get<std::string>("SliceModuleLabel", "dbcluster3d"))
83  , fVertexModuleLabel(pset.get<std::string>("VertexModuleLabel", "trajcluster"))
84  , fCalorimetryModuleLabel(pset.get<std::string>("CalorimetryModuleLabel"))
85 {
86  produces<std::vector<recob::Shower>>();
87  produces<art::Assns<recob::Shower, recob::Hit>>();
88  produces<art::Assns<recob::Slice, recob::Shower>>();
89 }
shower::TCShowerAlg fTCAlg
std::string fVertexModuleLabel
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
std::string fSliceModuleLabel
std::string fTrackModuleLabel
std::string fHitModuleLabel
std::string fClusterModuleLabel
std::string fCalorimetryModuleLabel
shower::TCShower::TCShower ( TCShower const &  )
delete
shower::TCShower::TCShower ( TCShower &&  )
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
int shower::TCShower::getShowersWithoutSlices ( art::Event const &  evt,
detinfo::DetectorClocksData const &  clockData,
detinfo::DetectorPropertiesData const &  detProp 
)
private

Definition at line 212 of file TCShower_module.cc.

References DEFINE_ART_MODULE, fClusterModuleLabel, fHitModuleLabel, art::fill_ptr_vector(), fTCAlg, fTrackModuleLabel, fVertexModuleLabel, art::ProductRetriever::getHandle(), and shower::TCShowerAlg::makeShowers().

Referenced by produce().

215 {
216  auto pfpListHandle = evt.getHandle<std::vector<recob::PFParticle>>(fHitModuleLabel);
217  std::vector<art::Ptr<recob::PFParticle>> pfplist;
218  if (pfpListHandle) { art::fill_ptr_vector(pfplist, pfpListHandle); }
219 
220  auto clusterListHandle = evt.getHandle<std::vector<recob::Cluster>>(fClusterModuleLabel);
221  std::vector<art::Ptr<recob::Cluster>> clusterlist;
222  if (clusterListHandle) { art::fill_ptr_vector(clusterlist, clusterListHandle); }
223 
224  auto hitListHandle = evt.getHandle<std::vector<recob::Hit>>(fHitModuleLabel);
225  std::vector<art::Ptr<recob::Hit>> hitlist;
226  if (hitListHandle) { art::fill_ptr_vector(hitlist, hitListHandle); }
227 
228  // get associations
229  art::FindManyP<recob::Hit> cls_fm(clusterListHandle, evt, fClusterModuleLabel);
230  art::FindManyP<recob::Cluster> clspfp_fm(pfpListHandle, evt, fHitModuleLabel);
231  art::FindManyP<recob::Vertex> vtxpfp_fm(pfpListHandle, evt, fVertexModuleLabel);
232  art::FindManyP<recob::Cluster> hitcls_fm(hitListHandle, evt, fClusterModuleLabel);
233  art::FindManyP<recob::Track> trkpfp_fm(pfpListHandle, evt, fTrackModuleLabel);
234 
235  return fTCAlg.makeShowers(clockData,
236  detProp,
237  pfplist,
238  clusterlist,
239  hitlist,
240  cls_fm,
241  clspfp_fm,
242  vtxpfp_fm,
243  hitcls_fm,
244  trkpfp_fm);
245 }
shower::TCShowerAlg fTCAlg
std::string fVertexModuleLabel
int makeShowers(detinfo::DetectorClocksData const &dataClock, detinfo::DetectorPropertiesData const &detProp, std::vector< art::Ptr< recob::PFParticle >> const &pfplist, std::vector< art::Ptr< recob::Cluster >> const &clusterlist, std::vector< art::Ptr< recob::Hit >> const &hitlist, art::FindManyP< recob::Hit > const &cls_fm, art::FindManyP< recob::Cluster > const &clspfp_fm, art::FindManyP< recob::Vertex > const &vtxpfp_fm, art::FindManyP< recob::Cluster > const &hitcls_fm, art::FindManyP< recob::Track > const &trkpfp_fm)
Definition: TCShowerAlg.cxx:49
std::string fTrackModuleLabel
std::string fHitModuleLabel
std::string fClusterModuleLabel
TCEvent evt
Definition: DataStructs.cxx:8
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
Definition: Ptr.h:306
int shower::TCShower::getShowersWithSlices ( art::Event const &  evt,
detinfo::DetectorClocksData const &  clockData,
detinfo::DetectorPropertiesData const &  detProp,
art::Ptr< recob::Slice > const &  thisslice 
)
private

Definition at line 168 of file TCShower_module.cc.

References fClusterModuleLabel, fHitModuleLabel, fSliceModuleLabel, fTCAlg, fTrackModuleLabel, fVertexModuleLabel, art::ProductRetriever::getHandle(), art::Ptr< T >::key(), and shower::TCShowerAlg::makeShowers().

Referenced by produce().

172 {
173  auto hitListHandle = evt.getHandle<std::vector<recob::Hit>>(fHitModuleLabel);
174  auto clusterListHandle = evt.getHandle<std::vector<recob::Cluster>>(fClusterModuleLabel);
175  auto trackListHandle = evt.getHandle<std::vector<recob::Track>>(fTrackModuleLabel);
176  auto sliceListHandle = evt.getHandle<std::vector<recob::Slice>>(fSliceModuleLabel);
177  auto vtxListHandle = evt.getHandle<std::vector<recob::Vertex>>(fVertexModuleLabel);
178  auto pfpListHandle = evt.getHandle<std::vector<recob::PFParticle>>(fHitModuleLabel);
179 
180  art::FindManyP<recob::Hit> hitslice_fm(sliceListHandle, evt, fHitModuleLabel);
181  art::FindManyP<recob::PFParticle> pfpslice_fm(sliceListHandle, evt, fHitModuleLabel);
182  art::FindManyP<recob::Cluster> clsslice_fm(sliceListHandle, evt, fHitModuleLabel);
183  art::FindManyP<recob::Cluster> clspfp_fm(pfpListHandle, evt, fHitModuleLabel);
184  art::FindManyP<recob::Vertex> vtxpfp_fm(pfpListHandle, evt, fVertexModuleLabel);
185 
186  // get all hits with hit-slice association
187  auto const& hitlist = hitslice_fm.at(thisslice.key());
188 
189  // get all clusters with cluster-slice association
190  auto const& clusterlist = clsslice_fm.at(thisslice.key());
191 
192  auto const& pfplist = pfpslice_fm.at(thisslice.key());
193 
194  // get associations
195  art::FindManyP<recob::Hit> cls_fm(clusterListHandle, evt, fClusterModuleLabel);
196  art::FindManyP<recob::Cluster> hitcls_fm(hitListHandle, evt, fClusterModuleLabel);
197  art::FindManyP<recob::Track> trkpfp_fm(pfpListHandle, evt, fTrackModuleLabel);
198 
199  return fTCAlg.makeShowers(clockData,
200  detProp,
201  pfplist,
202  clusterlist,
203  hitlist,
204  cls_fm,
205  clspfp_fm,
206  vtxpfp_fm,
207  hitcls_fm,
208  trkpfp_fm);
209 }
shower::TCShowerAlg fTCAlg
std::string fVertexModuleLabel
std::string fSliceModuleLabel
int makeShowers(detinfo::DetectorClocksData const &dataClock, detinfo::DetectorPropertiesData const &detProp, std::vector< art::Ptr< recob::PFParticle >> const &pfplist, std::vector< art::Ptr< recob::Cluster >> const &clusterlist, std::vector< art::Ptr< recob::Hit >> const &hitlist, art::FindManyP< recob::Hit > const &cls_fm, art::FindManyP< recob::Cluster > const &clspfp_fm, art::FindManyP< recob::Vertex > const &vtxpfp_fm, art::FindManyP< recob::Cluster > const &hitcls_fm, art::FindManyP< recob::Track > const &trkpfp_fm)
Definition: TCShowerAlg.cxx:49
std::string fTrackModuleLabel
std::string fHitModuleLabel
key_type key() const noexcept
Definition: Ptr.h:166
std::string fClusterModuleLabel
TCEvent evt
Definition: DataStructs.cxx:8
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
TCShower& shower::TCShower::operator= ( TCShower const &  )
delete
TCShower& shower::TCShower::operator= ( TCShower &&  )
delete
void shower::TCShower::produce ( art::Event e)
overrideprivatevirtual

Implements art::EDProducer.

Definition at line 93 of file TCShower_module.cc.

References shower::TCShowerAlg::bestplane, util::CreateAssn(), shower::TCShowerAlg::dcosVtxErr, shower::TCShowerAlg::dEdx, shower::TCShowerAlg::dEdxErr, util::empty(), art::fill_ptr_vector(), fSliceModuleLabel, fTCAlg, art::ProductRetriever::getByLabel(), getShowersWithoutSlices(), getShowersWithSlices(), art::Event::put(), shower::TCShowerAlg::showerHits, shower::TCShowerAlg::shwDir, shower::TCShowerAlg::shwvtx, shower::TCShowerAlg::totalEnergy, shower::TCShowerAlg::totalEnergyErr, and shower::TCShowerAlg::xyzErr.

94 {
95  auto showers = std::make_unique<std::vector<recob::Shower>>();
96  auto hitShowerAssociations = std::make_unique<art::Assns<recob::Shower, recob::Hit>>();
97  auto sliceShowerAssociations = std::make_unique<art::Assns<recob::Slice, recob::Shower>>();
98 
99  // slices
100  art::Handle<std::vector<recob::Slice>> sliceListHandle;
101  std::vector<art::Ptr<recob::Slice>> slicelist;
102  if (evt.getByLabel(fSliceModuleLabel, sliceListHandle))
103  art::fill_ptr_vector(slicelist, sliceListHandle);
104 
105  auto const clockData = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(evt);
106  auto const detProp =
108 
109  int foundShower = -1;
110 
111  if (empty(slicelist)) { // no slices
112  foundShower = getShowersWithoutSlices(evt, clockData, detProp);
113 
114  if (foundShower) {
115  auto const& shwDir = fTCAlg.shwDir;
116  auto const& shwvtx = fTCAlg.shwvtx;
117  showers->emplace_back(TVector3{shwDir.X(), shwDir.Y(), shwDir.Z()},
119  TVector3{shwvtx.X(), shwvtx.Y(), shwvtx.Z()},
120  fTCAlg.xyzErr,
123  fTCAlg.dEdx,
124  fTCAlg.dEdxErr,
126  0);
127  showers->back().set_id(showers->size() - 1);
128 
129  util::CreateAssn(evt, *showers, fTCAlg.showerHits, *hitShowerAssociations);
130  }
131  }
132  else { // use slices
133  for (size_t i = 0; i < slicelist.size(); ++i) {
134  std::cout << "---------- slice " << i << " ----------" << std::endl;
135 
136  foundShower = getShowersWithSlices(evt, clockData, detProp, slicelist[i]);
137 
138  if (foundShower) {
139  std::cout << "FOUND SHOWER " << foundShower << std::endl;
140  std::cout << "shower hits " << fTCAlg.showerHits.size() << std::endl;
141 
142  auto const& shwDir = fTCAlg.shwDir;
143  auto const& shwvtx = fTCAlg.shwvtx;
144  showers->emplace_back(TVector3{shwDir.X(), shwDir.Y(), shwDir.Z()},
146  TVector3{shwvtx.X(), shwvtx.Y(), shwvtx.Z()},
147  fTCAlg.xyzErr,
150  fTCAlg.dEdx,
151  fTCAlg.dEdxErr,
153  0);
154  showers->back().set_id(showers->size() - 1);
155 
156  util::CreateAssn(evt, *showers, fTCAlg.showerHits, *hitShowerAssociations);
157  util::CreateAssn(evt, *showers, slicelist[i], *sliceShowerAssociations);
158  }
159  } // loop through slices
160  } // with slices
161 
162  evt.put(std::move(showers));
163  evt.put(std::move(hitShowerAssociations));
164  evt.put(std::move(sliceShowerAssociations));
165 } // produce
shower::TCShowerAlg fTCAlg
std::vector< double > totalEnergyErr
Definition: TCShowerAlg.h:46
int getShowersWithSlices(art::Event const &evt, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, art::Ptr< recob::Slice > const &thisslice)
int getShowersWithoutSlices(art::Event const &evt, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp)
std::vector< double > dEdx
Definition: TCShowerAlg.h:47
std::string fSliceModuleLabel
geo::Point_t shwvtx
Definition: TCShowerAlg.h:43
geo::Vector_t shwDir
Definition: TCShowerAlg.h:41
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< double > totalEnergy
Definition: TCShowerAlg.h:45
TCEvent evt
Definition: DataStructs.cxx:8
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
Definition: Ptr.h:306
std::vector< art::Ptr< recob::Hit > > showerHits
Definition: TCShowerAlg.h:50
std::vector< double > dEdxErr
Definition: TCShowerAlg.h:48
decltype(auto) constexpr empty(T &&obj)
ADL-aware version of std::empty.
Definition: StdUtils.h:109
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

std::string shower::TCShower::fCalorimetryModuleLabel
private

Definition at line 71 of file TCShower_module.cc.

Referenced by TCShower().

std::string shower::TCShower::fClusterModuleLabel
private

Definition at line 66 of file TCShower_module.cc.

Referenced by getShowersWithoutSlices(), getShowersWithSlices(), and TCShower().

std::string shower::TCShower::fHitModuleLabel
private

Definition at line 68 of file TCShower_module.cc.

Referenced by getShowersWithoutSlices(), getShowersWithSlices(), and TCShower().

std::string shower::TCShower::fSliceModuleLabel
private

Definition at line 69 of file TCShower_module.cc.

Referenced by getShowersWithSlices(), produce(), and TCShower().

shower::TCShowerAlg shower::TCShower::fTCAlg
private
std::string shower::TCShower::fTrackModuleLabel
private

Definition at line 67 of file TCShower_module.cc.

Referenced by getShowersWithoutSlices(), getShowersWithSlices(), and TCShower().

std::string shower::TCShower::fVertexModuleLabel
private

Definition at line 70 of file TCShower_module.cc.

Referenced by getShowersWithoutSlices(), getShowersWithSlices(), and TCShower().


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