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

 FilterSimPhotonTime (fhicl::ParameterSet const &p, art::ProcessingFrame const &)
 
 FilterSimPhotonTime (FilterSimPhotonTime const &)=delete
 
 FilterSimPhotonTime (FilterSimPhotonTime &&)=delete
 
FilterSimPhotonTimeoperator= (FilterSimPhotonTime const &)=delete
 
FilterSimPhotonTimeoperator= (FilterSimPhotonTime &&)=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 fSimPhotonsCollectionLabel
 
std::vector< std::pair< float, float > > const fTimeWindows
 
float const fMinTotalEnergy
 
float const fMinPhotonEnergy
 
bool const fDebug
 
std::size_t const fN
 
bool const fUseReflectedPhotons
 
std::string const fReflectedLabel
 

Detailed Description

Definition at line 28 of file FilterSimPhotonTime_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::FilterSimPhotonTime::FilterSimPhotonTime ( fhicl::ParameterSet const &  p,
art::ProcessingFrame const &   
)
explicit

Definition at line 53 of file FilterSimPhotonTime_module.cc.

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

55  : SharedFilter{p}
56  , fSimPhotonsCollectionLabel(p.get<std::string>("SimPhotonsCollectionLabel"))
57  , fTimeWindows(p.get<std::vector<std::pair<float, float>>>("TimeWindows"))
58  , fMinTotalEnergy(p.get<float>("MinTotalEnergy", 0.0))
59  , fMinPhotonEnergy(p.get<float>("MinPhotonEnergy", -1))
60  , fDebug(p.get<bool>("Debug", false))
61  , fN(fTimeWindows.size())
62  , fUseReflectedPhotons(p.get<bool>("UseReflectedPhotons", false))
63  , fReflectedLabel(p.get<std::string>("ReflectedLabel", "Reflected"))
64 {
66 
67  // For printing out debug messages, we want to serialize the
68  // event-level calls so that the messages are not garbled.
69  // Otherwise, this module works well for asynchronous event-level
70  // calls.
71  if (fDebug) { serialize(); }
72  else {
73  async<art::InEvent>();
74  }
75 }
std::vector< std::pair< float, float > > const fTimeWindows
SharedFilter(fhicl::ParameterSet const &pset)
Definition: SharedFilter.cc:6
auto vector(Vector const &v)
Returns a manipulator which will print the specified array.
Definition: DumpUtils.h:289
void serialize(T const &...)
simfilter::FilterSimPhotonTime::FilterSimPhotonTime ( FilterSimPhotonTime const &  )
delete
simfilter::FilterSimPhotonTime::FilterSimPhotonTime ( FilterSimPhotonTime &&  )
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::FilterSimPhotonTime::CheckTimeWindows ( ) const
private

Definition at line 77 of file FilterSimPhotonTime_module.cc.

References fDebug, and fTimeWindows.

Referenced by FilterSimPhotonTime().

78 {
79 
80  if (fDebug)
81  std::cout << "\tFilterSimPhotonTime: TimeWindows size is " << fTimeWindows.size() << std::endl;
82 
83  for (auto const& tw : fTimeWindows) {
84  if (fDebug)
85  std::cout << "\t\tTimeWindow "
86  << "[" << tw.first << "," << tw.second << "]" << std::endl;
87 
88  if (tw.first > tw.second)
89  throw cet::exception("FilterSimPhotonTime::CheckTimeWindows")
90  << "Bad time window initialization: tw.first>tw.second. Reverse the order!" << std::endl;
91  }
92 }
std::vector< std::pair< float, float > > const fTimeWindows
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
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::EDFilter::setupQueues(), art::SharedAnalyzer::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::FilterSimPhotonTime::filter ( art::Event e,
art::ProcessingFrame const &   
)
overrideprivatevirtual

Implements art::SharedFilter.

Definition at line 94 of file FilterSimPhotonTime_module.cc.

References DEFINE_ART_MODULE, fDebug, fMinPhotonEnergy, fMinTotalEnergy, fN, fReflectedLabel, fSimPhotonsCollectionLabel, fTimeWindows, fUseReflectedPhotons, art::ProductRetriever::getValidHandle(), and sim::SimPhotons::OpChannel().

