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

 SmallClusterFinder (fhicl::ParameterSet const &pset)
 
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 beginJob () override
 
void produce (art::Event &evt) override
 
int GetPlaneAndTPC (art::Ptr< recob::Hit > a, unsigned int &p, unsigned int &cs, unsigned int &t, unsigned int &w)
 

Private Attributes

art::ServiceHandle< geo::Geometry const > geom
 
geo::WireReadoutGeom const & wireReadoutGeom
 
std::string fHitFinderModuleLabel
 
bool verbose
 
SmallClusterFinderAlg fSmallClusterFinderAlg
 
unsigned int fNPlanes
 

Detailed Description

Definition at line 65 of file SmallClusterFinder_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

cluster::SmallClusterFinder::SmallClusterFinder ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 97 of file SmallClusterFinder_module.cc.

References fHitFinderModuleLabel, fSmallClusterFinderAlg, and verbose.

98  : EDProducer{pset}, fSmallClusterFinderAlg(pset.get<fhicl::ParameterSet>("smallClustAlg"))
99  {
100  fHitFinderModuleLabel = pset.get<std::string>("HitFinderModuleLabel");
101  verbose = pset.get<bool>("Verbose");
102 
103  produces<std::vector<recob::Cluster>>(); //This code makes clusters
104  produces<art::Assns<recob::Cluster, recob::Hit>>(); //Matches clusters with hits
105  }
SmallClusterFinderAlg fSmallClusterFinderAlg
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6

Member Function Documentation

void cluster::SmallClusterFinder::beginJob ( )
overrideprivatevirtual

Reimplemented from art::EDProducer.

Definition at line 108 of file SmallClusterFinder_module.cc.

References fNPlanes, geo::WireReadoutGeom::Nplanes(), and wireReadoutGeom.

109  {
110  // this will not change on a run per run basis.
111  fNPlanes = wireReadoutGeom.Nplanes(); //get the number of planes in the ODTPC
112  }
geo::WireReadoutGeom const & wireReadoutGeom
unsigned int Nplanes(TPCID const &tpcid=details::tpc_zero) const
Returns the total number of planes in the specified TPC.
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 cluster::SmallClusterFinder::GetPlaneAndTPC ( art::Ptr< recob::Hit a,
unsigned int &  p,
unsigned int &  cs,
unsigned int &  t,
unsigned int &  w 
)
private
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
void cluster::SmallClusterFinder::produce ( art::Event evt)
overrideprivatevirtual

Get Clusters

Implements art::EDProducer.

Definition at line 116 of file SmallClusterFinder_module.cc.

References util::CreateAssn(), DEFINE_ART_MODULE, fHitFinderModuleLabel, cluster::SmallClusterFinderAlg::FindSmallClusters(), fNPlanes, fSmallClusterFinderAlg, geom, art::ProductRetriever::getByLabel(), cluster::SmallClusterFinderAlg::GetLeftoversByPlane(), cluster::SmallClusterFinderAlg::GetSmallClustersByPlane(), geo::WireReadoutGeom::Plane(), art::Event::put(), recob::Cluster::Sentry, verbose, geo::PlaneGeo::View(), and wireReadoutGeom.

