LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
simfilter::FilterSimPhotonLiteTime Class Reference
Inheritance diagram for simfilter::FilterSimPhotonLiteTime:
art::SharedFilter art::detail::Filter art::detail::SharedModule art::Modifier art::ModuleBase art::ProductRegistryHelper

Public Types

using ModuleType = SharedFilter
 
template<typename UserConfig >
using Table = Modifier::Table< UserConfig >
 

Public Member Functions

 FilterSimPhotonLiteTime (fhicl::ParameterSet const &p, art::ProcessingFrame const &)
 
 FilterSimPhotonLiteTime (FilterSimPhotonLiteTime const &)=delete
 
 FilterSimPhotonLiteTime (FilterSimPhotonLiteTime &&)=delete
 
FilterSimPhotonLiteTimeoperator= (FilterSimPhotonLiteTime const &)=delete
 
FilterSimPhotonLiteTimeoperator= (FilterSimPhotonLiteTime &&)=delete
 
void doBeginJob (SharedResources const &resources)
 
void doEndJob ()
 
void doRespondToOpenInputFile (FileBlock const &fb)
 
void doRespondToCloseInputFile (FileBlock const &fb)
 
void doRespondToOpenOutputFiles (FileBlock const &fb)
 
void doRespondToCloseOutputFiles (FileBlock const &fb)
 
bool doBeginRun (RunPrincipal &rp, ModuleContext const &)
 
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)
 
hep::concurrency::SerialTaskQueueChain * serialTaskQueueChain () const
 
std::set< std::string > const & sharedResources () const
 
void createQueues (SharedResources const &resources)
 
template<BranchType , typename... T>
void serialize (T const &...resources)
 
template<BranchType , typename... T>
void serializeExternal (T const &...resources)
 

Static Public Attributes

static constexpr bool Pass {true}
 
static constexpr bool Fail {false}
 

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 ()
 
template<BranchType BT = InEvent, typename... T>
void serialize (T const &...)
 
template<BranchType BT = InEvent, typename... T>
void serializeExternal (T const &...)
 
template<BranchType BT = InEvent>
void async ()
 

Private Member Functions

bool filter (art::Event &e, art::ProcessingFrame const &) override
 
void CheckTimeWindows () const
 

Private Attributes

std::string const fSimPhotonsLiteCollectionLabel
 Label for the sim::SimPhotonsLite data product. More...
 
std::vector< std::pair< int, int > > const fTimeWindows
 Time windows used for filtering. Units are the same as in the sim::SimPhotonsLite. More...
 
int const fMinTotalPhotons
 Minimum number of photons inside a window to pass the filter. More...
 
bool const fDebug
 Set to true to print (a lot of) debug information. More...
 
std::size_t const fN
 Number of time winows. More...
 
bool const fUseReflectedPhotons
 Whether to include reflected photons in the filter. More...
 
std::string const fReflectedLabel
 Label for the reflected photons – "Reflected" by default. More...
 

Detailed Description

Definition at line 32 of file FilterSimPhotonLiteTime_module.cc.

Member Typedef Documentation

Definition at line 19 of file SharedFilter.h.

template<typename UserConfig >
using art::detail::Filter::Table = Modifier::Table<UserConfig>
inherited

Definition at line 32 of file Filter.h.

Constructor & Destructor Documentation

simfilter::FilterSimPhotonLiteTime::FilterSimPhotonLiteTime ( fhicl::ParameterSet const &  p,
art::ProcessingFrame const &   
)
explicit

Definition at line 58 of file FilterSimPhotonLiteTime_module.cc.

References CheckTimeWindows(), fDebug, fMinTotalPhotons, fN, fReflectedLabel, fSimPhotonsLiteCollectionLabel, fTimeWindows, fUseReflectedPhotons, art::detail::SharedModule::serialize(), and lar::dump::vector().