95 {
96  auto const& simPhotonsCollection =
97  *e.getValidHandle<std::vector<sim::SimPhotons>>(fSimPhotonsCollectionLabel);
98 
99  std::vector<double> sumEnergyArray(fN, 0.0);
100 
101  const std::vector<sim::SimPhotons>& simPhotonsCollectionReflected =
102  fUseReflectedPhotons ? *e.getValidHandle<std::vector<sim::SimPhotons>>(
104  std::vector<sim::SimPhotons>();
105 
106  size_t n_sim_photons = simPhotonsCollection.size() + simPhotonsCollectionReflected.size();
107 
108  for (size_t i_pc = 0; i_pc < n_sim_photons; i_pc++) {
109  const sim::SimPhotons& simphotons =
110  (i_pc < simPhotonsCollection.size()) ?
111  simPhotonsCollection[i_pc] :
112  simPhotonsCollectionReflected[i_pc - simPhotonsCollection.size()];
113 
114  if (fDebug)
115  std::cout << "\tFilterSimPhotonTime: Processing simphotons channel " << simphotons.OpChannel()
116  << std::endl;
117 
118  for (auto const& photon : simphotons)
119  for (size_t i_tw = 0; i_tw < fN; i_tw++) {
120  auto const& tw(fTimeWindows[i_tw]);
121  if (photon.Time >= tw.first && photon.Time <= tw.second &&
122  photon.Energy > fMinPhotonEnergy) {
123 
124  if (fDebug) {
125  std::string photon_string =
126  (i_pc < simPhotonsCollection.size()) ? "Photon" : "Reflected Photon";
127  std::cout << "\t\t" << photon_string << " with time " << photon.Time << " detected. "
128  << "Energy is " << photon.Energy << "." << std::endl;
129  }
130 
131  sumEnergyArray[i_tw] += photon.Energy;
132 
133  if (fDebug)
134  std::cout << "\t\tTotal energy in this window (" << i_tw << ") is now "
135  << sumEnergyArray[i_tw] << std::endl;
136 
137  if (sumEnergyArray[i_tw] > fMinTotalEnergy) return true;
138  }
139  }
140  }
141 
142  if (fDebug) {
143  std::cout << "\tFilterSimPhotonTime: Final total energies are below min of " << fMinTotalEnergy
144  << ":" << std::endl;
145  for (size_t i_tw = 0; i_tw < fN; ++i_tw) {
146  std::cout << "\t\tTimeWindow "
147  << "[" << fTimeWindows[i_tw].first << "," << fTimeWindows[i_tw].second
148  << "]: " << sumEnergyArray[i_tw] << std::endl;
149  }
150  }
151 
152  return false;
153 }
int OpChannel() const
Returns the optical channel number this object is associated to.
Definition: SimPhotons.h:239
std::vector< std::pair< float, float > > const fTimeWindows
Collection of photons which recorded on one channel.
Definition: SimPhotons.h:127
ValidHandle< PROD > getValidHandle(InputTag const &tag) const
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
FilterSimPhotonTime& simfilter::FilterSimPhotonTime::operator= ( FilterSimPhotonTime const &  )
delete
FilterSimPhotonTime& simfilter::FilterSimPhotonTime::operator= ( FilterSimPhotonTime &&  )
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::FilterSimPhotonTime::fDebug
private

Definition at line 45 of file FilterSimPhotonTime_module.cc.

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

float const simfilter::FilterSimPhotonTime::fMinPhotonEnergy
private

Definition at line 44 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

float const simfilter::FilterSimPhotonTime::fMinTotalEnergy
private

Definition at line 43 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

std::size_t const simfilter::FilterSimPhotonTime::fN
private

Definition at line 46 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

std::string const simfilter::FilterSimPhotonTime::fReflectedLabel
private

Definition at line 48 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

std::string const simfilter::FilterSimPhotonTime::fSimPhotonsCollectionLabel
private

Definition at line 41 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

std::vector<std::pair<float, float> > const simfilter::FilterSimPhotonTime::fTimeWindows
private

Definition at line 42 of file FilterSimPhotonTime_module.cc.

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

bool const simfilter::FilterSimPhotonTime::fUseReflectedPhotons
private

Definition at line 47 of file FilterSimPhotonTime_module.cc.

Referenced by filter(), and FilterSimPhotonTime().

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: