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

 VertexCheater (fhicl::ParameterSet const &pset)
 
void produce (art::Event &evt)
 
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 Attributes

std::string fCheatedTrackLabel
 label for module creating recob::Track objects More...
 
std::string fCheatedShowerLabel
 label for module creating recob::Shower objects More...
 
std::string fG4ModuleLabel
 label for module running G4 and making particles, etc More...
 

Detailed Description

Definition at line 32 of file VertexCheater_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

vertex::VertexCheater::VertexCheater ( fhicl::ParameterSet const &  pset)
explicit

Definition at line 48 of file VertexCheater_module.cc.

References fCheatedShowerLabel, fCheatedTrackLabel, and fG4ModuleLabel.

48  : EDProducer{pset}
49  {
50  fCheatedTrackLabel = pset.get<std::string>("CheatedTrackLabel", "track");
51  fCheatedShowerLabel = pset.get<std::string>("CheatedShowerLabel", "shower");
52  fG4ModuleLabel = pset.get<std::string>("G4ModuleLabel", "largeant");
53 
54  produces<std::vector<recob::Vertex>>();
55  produces<art::Assns<recob::Vertex, recob::Shower>>();
56  produces<art::Assns<recob::Vertex, recob::Track>>();
57  produces<art::Assns<recob::Vertex, recob::Hit>>();
58  }
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
std::string fCheatedTrackLabel
label for module creating recob::Track objects
std::string fG4ModuleLabel
label for module running G4 and making particles, etc
std::string fCheatedShowerLabel
label for module creating recob::Shower objects

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
void vertex::VertexCheater::produce ( art::Event evt)
virtual

Implements art::EDProducer.

Definition at line 61 of file VertexCheater_module.cc.

References util::CreateAssn(), DEFINE_ART_MODULE, e, fCheatedShowerLabel, fCheatedTrackLabel, art::fill_ptr_vector(), art::ProductRetriever::getByLabel(), hits(), cheat::ParticleInventoryService::ParticleList(), art::PtrVector< T >::push_back(), art::Event::put(), and art::PtrVector< T >::size().