60  : SharedFilter{p}
61  , fSimPhotonsLiteCollectionLabel(p.get<std::string>("SimPhotonsLiteCollectionLabel"))
62  , fTimeWindows(p.get<std::vector<std::pair<int, int>>>("TimeWindows"))
63  , fMinTotalPhotons(p.get<int>("MinTotalPhotons"))
64  , fDebug(p.get<bool>("Debug", false))
65  , fN(fTimeWindows.size())
66  , fUseReflectedPhotons(p.get<bool>("UseReflectedPhotons", false))
67  , fReflectedLabel(p.get<std::string>("ReflectedLabel", "Reflected"))
68 {
70 
71  // For printing out debug messages, we want to serialize the
72  // event-level calls so that the messages are not garbled.
73  // Otherwise, this module works well for asynchronous event-level
74  // calls.
75  if (fDebug) { serialize(); }
76  else {
77  async<art::InEvent>();
78  }
79 }
int const fMinTotalPhotons
Minimum number of photons inside a window to pass the filter.
SharedFilter(fhicl::ParameterSet const &pset)
Definition: SharedFilter.cc:6
bool const fUseReflectedPhotons
Whether to include reflected photons in the filter.
bool const fDebug
Set to true to print (a lot of) debug information.
auto vector(Vector const &v)
Returns a manipulator which will print the specified array.
Definition: DumpUtils.h:289
std::string const fReflectedLabel
Label for the reflected photons – "Reflected" by default.
std::size_t const fN
Number of time winows.
void serialize(T const &...)
std::string const fSimPhotonsLiteCollectionLabel
Label for the sim::SimPhotonsLite data product.
std::vector< std::pair< int, int > > const fTimeWindows
Time windows used for filtering. Units are the same as in the sim::SimPhotonsLite.
simfilter::FilterSimPhotonLiteTime::FilterSimPhotonLiteTime ( FilterSimPhotonLiteTime const &  )
delete
simfilter::FilterSimPhotonLiteTime::FilterSimPhotonLiteTime ( FilterSimPhotonLiteTime &&  )
delete

Member Function Documentation

template<BranchType BT = InEvent>
void art::detail::SharedModule::async ( )
inlineprotectedinherited

Definition at line 38 of file SharedModule.h.

References art::detail::SharedModule::asyncDeclared_, art::detail::SharedModule::implicit_serialize(), art::InEvent, and art::detail::SharedModule::serialize_for().

39  {
40  static_assert(
41  BT == InEvent,
42  "async is currently supported only for the 'InEvent' level.");
43  asyncDeclared_ = true;
44  }
void simfilter::FilterSimPhotonLiteTime::CheckTimeWindows ( ) const
private

Definition at line 81 of file FilterSimPhotonLiteTime_module.cc.

References fDebug, and fTimeWindows.

Referenced by FilterSimPhotonLiteTime().

82 {
83 
84  if (fDebug)
85  std::cout << "\tFilterSimPhotonLiteTime: TimeWindows size is " << fTimeWindows.size()
86  << std::endl;
87 
88  for (auto const& tw : fTimeWindows) {
89  if (fDebug)
90  std::cout << "\t\tTimeWindow "
91  << "[" << tw.first << "," << tw.second << "]" << std::endl;
92 
93  if (tw.first > tw.second)
94  throw cet::exception("FilterSimPhotonLiteTime::CheckTimeWindows")
95  << "Bad time window initialization: tw.first>tw.second. Reverse the order!" << std::endl;
96  }
97 }
bool const fDebug
Set to true to print (a lot of) debug information.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
std::vector< std::pair< int, int > > const fTimeWindows
Time windows used for filtering. Units are the same as in the sim::SimPhotonsLite.
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::SharedModule::createQueues ( SharedResources const &  resources)
inherited

Definition at line 34 of file SharedModule.cc.

References art::detail::SharedModule::asyncDeclared_, util::cbegin(), util::cend(), art::detail::SharedModule::chain_, art::detail::SharedResources::createQueues(), e, util::empty(), art::errors::LogicError, and art::detail::SharedModule::resourceNames_.

