Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
arttest::TestAnalyzerSelect Class Reference
Inheritance diagram for arttest::TestAnalyzerSelect:
art::EDAnalyzer art::detail::Analyzer art::detail::LegacyModule art::Observer art::ModuleBase

Public Types

using Parameters = Table< Config >
 
- Public Types inherited from art::EDAnalyzer
using WorkerType = WorkerT< EDAnalyzer >
 
using ModuleType = EDAnalyzer
 

Public Member Functions

 TestAnalyzerSelect (Parameters const &ps)
 
- Public Member Functions inherited from art::EDAnalyzer
 EDAnalyzer (fhicl::ParameterSet const &pset)
 
template<typename Config >
 EDAnalyzer (Table< Config > const &config)
 
std::string workerType () const
 
- Public Member Functions inherited from art::detail::Analyzer
virtual ~Analyzer () noexcept
 
 Analyzer (fhicl::ParameterSet const &pset)
 
template<typename Config >
 Analyzer (Table< Config > const &config)
 
void doBeginJob ()
 
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)
 
- Public Member Functions inherited from art::Observer
 ~Observer () noexcept
 
 Observer (Observer const &)=delete
 
 Observer (Observer &&)=delete
 
Observeroperator= (Observer const &)=delete
 
Observeroperator= (Observer &&)=delete
 
void registerProducts (ProductDescriptions &, ModuleDescription const &)
 
void fillDescriptions (ModuleDescription const &)
 
std::string const & processName () const
 
bool wantAllEvents () const
 
bool wantEvent (Event const &e)
 
fhicl::ParameterSetID selectorConfig () const
 
Handle< TriggerResultsgetTriggerResults (Event const &e) const
 
- Public Member Functions inherited from art::ModuleBase
virtual ~ModuleBase () noexcept
 
 ModuleBase ()
 
ModuleDescription const & moduleDescription () const
 
void setModuleDescription (ModuleDescription const &)
 
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 ()
 
std::array< std::vector< ProductInfo >, NumBranchTypes > const & getConsumables () const
 
void sortConsumables (std::string const &current_process_name)
 
template<typename T , BranchType BT>
ViewToken< T > consumesView (InputTag const &tag)
 
template<typename T , BranchType BT>
ViewToken< T > mayConsumeView (InputTag const &tag)
 

Private Member Functions

void analyze (const Event &) override
 
void endJob () override
 

Private Attributes

int const num_pass_
 
int total_ {}
 

Additional Inherited Members

- Protected Member Functions inherited from art::Observer
 Observer (fhicl::ParameterSet const &config)
 
 Observer (std::vector< std::string > const &paths, fhicl::ParameterSet const &config)
 
detail::ProcessAndEventSelectorsprocessAndEventSelectors ()
 

Detailed Description

Definition at line 20 of file TestAnalyzerSelect_module.cc.

Member Typedef Documentation

Definition at line 22 of file TestAnalyzerSelect_module.cc.

Constructor & Destructor Documentation

arttest::TestAnalyzerSelect::TestAnalyzerSelect ( Parameters const &  ps)
inlineexplicit

Definition at line 23 of file TestAnalyzerSelect_module.cc.

24  : EDAnalyzer{ps}, num_pass_{ps().shouldPass()}
25  {}
static const double ps
Definition: Units.h:103

Member Function Documentation

void arttest::TestAnalyzerSelect::analyze ( const Event )
inlineoverrideprivate

Definition at line 29 of file TestAnalyzerSelect_module.cc.

void arttest::TestAnalyzerSelect::endJob ( )
overrideprivatevirtual

Reimplemented from art::EDAnalyzer.

Definition at line 41 of file TestAnalyzerSelect_module.cc.

42  {
43  mf::LogAbsolute("TestAnalyzerSelectReport")
44  << "TestAnalyzerSelect: should pass " << num_pass_ << ", did pass "
45  << total_ << "\n";
46  if (total_ != num_pass_) {
47  throw cet::exception("TestAnalyzerExceptFailure")
48  << "Number passed should be " << num_pass_ << ", but got " << total_
49  << "\n";
50  }
51  }
MaybeLogger_< ELseverityLevel::ELsev_severe, true > LogAbsolute
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33

Member Data Documentation

int const arttest::TestAnalyzerSelect::num_pass_
private

Definition at line 36 of file TestAnalyzerSelect_module.cc.

int arttest::TestAnalyzerSelect::total_ {}
private

Definition at line 37 of file TestAnalyzerSelect_module.cc.


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