62  {
64 
65  // grab the sim::ParticleList
66  const sim::ParticleList& plist = pi_serv->ParticleList();
67 
68  // grab the showers that have been reconstructed
70  evt.getByLabel(fCheatedShowerLabel, showercol);
71 
72  // make a vector of them - we aren't writing anything out to a file
73  // so no need for a art::PtrVector here
74  std::vector<art::Ptr<recob::Shower>> showers;
75  try {
76  art::fill_ptr_vector(showers, showercol);
77  }
78  catch (cet::exception& e) {
79  mf::LogWarning("VertexCheater") << "showers: " << e;
80  }
81 
82  // grab the tracks that have been reconstructed
84  evt.getByLabel(fCheatedTrackLabel, trackcol);
85 
86  // make a vector of them - we aren't writing anything out to a file
87  // so no need for a art::PtrVector here
88  std::vector<art::Ptr<recob::Track>> tracks;
89  try {
90  art::fill_ptr_vector(tracks, trackcol);
91  }
92  catch (cet::exception& e) {
93  mf::LogWarning("VertexCheater") << "tracks: " << e;
94  }
95 
98 
99  // loop over the prongs and figure out which primaries they are associated with
100  std::vector<art::Ptr<recob::Shower>>::iterator shwitr = showers.begin();
101  std::vector<art::Ptr<recob::Track>>::iterator trkitr = tracks.begin();
102 
103  // protect against events where there are either no tracks or no showers
104  if (tracks.size() < 1) trkitr = tracks.end();
105  if (showers.size() < 1) shwitr = showers.end();
106 
107  // make a map of eve id's to collections of prongs
108  std::map<int, std::vector<std::pair<size_t, art::Ptr<recob::Shower>>>> eveShowerMap;
109  std::map<int, std::vector<std::pair<size_t, art::Ptr<recob::Track>>>> eveTrackMap;
110 
111  // make a map of eve id's to the number of prongs corresponding to that id
112  std::vector<int> eveIDs;
113 
114  // loop over all showers
115  for (size_t s = 0; s < showers.size(); ++s) {
116 
117  std::pair<size_t, art::Ptr<recob::Shower>> idxShw(s, showers[s]);
118 
119  // in the ProngCheater module we set the prong ID to be
120  // the particle track ID creating the energy depositions
121  // of the prong
122  int prongID = showers[s]->ID();
123 
124  // now get the mother particle of this prong if it exists
125  // set the eveID to the mother particle track ID, or to the
126  // ID of this prong if it is primary and mother ID = 0
127  int eveID = plist[prongID]->Mother();
128  if (eveID < 1) eveID = prongID;
129 
130  if (std::find(eveIDs.begin(), eveIDs.end(), eveID) == eveIDs.end()) eveIDs.push_back(eveID);
131 
132  // now we want to associate all prongs having the same
133  // eve ID, so look to see if there are other prongs with that
134  // ID
135  eveShowerMap[eveID].push_back(idxShw);
136 
137  mf::LogInfo("VertexCheater") << "shower: " << prongID << " has mother " << eveID;
138 
139  } // end loop over showers
140 
141  // loop over all tracks
142  for (size_t t = 0; t < tracks.size(); ++t) {
143 
144  std::pair<size_t, art::Ptr<recob::Track>> idxTrk(t, tracks[t]);
145 
146  // in the ProngCheater module we set the prong ID to be
147  // the particle track ID creating the energy depositions
148  // of the prong
149  int prongID = tracks[t]->ID();
150 
151  // now get the mother particle of this prong if it exists
152  // set the eveID to the mother particle track ID, or to the
153  // ID of this prong if it is primary and mother ID = 0
154  int eveID = plist[prongID]->Mother();
155  if (eveID < 1) eveID = prongID;
156 
157  if (std::find(eveIDs.begin(), eveIDs.end(), eveID) == eveIDs.end()) eveIDs.push_back(eveID);
158 
159  // now we want to associate all prongs having the same
160  // eve ID, so look to see if there are other prongs with that
161  // ID
162  eveTrackMap[eveID].push_back(idxTrk);
163 
164  mf::LogInfo("VertexCheater") << "track: " << prongID << " has mother " << eveID;
165 
166  } // end loop over tracks
167 
168  std::unique_ptr<std::vector<recob::Vertex>> vertexcol(new std::vector<recob::Vertex>);
169  std::unique_ptr<art::Assns<recob::Vertex, recob::Shower>> vsassn(
171  std::unique_ptr<art::Assns<recob::Vertex, recob::Track>> vtassn(
173  std::unique_ptr<art::Assns<recob::Vertex, recob::Hit>> vhassn(
175 
176  // loop over the eve ID values and make Vertexs
177  for (auto const& eveID : eveIDs) {
178 
179  // Vertex objects require PtrVectors of showers and tracks as well
180  // as a vertex position for their constructor
183  std::vector<size_t> idxShw;
184  std::vector<size_t> idxTrk;
185 
186  // first get the showers
187  if (eveShowerMap.find(eveID) != eveShowerMap.end()) {
188  auto const& eveShowers = eveShowerMap[eveID];
189  for (auto const& is : eveShowers) {
190  ptrvshw.push_back(is.second);
191  idxShw.push_back(is.first);
192  } // end loop over showers for this particle
193  } // end find showers for this particle
194 
195  // now the tracks
196  if (eveTrackMap.find(eveID) != eveTrackMap.end()) {
197  auto const& eveTracks = eveTrackMap[eveID];
198  for (auto const& it : eveTracks) {
199  ptrvtrk.push_back(it.second);
200  idxTrk.push_back(it.first);
201  } // end loop over tracks for this particle
202  } // end find tracks for this particle
203 
204  double xyz[3] = {plist[eveID]->Vx(), plist[eveID]->Vy(), plist[eveID]->Vz()};
205 
206  // add a vector to the collection.
207  vertexcol->push_back(recob::Vertex(xyz, eveID));
208 
209  // associate the vertex with its showers and tracks
210 
211  if (ptrvtrk.size() > 0) {
212  util::CreateAssn(evt, *vertexcol, ptrvtrk, *vtassn);
213 
214  // get the hits associated with each track and associate those with the vertex
215  for (auto const& i : idxTrk) {
216  std::vector<art::Ptr<recob::Hit>> hits = fmht.at(i);
217  util::CreateAssn(evt, *vertexcol, hits, *vhassn);
218  }
219  }
220 
221  if (ptrvshw.size() > 0) {
222  util::CreateAssn(evt, *vertexcol, ptrvshw, *vsassn);
223  // get the hits associated with each shower and associate those with the vertex
224  for (auto const& i : idxShw) {
225  std::vector<art::Ptr<recob::Hit>> hits = fmhs.at(i);
226  util::CreateAssn(evt, *vertexcol, hits, *vhassn);
227  }
228  }
229 
230  mf::LogInfo("VertexCheater") << "adding vertex: \n"
231  << vertexcol->back() << "\nto collection.";
232 
233  } // end loop over the eve ID values
234 
235  evt.put(std::move(vertexcol));
236  evt.put(std::move(vsassn));
237  evt.put(std::move(vtassn));
238  evt.put(std::move(vhassn));
239 
240  return;
241 
242  } // end produce
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
std::string fCheatedTrackLabel
label for module creating recob::Track objects
Definition of vertex object for LArSoft.
Definition: Vertex.h:35
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
void hits()
Definition: readHits.C:15
void push_back(Ptr< U > const &p)
Definition: PtrVector.h:435
size_type size() const
Definition: PtrVector.h:302
const sim::ParticleList & ParticleList() const
std::string fCheatedShowerLabel
label for module creating recob::Shower objects
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
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
void fill_ptr_vector(std::vector< Ptr< T >> &ptrs, H const &h)
Definition: Ptr.h:306
Float_t e
Definition: plot.C:35
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
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 vertex::VertexCheater::fCheatedShowerLabel
private

label for module creating recob::Shower objects

Definition at line 40 of file VertexCheater_module.cc.

Referenced by produce(), and VertexCheater().

std::string vertex::VertexCheater::fCheatedTrackLabel
private

label for module creating recob::Track objects

Definition at line 39 of file VertexCheater_module.cc.

Referenced by produce(), and VertexCheater().

std::string vertex::VertexCheater::fG4ModuleLabel
private

label for module running G4 and making particles, etc

Definition at line 41 of file VertexCheater_module.cc.

Referenced by VertexCheater().


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