Referenced by art::OutputModule::doBeginJob(), art::SharedFilter::setupQueues(), art::SharedProducer::setupQueues(), art::SharedAnalyzer::setupQueues(), art::EDFilter::setupQueues(), art::EDProducer::setupQueues(), and art::EDAnalyzer::setupQueues().

35  {
37  "An error occurred while processing scheduling options for a "
38  "module.\n"};
39  if (asyncDeclared_) {
40  if (empty(resourceNames_)) {
41  return;
42  }
43  throw e
44  << "async<art::InEvent>() cannot be called in combination with any "
45  "serialize<art::InEvent>(...) calls.\n";
46  }
47 
48  if (empty(resourceNames_)) {
49  throw e << "Either 'async<art::InEvent>()' or "
50  "'serialize<art::InEvent>(...)'\n"
51  "must be called in a shared module's constructor.\n";
52  }
53  std::vector<std::string> const names(cbegin(resourceNames_),
55  auto queues = resources.createQueues(names);
56  chain_ = std::make_unique<SerialTaskQueueChain>(queues);
57  }
decltype(auto) constexpr cend(T &&obj)
ADL-aware version of std::cend.
Definition: StdUtils.h:93
std::set< std::string > resourceNames_
Definition: SharedModule.h:76
std::unique_ptr< hep::concurrency::SerialTaskQueueChain > chain_
Definition: SharedModule.h:78
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
decltype(auto) constexpr cbegin(T &&obj)
ADL-aware version of std::cbegin.
Definition: StdUtils.h:85
Float_t e
Definition: plot.C:35
decltype(auto) constexpr empty(T &&obj)
ADL-aware version of std::empty.
Definition: StdUtils.h:109
void art::detail::Filter::doBeginJob ( SharedResources const &  resources)
inherited

Definition at line 29 of file Filter.cc.

30  {
31  setupQueues(resources);
32  ProcessingFrame const frame{ScheduleID{}};
33  beginJobWithFrame(frame);
34  }
virtual void setupQueues(SharedResources const &)=0
virtual void beginJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Filter::doBeginRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 72 of file Filter.cc.

References art::RunPrincipal::makeRun(), r, art::RunPrincipal::runID(), and art::ModuleContext::scheduleID().

73  {
74  auto r = rp.makeRun(mc, RangeSet::forRun(rp.runID()));
75  ProcessingFrame const frame{mc.scheduleID()};
76  bool const rc = beginRunWithFrame(r, frame);
77  r.commitProducts();
78  return rc;
79  }
TRandom r
Definition: spectrum.C:23
virtual bool beginRunWithFrame(Run &, ProcessingFrame const &)=0
static RangeSet forRun(RunID)
Definition: RangeSet.cc:51
bool art::detail::Filter::doBeginSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 92 of file Filter.cc.

References art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::SubRunPrincipal::subRunID().

93  {
94  auto sr = srp.makeSubRun(mc, RangeSet::forSubRun(srp.subRunID()));
95  ProcessingFrame const frame{mc.scheduleID()};
96  bool const rc = beginSubRunWithFrame(sr, frame);
97  sr.commitProducts();
98  return rc;
99  }
static RangeSet forSubRun(SubRunID)
Definition: RangeSet.cc:57
virtual bool beginSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
void art::detail::Filter::doEndJob ( )
inherited

Definition at line 37 of file Filter.cc.

38  {
39  ProcessingFrame const frame{ScheduleID{}};
40  endJobWithFrame(frame);
41  }
virtual void endJobWithFrame(ProcessingFrame const &)=0
bool art::detail::Filter::doEndRun ( RunPrincipal rp,
ModuleContext const &  mc 
)
inherited

Definition at line 82 of file Filter.cc.

References art::RunPrincipal::makeRun(), r, art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