117  {
120  //Get the hits for this event:
122  evt.getByLabel(fHitFinderModuleLabel, HitListHandle);
123 
124  //A vector to hold hits, not yet filled:
125  std::vector<art::Ptr<recob::Hit>> hitlist;
126 
127  //How many hits in this event? Tell user:
128  if (verbose)
129  std::cout << " ++++ Hitsreceived received " << HitListHandle->size() << " +++++ "
130  << std::endl;
131  //Catch the case were there are no hits in the event:
132  if (HitListHandle->size() == 0) {
133  if (verbose) std::cout << "No hits received! Exiting." << std::endl;
134  return;
135  }
136  hitlist.resize(HitListHandle->size());
137 
138  //wrap the hits in art::Ptrs to pass to the Alg
139  for (unsigned int iHit = 0; iHit < hitlist.size(); iHit++) {
140  hitlist[iHit] = art::Ptr<recob::Hit>(HitListHandle, iHit);
141  }
142 
143  // Now run the alg to find the gammas:
144  auto const clockData = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(evt);
145  auto const detProp =
147  util::GeometryUtilities const gser{*geom, wireReadoutGeom, clockData, detProp};
148  fSmallClusterFinderAlg.FindSmallClusters(gser, clockData, detProp, hitlist);
149 
150  // make an art::PtrVector of the clusters
151  auto SmallClusterFinder = std::make_unique<std::vector<recob::Cluster>>();
152  auto assn = std::make_unique<art::Assns<recob::Cluster, recob::Hit>>();
153 
154  // prepare the algorithm to compute the cluster characteristics;
155  // we use the "standard" one here; configuration would happen here,
156  // but we are using the default configuration for that algorithm
157  ClusterParamsImportWrapper<StandardClusterParamsAlg> ClusterParamAlgo;
158 
159  for (unsigned int iplane = 0; iplane < fNPlanes; iplane++) {
160 
161  auto const leftoverHits = fSmallClusterFinderAlg.GetLeftoversByPlane(iplane);
162 
163  //write the leftover hits as a cluster:
164  if (leftoverHits.size() != 0) {
165  // pick some information from the first hit
166  geo::PlaneID planeID = leftoverHits.front()->WireID().planeID();
167  if (verbose)
168  std::cout << "Writing leftover hits to cluster ID: " << iplane * 100 << std::endl;
169 
170  ClusterParamAlgo.ImportHits(gser, leftoverHits);
171 
172  // create the recob::Cluster directly in the vector
173  ClusterCreator leftover(
174  gser,
175  ClusterParamAlgo, // algo
176  0., // start_wire
177  0., // sigma_start_wire
178  0., // start_tick
179  0., // sigma_start_tick
180  0., // end_wire
181  0., // sigma_end_wire,
182  0., // end_tick
183  0., // sigma_end_tick
184  iplane * 100, // ID
185  wireReadoutGeom.Plane(geo::PlaneID{planeID.asTPCID(), iplane}).View(),
186  planeID, // plane
187  recob::Cluster::Sentry // sentry
188  );
189 
190  SmallClusterFinder->emplace_back(leftover.move());
191 
192  util::CreateAssn(evt, *SmallClusterFinder, leftoverHits, *assn);
193  } //leftovers are written for this plane, if they exist.
194 
195  auto const smallClusters = fSmallClusterFinderAlg.GetSmallClustersByPlane(iplane);
196  for (unsigned int i = 0; i < smallClusters.size(); i++) {
197  // pick some information from the first hit
198  geo::PlaneID planeID; // invalid by default
199  if (!smallClusters.empty()) planeID = smallClusters[i].front()->WireID().planeID();
200 
201  ClusterParamAlgo.ImportHits(gser, smallClusters[i]);
202 
203  // create the recob::Cluster directly in the vector
204  ClusterCreator clust(gser,
205  ClusterParamAlgo, // algo
206  0., // start_wire
207  0., // sigma_start_wire
208  0., // start_tick
209  0., // sigma_start_tick
210  0., // end_wire
211  0., // sigma_end_wire,
212  0., // end_tick
213  0., // sigma_end_tick
214  iplane * 100 + i + 1, // ID
215  wireReadoutGeom.Plane(geo::PlaneID{planeID.asTPCID(), iplane}).View(),
216  planeID, // plane
217  recob::Cluster::Sentry // sentry
218  );
219 
220  SmallClusterFinder->emplace_back(clust.move());
221  // associate the hits to this cluster
222  util::CreateAssn(evt, *SmallClusterFinder, smallClusters[i], *assn);
223  }
224  }
225 
226  evt.put(std::move(SmallClusterFinder));
227  evt.put(std::move(assn));
228  } //end produce
SmallClusterFinderAlg fSmallClusterFinderAlg
The data type to uniquely identify a Plane.
Definition: geo_types.h:364
SmallClusterFinder(fhicl::ParameterSet const &pset)
void FindSmallClusters(util::GeometryUtilities const &gser, detinfo::DetectorClocksData const &dataClocks, detinfo::DetectorPropertiesData const &detProp, std::vector< art::Ptr< recob::Hit >> allHits)
static const SentryArgument_t Sentry
An instance of the sentry object.
Definition: Cluster.h:174
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
View_t View() const
Which coordinate does this plane measure.
Definition: PlaneGeo.h:155
geo::WireReadoutGeom const & wireReadoutGeom
std::vector< art::Ptr< recob::Hit > > GetLeftoversByPlane(unsigned int iPlane)
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
std::vector< std::vector< art::Ptr< recob::Hit > > > GetSmallClustersByPlane(unsigned int iPlane)
art::ServiceHandle< geo::Geometry const > geom
PlaneGeo const & Plane(TPCID const &tpcid, View_t view) const
Returns the specified wire.
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 cluster::SmallClusterFinder::fHitFinderModuleLabel
private

Definition at line 79 of file SmallClusterFinder_module.cc.

Referenced by produce(), and SmallClusterFinder().

unsigned int cluster::SmallClusterFinder::fNPlanes
private

Definition at line 85 of file SmallClusterFinder_module.cc.

Referenced by beginJob(), and produce().

SmallClusterFinderAlg cluster::SmallClusterFinder::fSmallClusterFinderAlg
private

Definition at line 83 of file SmallClusterFinder_module.cc.

Referenced by produce(), and SmallClusterFinder().

art::ServiceHandle<geo::Geometry const> cluster::SmallClusterFinder::geom
private

Routine that finds the cluster and sets the dTdW of the 2D shower

Definition at line 74 of file SmallClusterFinder_module.cc.

Referenced by produce().

bool cluster::SmallClusterFinder::verbose
private

Definition at line 80 of file SmallClusterFinder_module.cc.

Referenced by produce(), and SmallClusterFinder().

geo::WireReadoutGeom const& cluster::SmallClusterFinder::wireReadoutGeom
private
Initial value:

Definition at line 75 of file SmallClusterFinder_module.cc.

Referenced by beginJob(), and produce().


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