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

 MCReco (fhicl::ParameterSet const &p)
 
void produce (art::Event &e) override
 
template<typename T >
void MakeMCEdep (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

art::InputTag fMCParticleLabel
 
art::InputTag fMCParticleDroppedLabel
 
art::InputTag fSimChannelLabel
 
bool fUseSimEnergyDeposit
 
bool fUseSimEnergyDepositLite
 
bool fIncludeDroppedParticles
 
::sim::MCRecoPart fPart
 
::sim::MCRecoEdep fEdep
 
::sim::MCShowerRecoAlg fMCSAlg
 
::sim::MCTrackRecoAlg fMCTAlg
 

Detailed Description

Definition at line 28 of file MCReco_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

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

Definition at line 52 of file MCReco_module.cc.

References fEdep, fIncludeDroppedParticles, fMCParticleDroppedLabel, fMCParticleLabel, fMCSAlg, fMCTAlg, fPart, fSimChannelLabel, fUseSimEnergyDeposit, and fUseSimEnergyDepositLite.

53  : EDProducer{pset}
54  , fPart(pset.get<fhicl::ParameterSet>("MCRecoPart"))
55  , fEdep(pset.get<fhicl::ParameterSet>("MCRecoEdep"))
56  , fMCSAlg(pset.get<fhicl::ParameterSet>("MCShowerRecoAlg"))
57  , fMCTAlg(pset.get<fhicl::ParameterSet>("MCTrackRecoAlg"))
58 {
59 
60  //for backwards compatibility to using the "G4ModName" label...
61  if (!(pset.get_if_present<art::InputTag>("MCParticleLabel", fMCParticleLabel) &&
62  pset.get_if_present<art::InputTag>("SimChannelLabel", fSimChannelLabel))) {
63 
64  mf::LogWarning("MCReco_module") << "USING DEPRECATED G4ModName CONFIG IN MCRECO_MODULE"
65  << "\nUse 'MCParticleLabel' and 'SimChannelLabel' instead.";
66 
67  fMCParticleLabel = pset.get<art::InputTag>("G4ModName", "largeant");
68  fMCParticleDroppedLabel = pset.get<art::InputTag>("G4ModName", "largeant:droppedMCParticles");
69  fSimChannelLabel = pset.get<art::InputTag>("G4ModName", "largeant");
70  }
71  else {
73  pset.get<art::InputTag>("MCParticleDroppedLabel", "largeant:droppedMCParticles");
74  }
75 
76  fUseSimEnergyDeposit = pset.get<bool>("UseSimEnergyDeposit", false);
77  fUseSimEnergyDepositLite = pset.get<bool>("UseSimEnergyDepositLite", false);
78  fIncludeDroppedParticles = pset.get<bool>("IncludeDroppedParticles", false);
79 
80  if (fUseSimEnergyDepositLite && fUseSimEnergyDeposit) {
81  mf::LogWarning("MCReco_module")
82  << "Asked to use both SimEnergyDeposit and SimEnergyDepositLite - will use SimEnergyDeposit.";
83  }
84 
85  produces<std::vector<sim::MCShower>>();
86  produces<std::vector<sim::MCTrack>>();
87  // Call appropriate produces<>() functions here.
88 
89  //MCReco::~MCReco()
90  //{
91  // Clean up dynamic memory and other resources here.
92  //}
93 }
EDProducer(fhicl::ParameterSet const &pset)
Definition: EDProducer.cc:6
::sim::MCShowerRecoAlg fMCSAlg
bool fIncludeDroppedParticles
::sim::MCRecoEdep fEdep
art::InputTag fMCParticleLabel
bool fUseSimEnergyDepositLite
::sim::MCRecoPart fPart
art::InputTag fSimChannelLabel
bool fUseSimEnergyDeposit
::sim::MCTrackRecoAlg fMCTAlg
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
art::InputTag fMCParticleDroppedLabel

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
template<typename T >
void MCReco::MakeMCEdep ( art::Event evt)

Definition at line 146 of file MCReco_module.cc.

References DEFINE_ART_MODULE, fEdep, fSimChannelLabel, art::ProductRetriever::getValidHandle(), and sim::MCRecoEdep::MakeMCEdep().

147 {
148  // Retrieve T
149  auto const& sed_array = *evt.getValidHandle<std::vector<T>>(fSimChannelLabel);
150  fEdep.MakeMCEdep(sed_array);
151 }
void MakeMCEdep(const std::vector< sim::SimChannel > &schArray)
Definition: MCRecoEdep.cxx:62
::sim::MCRecoEdep fEdep
art::InputTag fSimChannelLabel
ValidHandle< PROD > getValidHandle(InputTag const &tag) 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 MCReco::produce ( art::Event e)
overridevirtual

Implements art::EDProducer.

Definition at line 95 of file MCReco_module.cc.

References sim::MCRecoPart::AddParticles(), sim::MCRecoEdep::Clear(), tca::evt, fEdep, fIncludeDroppedParticles, fMCParticleDroppedLabel, fMCParticleLabel, fMCSAlg, fMCTAlg, fPart, fUseSimEnergyDeposit, fUseSimEnergyDepositLite, art::ProductRetriever::getByLabel(), art::ProductRetriever::getValidHandle(), art::Handle< T >::isValid(), simb::MCTruth::Origin(), art::Event::put(), sim::MCTrackRecoAlg::Reconstruct(), and sim::MCShowerRecoAlg::Reconstruct().

96 {
97  // std::unique_ptr< std::vector<sim::MCTrack> > outTrackArray(new std::vector<sim::MCTrack>);
98 
99  // Retrieve mcparticles
101  evt.getByLabel(fMCParticleLabel, mcpHandle);
102  if (!mcpHandle.isValid())
103  throw cet::exception(__FUNCTION__) << "Failed to retrieve simb::MCParticle";
104  ;
105 
106  // Find associations
108  std::vector<simb::Origin_t> orig_array;
109  orig_array.reserve(mcpHandle->size());
110  for (size_t i = 0; i < mcpHandle->size(); ++i) {
111  const art::Ptr<simb::MCTruth>& mct = ass.at(i);
112  orig_array.push_back(mct->Origin());
113  }
114 
115  const std::vector<simb::MCParticle>& mcp_array(*mcpHandle);
116 
118  auto const& mcmp_array =
119  *evt.getValidHandle<std::vector<simb::MCParticle>>(fMCParticleDroppedLabel);
120  fPart.AddParticles(mcp_array, orig_array, mcmp_array);
121  } // end if fIncludeDroppedParticles
122  else {
123  fPart.AddParticles(mcp_array, orig_array);
124  }
125 
126  // change implemented by David Caratelli to allow for MCRECO to run without SimChannels and using
127  // SimEnergyDeposits instead
128  if (fUseSimEnergyDeposit == true) { MakeMCEdep<sim::SimEnergyDeposit>(evt); }
129  // change implemented by Laura Domine to allow for MCRECO to run with SimEnergyDepositLite
130  else if (fUseSimEnergyDepositLite == true) {
131  MakeMCEdep<sim::SimEnergyDepositLite>(evt);
132  }
133  else {
134  MakeMCEdep<sim::SimChannel>(evt);
135  }
136 
137  //Add MCShowers and MCTracks to the event
140 
141  fEdep.Clear();
142  fPart.clear();
143 }
simb::Origin_t Origin() const
Definition: MCTruth.h:74
std::unique_ptr< std::vector< sim::MCShower > > Reconstruct(MCRecoPart &part_v, MCRecoEdep &edep_v)
::sim::MCShowerRecoAlg fMCSAlg
bool fIncludeDroppedParticles
void AddParticles(const std::vector< simb::MCParticle > &mcp_v, const std::vector< simb::Origin_t > &orig_v, const std::vector< simb::MCParticle > &mcmp_v={})
Definition: MCRecoPart.cxx:133
bool isValid() const noexcept
Definition: Handle.h:203
::sim::MCRecoEdep fEdep
art::InputTag fMCParticleLabel
bool fUseSimEnergyDepositLite
::sim::MCRecoPart fPart
bool fUseSimEnergyDeposit
::sim::MCTrackRecoAlg fMCTAlg
art::InputTag fMCParticleDroppedLabel
std::unique_ptr< std::vector< sim::MCTrack > > Reconstruct(MCRecoPart &part_v, MCRecoEdep &edep_v)
TCEvent evt
Definition: DataStructs.cxx:8
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

::sim::MCRecoEdep MCReco::fEdep
private

Definition at line 47 of file MCReco_module.cc.

Referenced by MakeMCEdep(), MCReco(), and produce().

bool MCReco::fIncludeDroppedParticles
private

Definition at line 44 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

art::InputTag MCReco::fMCParticleDroppedLabel
private

Definition at line 40 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

art::InputTag MCReco::fMCParticleLabel
private

Definition at line 39 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

::sim::MCShowerRecoAlg MCReco::fMCSAlg
private

Definition at line 48 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

::sim::MCTrackRecoAlg MCReco::fMCTAlg
private

Definition at line 49 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

::sim::MCRecoPart MCReco::fPart
private

Definition at line 46 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

art::InputTag MCReco::fSimChannelLabel
private

Definition at line 41 of file MCReco_module.cc.

Referenced by MakeMCEdep(), and MCReco().

bool MCReco::fUseSimEnergyDeposit
private

Definition at line 42 of file MCReco_module.cc.

Referenced by MCReco(), and produce().

bool MCReco::fUseSimEnergyDepositLite
private

Definition at line 43 of file MCReco_module.cc.

Referenced by MCReco(), and produce().


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