83  {
84  auto r = rp.makeRun(mc, rp.seenRanges());
85  ProcessingFrame const frame{mc.scheduleID()};
86  bool const rc = endRunWithFrame(r, frame);
87  r.commitProducts();
88  return rc;
89  }
TRandom r
Definition: spectrum.C:23
virtual bool endRunWithFrame(Run &, ProcessingFrame const &)=0
bool art::detail::Filter::doEndSubRun ( SubRunPrincipal srp,
ModuleContext const &  mc 
)
inherited

Definition at line 102 of file Filter.cc.

References art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::Principal::seenRanges().

103  {
104  auto sr = srp.makeSubRun(mc, srp.seenRanges());
105  ProcessingFrame const frame{mc.scheduleID()};
106  bool const rc = endSubRunWithFrame(sr, frame);
107  sr.commitProducts();
108  return rc;
109  }
virtual bool endSubRunWithFrame(SubRun &, ProcessingFrame const &)=0
bool art::detail::Filter::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 112 of file Filter.cc.

References e, art::EventPrincipal::makeEvent(), and art::ModuleContext::scheduleID().

117  {
118  auto e = ep.makeEvent(mc);
119  ++counts_run;
120  ProcessingFrame const frame{mc.scheduleID()};
121  bool const rc = filterWithFrame(e, frame);
122  e.commitProducts(checkPutProducts_, &expectedProducts<InEvent>());
123  if (rc) {
124  ++counts_passed;
125  } else {
126  ++counts_failed;
127  }
128  return rc;
129  }
virtual bool filterWithFrame(Event &, ProcessingFrame const &)=0
bool const checkPutProducts_
Definition: Filter.h:75
Float_t e
Definition: plot.C:35
void art::detail::Filter::doRespondToCloseInputFile ( FileBlock const &  fb)
inherited

Definition at line 51 of file Filter.cc.

52  {
53  ProcessingFrame const frame{ScheduleID{}};
55  }
TFile fb("Li6.root")
virtual void respondToCloseInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
void art::detail::Filter::doRespondToCloseOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 65 of file Filter.cc.

66  {
67  ProcessingFrame const frame{ScheduleID{}};
69  }
TFile fb("Li6.root")
virtual void respondToCloseOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
void art::detail::Filter::doRespondToOpenInputFile ( FileBlock const &  fb)
inherited

Definition at line 44 of file Filter.cc.

45  {
46  ProcessingFrame const frame{ScheduleID{}};
48  }
TFile fb("Li6.root")
virtual void respondToOpenInputFileWithFrame(FileBlock const &, ProcessingFrame const &)=0
void art::detail::Filter::doRespondToOpenOutputFiles ( FileBlock const &  fb)
inherited

Definition at line 58 of file Filter.cc.

59  {
60  ProcessingFrame const frame{ScheduleID{}};
62  }
TFile fb("Li6.root")
virtual void respondToOpenOutputFilesWithFrame(FileBlock const &, ProcessingFrame const &)=0
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
bool simfilter::FilterSimPhotonLiteTime::filter ( art::Event e,
art::ProcessingFrame const &   
)
overrideprivatevirtual

Implements art::SharedFilter.

Definition at line 99 of file FilterSimPhotonLiteTime_module.cc.

References DEFINE_ART_MODULE, sim::SimPhotonsLite::DetectedPhotons, fDebug, fMinTotalPhotons, fN, fReflectedLabel, fSimPhotonsLiteCollectionLabel, fTimeWindows, fUseReflectedPhotons, art::ProductRetriever::getValidHandle(), and sim::SimPhotonsLite::OpChannel.

