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

Public Member Functions

 OpFlashSimpleAna (fhicl::ParameterSet const &p)
 
 OpFlashSimpleAna (OpFlashSimpleAna const &)=delete
 
 OpFlashSimpleAna (OpFlashSimpleAna &&)=delete
 
OpFlashSimpleAnaoperator= (OpFlashSimpleAna const &)=delete
 
OpFlashSimpleAnaoperator= (OpFlashSimpleAna &&)=delete
 
void analyze (art::Event const &e) override
 
void beginJob () override
 
- 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 (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)
 
- 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 &)
 
fhicl::ParameterSetID selectorConfig () const
 
- Public Member Functions inherited from art::ModuleBase
virtual ~ModuleBase () noexcept
 
 ModuleBase ()
 
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)
 
template<typename T , BranchType BT>
ViewToken< T > consumesView (InputTag const &tag)
 
template<typename T , BranchType BT>
ViewToken< T > mayConsumeView (InputTag const &tag)
 

Private Attributes

std::string fOpFlashModuleLabel
 
std::string fOpHitModuleLabel
 
bool fMakeOpDetPEHist
 
OpFlashAnaAlg fAnaAlg
 

Additional Inherited Members

- Public Types inherited from art::EDAnalyzer
using WorkerType = WorkerT< EDAnalyzer >
 
using ModuleType = EDAnalyzer
 
- Protected Member Functions inherited from art::Observer
std::string const & processName () const
 
bool wantAllEvents () const noexcept
 
bool wantEvent (ScheduleID id, Event const &e) const
 
Handle< TriggerResultsgetTriggerResults (Event const &e) const
 
 Observer (fhicl::ParameterSet const &config)
 
 Observer (std::vector< std::string > const &select_paths, std::vector< std::string > const &reject_paths, fhicl::ParameterSet const &config)
 
- Protected Member Functions inherited from art::ModuleBase
ConsumesCollectorconsumesCollector ()
 
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 ()
 

Detailed Description

Definition at line 26 of file OpFlashSimpleAna_module.cc.

Constructor & Destructor Documentation

opdet::OpFlashSimpleAna::OpFlashSimpleAna ( fhicl::ParameterSet const &  p)
explicit

Definition at line 54 of file OpFlashSimpleAna_module.cc.

55  :
56  EDAnalyzer(p) // ,
57  // More initializers here.
58 {
59  fOpFlashModuleLabel = p.get<std::string>("OpFlashModuleLabel","");
60  fOpHitModuleLabel = p.get<std::string>("OpFlashModuleLabel","");
61  fMakeOpDetPEHist = p.get<bool>("MakeOpDetPEHist",true);
62 }
std::string string
Definition: nybbler.cc:12
EDAnalyzer(fhicl::ParameterSet const &pset)
Definition: EDAnalyzer.h:25
p
Definition: test.py:223
opdet::OpFlashSimpleAna::OpFlashSimpleAna ( OpFlashSimpleAna const &  )
delete
opdet::OpFlashSimpleAna::OpFlashSimpleAna ( OpFlashSimpleAna &&  )
delete

Member Function Documentation

void opdet::OpFlashSimpleAna::analyze ( art::Event const &  e)
overridevirtual

Implements art::EDAnalyzer.

Definition at line 64 of file OpFlashSimpleAna_module.cc.

65 {
66  if(fOpFlashModuleLabel.size()>0){
68  e.getByLabel(fOpFlashModuleLabel, flashHandle);
69  std::vector<recob::OpFlash> const& flashVector(*flashHandle);
70  fAnaAlg.FillOpFlashes(flashVector);
71  }
72  if(fOpHitModuleLabel.size()>0){
74  e.getByLabel(fOpHitModuleLabel, hitHandle);
75  std::vector<recob::OpHit> const& hitVector(*hitHandle);
76  fAnaAlg.FillOpHits(hitVector);
77  }
78 }
void FillOpFlashes(const std::vector< recob::OpFlash > &)
void FillOpHits(const std::vector< recob::OpHit > &)
const double e
void opdet::OpFlashSimpleAna::beginJob ( )
overridevirtual

Reimplemented from art::EDAnalyzer.

Definition at line 80 of file OpFlashSimpleAna_module.cc.

81 {
83  if(fOpFlashModuleLabel.size()>0)
84  fAnaAlg.SetOpFlashTree(tfs->make<TTree>("OpFlashTree","OpFlashSimpleAna: Flash Tree"),
86  if(fOpHitModuleLabel.size()>0)
87  fAnaAlg.SetOpHitTree(tfs->make<TTree>("OpHitTree","OpFlashSimpleAna: Hit Tree"));
88 }
void SetOpFlashTree(TTree *, bool makeOpDetPEHist=true)
void SetOpHitTree(TTree *)
OpFlashSimpleAna& opdet::OpFlashSimpleAna::operator= ( OpFlashSimpleAna const &  )
delete
OpFlashSimpleAna& opdet::OpFlashSimpleAna::operator= ( OpFlashSimpleAna &&  )
delete

Member Data Documentation

OpFlashAnaAlg opdet::OpFlashSimpleAna::fAnaAlg
private

Definition at line 49 of file OpFlashSimpleAna_module.cc.

bool opdet::OpFlashSimpleAna::fMakeOpDetPEHist
private

Definition at line 47 of file OpFlashSimpleAna_module.cc.

std::string opdet::OpFlashSimpleAna::fOpFlashModuleLabel
private

Definition at line 45 of file OpFlashSimpleAna_module.cc.

std::string opdet::OpFlashSimpleAna::fOpHitModuleLabel
private

Definition at line 46 of file OpFlashSimpleAna_module.cc.


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