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

 NucleonDecay (fhicl::ParameterSet const &p)
 
 NucleonDecay (NucleonDecay const &)=delete
 
 NucleonDecay (NucleonDecay &&)=delete
 
NucleonDecayoperator= (NucleonDecay const &)=delete
 
NucleonDecayoperator= (NucleonDecay &&)=delete
 
void produce (art::Event &e) override
 
void beginRun (art::Run &run) override
 
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

const genie::EventRecordVisitorI * mcgen
 
genie::NucleonDecayMode_t gOptDecayMode = genie::kNDNull
 
int dpdg = 0
 
CLHEP::RandFlat flatDist
 

Detailed Description

Definition at line 52 of file NucleonDecay_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

evgen::NucleonDecay::NucleonDecay ( fhicl::ParameterSet const &  p)
explicit

Definition at line 78 of file NucleonDecay_module.cc.

References art::detail::EngineCreator::createEngine(), dpdg, flatDist, gOptDecayMode, mcgen, seed, and evgb::SetEventGeneratorListAndTune().

79  : art::EDProducer{p}
80  // create a default random engine; obtain the random seed from NuRandomService,
81  // unless overridden in configuration with key "Seed"
83  -> registerAndSeedEngine(createEngine(0), p, "Seed")}
84 {
85  string sname = "genie::EventGenerator";
86  string sconfig = "NucleonDecay";
87  // GENIE v3 needs a tune (even if irrelevant)
88  evgb::SetEventGeneratorListAndTune("Default", "Default");
89 
90  genie::PDGLibrary::Instance(); //Ensure Messenger is started first in GENIE.
91 
92  genie::AlgFactory* algf = genie::AlgFactory::Instance();
93  mcgen = dynamic_cast<const genie::EventRecordVisitorI*>(algf->GetAlgorithm(sname, sconfig));
94  if (!mcgen) {
95  throw cet::exception("NucleonDecay") << "Couldn't instantiate the nucleon decay generator";
96  }
97  int fDecayMode = p.get<int>("DecayMode");
98  gOptDecayMode = (genie::NucleonDecayMode_t)fDecayMode;
99 
100  if (p.get<int>("DecayedNucleon") > 0) { dpdg = p.get<int>("DecayedNucleon"); }
101  else {
102  dpdg = genie::utils::nucleon_decay::DecayedNucleonPdgCode(gOptDecayMode);
103  }
104 
105  produces<std::vector<simb::MCTruth>>();
106  produces<sumdata::RunData, art::InRun>();
107 
108  unsigned int seed = art::ServiceHandle<rndm::NuRandomService>()->getSeed();
109  genie::utils::app_init::RandGen(seed);
110 }
base_engine_t & createEngine(seed_t seed)
genie::NucleonDecayMode_t gOptDecayMode
CLHEP::RandFlat flatDist
const genie::EventRecordVisitorI * mcgen
long seed
Definition: chem4.cc:67
void SetEventGeneratorListAndTune(const std::string &evtlistname="", const std::string &tunename="${GENIE_XSEC_TUNE}")
Definition: GENIE2ART.cxx:128
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
evgen::NucleonDecay::NucleonDecay ( NucleonDecay const &  )
delete
evgen::NucleonDecay::NucleonDecay ( NucleonDecay &&  )
delete

Member Function Documentation

void evgen::NucleonDecay::beginRun ( art::Run run)
overridevirtual

Reimplemented from art::EDProducer.

Definition at line 191 of file NucleonDecay_module.cc.

References DEFINE_ART_MODULE, geo::GeometryCore::DetectorName(), art::fullRun(), and art::Run::put().

192 {
194  run.put(std::make_unique<sumdata::RunData>(geo->DetectorName()), art::fullRun());
195 }
constexpr auto fullRun()
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Run.h:121
std::string const & DetectorName() const
Returns a string with the name of the detector, as configured.
Definition: GeometryCore.h:203
Namespace collecting geometry-related classes utilities.
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
NucleonDecay& evgen::NucleonDecay::operator= ( NucleonDecay const &  )
delete
NucleonDecay& evgen::NucleonDecay::operator= ( NucleonDecay &&  )
delete
void evgen::NucleonDecay::produce ( art::Event e)
overridevirtual

Implements art::EDProducer.

Definition at line 112 of file NucleonDecay_module.cc.

References simb::MCTruth::Add(), dpdg, flatDist, gOptDecayMode, lcvn::interaction, geo::GeometryCore::Iterate(), simb::kUnknown, mcgen, MF_LOG_DEBUG, part, art::Event::put(), simb::MCTruth::SetOrigin(), and target.

113 {
114  // Implementation of required member function here.
115  genie::EventRecord* event = new genie::EventRecord;
116  int target = 1000180400; //Only use argon target
117  int decay = (int)gOptDecayMode;
118  genie::Interaction* interaction = genie::Interaction::NDecay(target, decay, dpdg);
119  event->AttachSummary(interaction);
120 
121  // Simulate decay
122  mcgen->ProcessEventRecord(event);
123 
124  // genie::Interaction *inter = event->Summary();
125  // const genie::InitialState &initState = inter->InitState();
126  // std::cout<<"initState = "<<initState.AsString()<<std::endl;
127  // const genie::ProcessInfo &procInfo = inter->ProcInfo();
128  // std::cout<<"procInfo = "<<procInfo.AsString()<<std::endl;
129  MF_LOG_DEBUG("NucleonDecay") << "Generated event: " << *event;
130 
131  std::unique_ptr<std::vector<simb::MCTruth>> truthcol(new std::vector<simb::MCTruth>);
132  simb::MCTruth truth;
133 
135 
136  // Find boundary of active volume
137  double minx = 1e9;
138  double maxx = -1e9;
139  double miny = 1e9;
140  double maxy = -1e9;
141  double minz = 1e9;
142  double maxz = -1e9;
143  for (auto const& tpc : geo->Iterate<geo::TPCGeo>(geo::CryostatID{0})) {
144  if (minx > tpc.MinX()) minx = tpc.MinX();
145  if (maxx < tpc.MaxX()) maxx = tpc.MaxX();
146  if (miny > tpc.MinY()) miny = tpc.MinY();
147  if (maxy < tpc.MaxY()) maxy = tpc.MaxY();
148  if (minz > tpc.MinZ()) minz = tpc.MinZ();
149  if (maxz < tpc.MaxZ()) maxz = tpc.MaxZ();
150  }
151 
152  // Assign vertice position
153  double X0 = flatDist.fire(minx, maxx);
154  double Y0 = flatDist.fire(miny, maxy);
155  double Z0 = flatDist.fire(minz, maxz);
156 
157  TIter partitr(event);
158  genie::GHepParticle* part = 0;
159  // GHepParticles return units of GeV/c for p. the V_i are all in fermis
160  // and are relative to the center of the struck nucleus.
161  // add the vertex X/Y/Z to the V_i for status codes 0 and 1
162  int trackid = 0;
163  std::string primary("primary");
164 
165  while ((part = dynamic_cast<genie::GHepParticle*>(partitr.Next()))) {
166 
167  simb::MCParticle tpart(
168  trackid, part->Pdg(), primary, part->FirstMother(), part->Mass(), part->Status());
169 
170  TLorentzVector pos(X0, Y0, Z0, 0);
171  TLorentzVector mom(part->Px(), part->Py(), part->Pz(), part->E());
172  tpart.AddTrajectoryPoint(pos, mom);
173  if (part->PolzIsSet()) {
174  TVector3 polz;
175  part->GetPolarization(polz);
176  tpart.SetPolarization(polz);
177  }
178  tpart.SetRescatter(part->RescatterCode());
179  truth.Add(tpart);
180 
181  ++trackid;
182  } // end loop to convert GHepParticles to MCParticles
183  truth.SetOrigin(simb::kUnknown);
184  truthcol->push_back(truth);
185  //FillHistograms(truth);
186  e.put(std::move(truthcol));
187 
188  delete event;
189 }
details::range_type< T > Iterate() const
Initializes the specified ID with the ID of the first cryostat.
Definition: GeometryCore.h:541
genie::NucleonDecayMode_t gOptDecayMode
CLHEP::RandFlat flatDist
void SetOrigin(simb::Origin_t origin)
Definition: MCTruth.h:82
const genie::EventRecordVisitorI * mcgen
Geometry information for a single TPC.
Definition: TPCGeo.h:36
PutHandle< PROD > put(std::unique_ptr< PROD > &&edp, std::string const &instance={})
Definition: Event.h:77
TString part[npart]
Definition: Style.C:32
void Add(simb::MCParticle const &part)
Definition: MCTruth.h:80
#define MF_LOG_DEBUG(id)
cout<< "-> Edep in the target
Definition: analysis.C:53
Event generator information.
Definition: MCTruth.h:32
Namespace collecting geometry-related classes utilities.
Event finding and building.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:192
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

int evgen::NucleonDecay::dpdg = 0
private

Definition at line 74 of file NucleonDecay_module.cc.

Referenced by NucleonDecay(), and produce().

CLHEP::RandFlat evgen::NucleonDecay::flatDist
private

Definition at line 75 of file NucleonDecay_module.cc.

Referenced by NucleonDecay(), and produce().

genie::NucleonDecayMode_t evgen::NucleonDecay::gOptDecayMode = genie::kNDNull
private

Definition at line 73 of file NucleonDecay_module.cc.

Referenced by NucleonDecay(), and produce().

const genie::EventRecordVisitorI* evgen::NucleonDecay::mcgen
private

Definition at line 72 of file NucleonDecay_module.cc.

Referenced by NucleonDecay(), and produce().


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