100 {
101  auto const& simPhotonsLiteCollection =
102  *e.getValidHandle<std::vector<sim::SimPhotonsLite>>(fSimPhotonsLiteCollectionLabel);
103 
104  std::vector<int> sumNPhotonArray(fN, 0);
105 
106  const std::vector<sim::SimPhotonsLite>& simPhotonsLiteCollectionReflected =
107  fUseReflectedPhotons ? *e.getValidHandle<std::vector<sim::SimPhotonsLite>>(
109  std::vector<sim::SimPhotonsLite>();
110 
111  size_t n_sim_photons = simPhotonsLiteCollection.size() + simPhotonsLiteCollectionReflected.size();
112 
113  if (fDebug) {
114  std::cout << "New event to filter with total # sim photons: " << n_sim_photons << std::endl;
115  }
116 
117  for (size_t i_pc = 0; i_pc < n_sim_photons; i_pc++) {
118  const sim::SimPhotonsLite& simphotonslite =
119  (i_pc < simPhotonsLiteCollection.size()) ?
120  simPhotonsLiteCollection[i_pc] :
121  simPhotonsLiteCollectionReflected[i_pc - simPhotonsLiteCollection.size()];
122 
123  if (fDebug)
124  std::cout << "\tFilterSimPhotonLiteTime: Processing simphotonslite channel "
125  << simphotonslite.OpChannel << std::endl;
126 
127  for (auto const& photon_pair : simphotonslite.DetectedPhotons) {
128  for (size_t i_tw = 0; i_tw < fN; i_tw++) {
129  auto const& tw(fTimeWindows[i_tw]);
130  if (photon_pair.first >= tw.first && photon_pair.first <= tw.second) {
131 
132  if (fDebug) {
133  std::string photon_string =
134  (i_pc < simPhotonsLiteCollection.size()) ? "Photon" : "Reflected Photon";
135  std::cout << "\t\t" << photon_string << " with number " << photon_pair.second
136  << " at time " << photon_pair.first << " detected." << std::endl;
137  }
138 
139  sumNPhotonArray[i_tw] += photon_pair.second;
140 
141  if (fDebug)
142  std::cout << "\t\tTotal number of photons in this window (" << i_tw << ") is now "
143  << sumNPhotonArray[i_tw] << std::endl;
144 
145  if (sumNPhotonArray[i_tw] >= fMinTotalPhotons) return true;
146  }
147  }
148  }
149  }
150 
151  if (fDebug) {
152  std::cout << "\tFilterSimPhotonLiteTime: Final total numbers are below min of "
153  << fMinTotalPhotons << ":" << std::endl;
154  for (size_t i_tw = 0; i_tw < fN; ++i_tw) {
155  std::cout << "\t\tTimeWindow "
156  << "[" << fTimeWindows[i_tw].first << "," << fTimeWindows[i_tw].second
157  << "]: " << sumNPhotonArray[i_tw] << std::endl;
158  }
159  }
160 
161  return false;
162 }
int const fMinTotalPhotons
Minimum number of photons inside a window to pass the filter.
bool const fUseReflectedPhotons
Whether to include reflected photons in the filter.
std::map< int, int > DetectedPhotons
Number of photons detected at each given time: time tick -> photons.
Definition: SimPhotons.h:109
bool const fDebug
Set to true to print (a lot of) debug information.
std::string const fReflectedLabel
Label for the reflected photons – "Reflected" by default.
int OpChannel
Optical detector channel associated to this data.
Definition: SimPhotons.h:106
Compact representation of photons on a channel.
Definition: SimPhotons.h:98
std::size_t const fN
Number of time winows.
ValidHandle< PROD > getValidHandle(InputTag const &tag) const
std::string const fSimPhotonsLiteCollectionLabel
Label for the sim::SimPhotonsLite data product.
std::vector< std::pair< int, int > > const fTimeWindows
Time windows used for filtering. Units are the same as in the sim::SimPhotonsLite.
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
FilterSimPhotonLiteTime& simfilter::FilterSimPhotonLiteTime::operator= ( FilterSimPhotonLiteTime const &  )
delete
FilterSimPhotonLiteTime& simfilter::FilterSimPhotonLiteTime::operator= ( FilterSimPhotonLiteTime &&  )
delete
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
template<BranchType BT = InEvent, typename... T>
void art::detail::SharedModule::serialize ( T const &  ...)
protectedinherited
template<BranchType , typename... T>
void art::detail::SharedModule::serialize ( T const &...  resources)
inherited

Definition at line 83 of file SharedModule.h.

References art::detail::SharedModule::serialize_for_resource().

84  {
85  serialize_for_resource(resources...);
86  }
void serialize_for_resource(T const &...t)
Definition: SharedModule.h:52
template<BranchType BT = InEvent, typename... T>
void art::detail::SharedModule::serializeExternal ( T const &  ...)
protectedinherited
template<BranchType , typename... T>
void art::detail::SharedModule::serializeExternal ( T const &...  resources)
inherited

Definition at line 90 of file SharedModule.h.

References art::detail::SharedModule::serialize_for_external_resource().

91  {
92  serialize_for_external_resource(resources...);
93  }
void serialize_for_external_resource(T const &...t)
Definition: SharedModule.h:65
SerialTaskQueueChain * art::detail::SharedModule::serialTaskQueueChain ( ) const
inherited

Definition at line 22 of file SharedModule.cc.

References art::detail::SharedModule::chain_.

23  {
24  return chain_.get();
25  }
std::unique_ptr< hep::concurrency::SerialTaskQueueChain > chain_
Definition: SharedModule.h:78
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
std::set< std::string > const & art::detail::SharedModule::sharedResources ( ) const
inherited

Definition at line 28 of file SharedModule.cc.

References art::detail::SharedModule::resourceNames_.

29  {
30  return resourceNames_;
31  }
std::set< std::string > resourceNames_
Definition: SharedModule.h:76
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

constexpr bool art::detail::Filter::Fail {false}
staticinherited

Definition at line 29 of file Filter.h.

bool const simfilter::FilterSimPhotonLiteTime::fDebug
private

Set to true to print (a lot of) debug information.

Definition at line 50 of file FilterSimPhotonLiteTime_module.cc.

Referenced by CheckTimeWindows(), filter(), and FilterSimPhotonLiteTime().

int const simfilter::FilterSimPhotonLiteTime::fMinTotalPhotons
private

Minimum number of photons inside a window to pass the filter.

Definition at line 49 of file FilterSimPhotonLiteTime_module.cc.

Referenced by filter(), and FilterSimPhotonLiteTime().

std::size_t const simfilter::FilterSimPhotonLiteTime::fN
private

Number of time winows.

Definition at line 51 of file FilterSimPhotonLiteTime_module.cc.

Referenced by filter(), and FilterSimPhotonLiteTime().

std::string const simfilter::FilterSimPhotonLiteTime::fReflectedLabel
private

Label for the reflected photons – "Reflected" by default.

Definition at line 53 of file FilterSimPhotonLiteTime_module.cc.

Referenced by filter(), and FilterSimPhotonLiteTime().

std::string const simfilter::FilterSimPhotonLiteTime::fSimPhotonsLiteCollectionLabel
private

Label for the sim::SimPhotonsLite data product.

Definition at line 46 of file FilterSimPhotonLiteTime_module.cc.

Referenced by filter(), and FilterSimPhotonLiteTime().

std::vector<std::pair<int, int> > const simfilter::FilterSimPhotonLiteTime::fTimeWindows
private

Time windows used for filtering. Units are the same as in the sim::SimPhotonsLite.

Definition at line 48 of file FilterSimPhotonLiteTime_module.cc.

Referenced by CheckTimeWindows(), filter(), and FilterSimPhotonLiteTime().

bool const simfilter::FilterSimPhotonLiteTime::fUseReflectedPhotons
private

Whether to include reflected photons in the filter.

Definition at line 52 of file FilterSimPhotonLiteTime_module.cc.

Referenced by filter(), and FilterSimPhotonLiteTime().

constexpr bool art::detail::Filter::Pass {true}
staticinherited

Definition at line 28 of file Filter.h.


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