LArSoft
v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
|
#include "SimPhotonCounter.h"
Public Types | |
using | WorkerType = WorkerT< EDAnalyzer > |
using | ModuleType = EDAnalyzer |
Public Member Functions | |
SimPhotonCounter () | |
SimPhotonCounter (size_t s, float t_p1, float t_p2, float t_l1, float t_l2, float min_w=0, float max_w=1e6, float e=1.0) | |
SimPhotonCounter (float t_p1, float t_p2, float t_l1, float t_l2, float min_w, float max_w, const std::vector< float > &eV) | |
void | SetVectorSize (size_t s) |
size_t | GetVectorSize () const |
void | SetWavelengthRanges (float min_w, float max_w) |
float | MinWavelength () const |
float | MaxWavelength () const |
void | SetTimeRanges (float t_p1, float t_p2, float t_l1, float t_l2) |
float | MinPromptTime () const |
float | MaxPromptTime () const |
float | MinLateTime () const |
float | MaxLateTime () const |
void | SetQE (size_t i, float e) |
float | QE (size_t i) const |
void | SetQEVector (const std::vector< float > &eV) |
std::vector< float > const & | QEVector () const |
void | AddOnePhoton (size_t i_opdet, const sim::OnePhoton &photon) |
void | AddSimPhotons (const sim::SimPhotons &photons) |
void | ClearVectors () |
const std::vector< float > & | PromptPhotonVector () const |
const std::vector< float > & | LatePhotonVector () const |
float | PromptPhotonVector (size_t i) const |
float | LatePhotonVector (size_t i) const |
std::vector< float > | TotalPhotonVector () const |
float | TotalPhotonVector (size_t i) const |
float | PromptPhotonTotal () const |
float | LatePhotonTotal () const |
float | PhotonTotal () const |
void | Print () |
SimPhotonCounter (const fhicl::ParameterSet &) | |
virtual | ~SimPhotonCounter () |
void | analyze (art::Event const &) |
void | beginJob () |
void | endJob () |
std::string | workerType () const |
bool | modifiesEvent () const |
void | registerProducts (MasterProductRegistry &, ProductDescriptions &, ModuleDescription const &) |
std::string const & | processName () const |
bool | wantAllEvents () const |
bool | wantEvent (Event const &e) |
fhicl::ParameterSetID | selectorConfig () const |
art::Handle< art::TriggerResults > | getTriggerResults (Event const &e) const |
template<typename T , BranchType = InEvent> | |
ProductToken< T > | consumes (InputTag const &) |
template<typename T , art::BranchType BT> | |
art::ProductToken< T > | consumes (InputTag const &it) |
template<typename T , BranchType = InEvent> | |
void | consumesMany () |
template<typename Element , BranchType = InEvent> | |
ViewToken< Element > | consumesView (InputTag const &) |
template<typename T , art::BranchType BT> | |
art::ViewToken< T > | consumesView (InputTag const &it) |
template<typename T , BranchType = InEvent> | |
ProductToken< T > | mayConsume (InputTag const &) |
template<typename T , art::BranchType BT> | |
art::ProductToken< T > | mayConsume (InputTag const &it) |
template<typename T , BranchType = InEvent> | |
void | mayConsumeMany () |
template<typename Element , BranchType = InEvent> | |
ViewToken< Element > | mayConsumeView (InputTag const &) |
template<typename T , art::BranchType BT> | |
art::ViewToken< T > | mayConsumeView (InputTag const &it) |
base_engine_t & | createEngine (seed_t seed) |
base_engine_t & | createEngine (seed_t seed, std::string const &kind_of_engine_to_make) |
base_engine_t & | createEngine (seed_t seed, std::string const &kind_of_engine_to_make, label_t const &engine_label) |
seed_t | get_seed_value (fhicl::ParameterSet const &pset, char const key[]="seed", seed_t const implicit_seed=-1) |
Static Public Member Functions | |
static cet::exempt_ptr< Consumer > | non_module_context () |
Protected Member Functions | |
CurrentProcessingContext const * | currentContext () const |
detail::CachedProducts & | cachedProducts () |
void | validateConsumedProduct (BranchType const bt, ProductInfo const &pi) |
void | prepareForJob (fhicl::ParameterSet const &pset) |
void | showMissingConsumes () const |
Private Member Functions | |
float | Wavelength (const sim::OnePhoton &ph) |
Private Attributes | |
std::vector< float > | _photonVector_prompt |
std::vector< float > | _photonVector_late |
float | _min_prompt_time |
float | _max_prompt_time |
float | _min_late_time |
float | _max_late_time |
std::vector< float > | _qeVector |
float | _min_wavelength |
float | _max_wavelength |
TTree * | fThePhotonTreeAll |
TTree * | fThePhotonTreeDetected |
TTree * | fTheOpDetTree |
TTree * | fTheEventTree |
std::vector< std::string > | fInputModule |
int | fVerbosity |
bool | fMakeDetectedPhotonsTree |
bool | fMakeAllPhotonsTree |
bool | fMakeOpDetsTree |
bool | fMakeOpDetEventsTree |
TVector3 | initialPhotonPosition |
TVector3 | finalPhotonPosition |
Float_t | fWavelength |
Float_t | fTime |
Int_t | fCountOpDetAll |
Int_t | fCountOpDetDetected |
Int_t | fCountOpDetReflDetected |
Float_t | fT0_vis |
Int_t | fCountEventAll |
Int_t | fCountEventDetected |
Int_t | fEventID |
Int_t | fOpChannel |
bool | fMakeLightAnalysisTree |
std::vector< std::vector< std::vector< double > > > | fSignals_vuv |
std::vector< std::vector< std::vector< double > > > | fSignals_vis |
TTree * | fLightAnalysisTree |
int | fRun |
int | fTrackID |
int | fpdg |
int | fmotherTrackID |
double | fEnergy |
double | fdEdx |
std::vector< double > | fPosition0 |
std::vector< std::vector< double > > | fstepPrePositions |
std::vector< std::vector< double > > | fstepPostPositions |
std::vector< double > | fstepPreTimes |
std::vector< double > | fstepPostTimes |
std::vector< std::vector< double > > | fSignalsvuv |
std::vector< std::vector< double > > | fSignalsvis |
std::string | fProcess |
cheat::ParticleInventoryService * | pi_serv = nullptr |
Definition at line 17 of file SimPhotonCounter.h.
|
inherited |
Definition at line 39 of file EDAnalyzer.h.
|
inherited |
Definition at line 38 of file EDAnalyzer.h.
|
inline |
opdet::SimPhotonCounter::SimPhotonCounter | ( | size_t | s, |
float | t_p1, | ||
float | t_p2, | ||
float | t_l1, | ||
float | t_l2, | ||
float | min_w = 0 , |
||
float | max_w = 1e6 , |
||
float | e = 1.0 |
||
) |
Definition at line 7 of file SimPhotonCounter.cxx.
References _photonVector_late, _photonVector_prompt, _qeVector, e, s, SetTimeRanges(), and SetWavelengthRanges().
opdet::SimPhotonCounter::SimPhotonCounter | ( | float | t_p1, |
float | t_p2, | ||
float | t_l1, | ||
float | t_l2, | ||
float | min_w, | ||
float | max_w, | ||
const std::vector< float > & | eV | ||
) |
Definition at line 23 of file SimPhotonCounter.cxx.
References _photonVector_late, _photonVector_prompt, _qeVector, SetTimeRanges(), and SetWavelengthRanges().
opdet::SimPhotonCounter::SimPhotonCounter | ( | const fhicl::ParameterSet & | ) |
|
virtual |
Definition at line 284 of file SimPhotonCounter_module.cc.
void opdet::SimPhotonCounter::AddOnePhoton | ( | size_t | i_opdet, |
const sim::OnePhoton & | photon | ||
) |
Definition at line 63 of file SimPhotonCounter.cxx.
References _max_late_time, _max_prompt_time, _max_wavelength, _min_late_time, _min_prompt_time, _min_wavelength, _photonVector_late, _photonVector_prompt, _qeVector, GetVectorSize(), sim::OnePhoton::Time, and Wavelength().
Referenced by AddSimPhotons(), and QEVector().
void opdet::SimPhotonCounter::AddSimPhotons | ( | const sim::SimPhotons & | photons | ) |
Definition at line 77 of file SimPhotonCounter.cxx.
References AddOnePhoton(), and sim::SimPhotons::OpChannel().
Referenced by QEVector().
|
virtual |
Implements art::EDAnalyzer.
Definition at line 298 of file SimPhotonCounter_module.cc.
References DEFINE_ART_MODULE, opdet::OpDetResponseInterface::detected(), opdet::OpDetResponseInterface::detectedLite(), sim::ParticleList::end(), art::EventID::event(), fCountEventAll, fCountEventDetected, fCountOpDetAll, fCountOpDetDetected, fCountOpDetReflDetected, fdEdx, fEnergy, fEventID, finalPhotonPosition, sim::ParticleList::find(), fInputModule, fLightAnalysisTree, fMakeAllPhotonsTree, fMakeDetectedPhotonsTree, fMakeLightAnalysisTree, fMakeOpDetEventsTree, fMakeOpDetsTree, fmotherTrackID, fOpChannel, fpdg, fProcess, fRun, fSignals_vis, fSignals_vuv, fSignalsvis, fSignalsvuv, fstepPostPositions, fstepPostTimes, fstepPrePositions, fstepPreTimes, fT0_vis, fTheEventTree, fTheOpDetTree, fThePhotonTreeAll, fThePhotonTreeDetected, fTime, fTrackID, fVerbosity, fWavelength, art::DataViewImpl::getByLabel(), sim::SimListUtils::GetSimPhotonsCollection(), art::DataViewImpl::getView(), art::Event::id(), initialPhotonPosition, phot::PhotonVisibilityService::IsBuildJob(), sim::NoParticleId, geo::GeometryCore::NOpChannels(), cheat::ParticleInventoryService::ParticleList(), pi_serv, phot::PhotonVisibilityService::RetrieveLightProd(), art::Event::run(), phot::PhotonVisibilityService::SetLibraryEntry(), phot::PhotonVisibilityService::SetLibraryReflT0Entry(), phot::PhotonVisibilityService::StoreReflected(), phot::PhotonVisibilityService::StoreReflT0(), sim::LArG4Parameters::UseLitePhotons(), and opdet::OpDetResponseInterface::wavelength().
|
virtual |
Reimplemented from art::EDAnalyzer.
Definition at line 184 of file SimPhotonCounter_module.cc.
References e, fCountEventAll, fCountEventDetected, fCountOpDetAll, fCountOpDetDetected, fCountOpDetReflDetected, fdEdx, fEnergy, fEventID, fLightAnalysisTree, fMakeAllPhotonsTree, fMakeDetectedPhotonsTree, fMakeLightAnalysisTree, fMakeOpDetEventsTree, fMakeOpDetsTree, fmotherTrackID, fOpChannel, fpdg, fProcess, fRun, fSignals_vis, fSignals_vuv, fSignalsvis, fSignalsvuv, fstepPostPositions, fstepPostTimes, fstepPrePositions, fstepPreTimes, fTheEventTree, fTheOpDetTree, fThePhotonTreeAll, fThePhotonTreeDetected, fTime, fTrackID, fWavelength, art::TFileDirectory::make(), geo::GeometryCore::NOpChannels(), pi_serv, art::errors::ServiceNotFound, and phot::PhotonVisibilityService::StoreReflected().
|
inlineprotectedinherited |
Definition at line 79 of file EventObserverBase.h.
References art::EventObserverBase::selectors_.
Referenced by art::EDAnalyzer::doEvent(), and art::OutputModule::doWriteEvent().
void opdet::SimPhotonCounter::ClearVectors | ( | ) |
Definition at line 83 of file SimPhotonCounter.cxx.
References _photonVector_late, _photonVector_prompt, and GetVectorSize().
Referenced by QEVector().
|
inherited |
|
inherited |
Definition at line 147 of file Consumer.h.
References art::InputTag::instance(), art::InputTag::label(), and art::InputTag::process().
|
inherited |
Definition at line 162 of file Consumer.h.
|
inherited |
|
inherited |
Definition at line 172 of file Consumer.h.
References art::InputTag::instance(), art::InputTag::label(), and art::InputTag::process().
|
inherited |
Definition at line 26 of file EngineCreator.cc.
References art::EngineCreator::rng().
Referenced by evgen::CosmicsGen::CosmicsGen(), rndm::NuRandomService::createEngine(), cluster::fuzzyCluster::fuzzyCluster(), cluster::HoughLineFinder::HoughLineFinder(), art::MixFilter< T >::initEngine_(), larg4::LArG4::LArG4(), evgen::LightSource::LightSource(), evgen::NeutronOsc::NeutronOsc(), evgen::NucleonDecay::NucleonDecay(), opdet::OpMCDigi::OpMCDigi(), opdet::OptDetDigitizer::OptDetDigitizer(), phot::PhotonLibraryPropagation::PhotonLibraryPropagation(), detsim::SimDriftElectrons::SimDriftElectrons(), evgen::SingleGen::SingleGen(), evgen::SNNueAr40CCGen::SNNueAr40CCGen(), ToyOneShowerGen::ToyOneShowerGen(), and trkf::Track3DKalman::Track3DKalman().
|
inherited |
Definition at line 32 of file EngineCreator.cc.
References art::EngineCreator::rng().
|
inherited |
Definition at line 40 of file EngineCreator.cc.
References art::EngineCreator::rng().
|
protectedinherited |
Definition at line 114 of file EDAnalyzer.cc.
References art::EDAnalyzer::current_context_.
Referenced by art::EDAnalyzer::workerType().
|
virtual |
Reimplemented from art::EDAnalyzer.
Definition at line 288 of file SimPhotonCounter_module.cc.
References phot::PhotonVisibilityService::IsBuildJob(), and phot::PhotonVisibilityService::StoreLibrary().
|
inherited |
Definition at line 49 of file EngineCreator.cc.
References fhicl::ParameterSet::get().
Referenced by art::MixFilter< T >::initEngine_().
|
inlineinherited |
Definition at line 61 of file EventObserverBase.h.
References art::detail::CachedProducts::getOneTriggerResults(), and art::EventObserverBase::selectors_.
Referenced by art::OutputModule::doWriteEvent().
|
inline |
Definition at line 27 of file SimPhotonCounter.h.
References _photonVector_prompt, and SetWavelengthRanges().
Referenced by AddOnePhoton(), ClearVectors(), opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), Print(), and TotalPhotonVector().
|
inline |
Definition at line 63 of file SimPhotonCounter.h.
References _photonVector_late.
Referenced by opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), and PhotonTotal().
|
inline |
Definition at line 53 of file SimPhotonCounter.h.
References _photonVector_late.
Referenced by opdet::FlashHypothesisComparison::FillComparisonInfo(), opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), and TotalPhotonVector().
|
inline |
Definition at line 55 of file SimPhotonCounter.h.
References _photonVector_late, and TotalPhotonVector().
|
inline |
|
inline |
Definition at line 37 of file SimPhotonCounter.h.
References _max_prompt_time.
Referenced by Print().
|
inline |
|
inherited |
|
inherited |
Definition at line 190 of file Consumer.h.
References art::InputTag::instance(), art::InputTag::label(), and art::InputTag::process().
|
inherited |
Definition at line 205 of file Consumer.h.
|
inherited |
|
inherited |
Definition at line 215 of file Consumer.h.
References art::InputTag::instance(), art::InputTag::label(), and art::InputTag::process().
|
inline |
|
inline |
Definition at line 36 of file SimPhotonCounter.h.
References _min_prompt_time.
Referenced by Print().
|
inline |
|
inlineinherited |
Definition at line 25 of file EventObserverBase.h.
|
staticinherited |
Definition at line 76 of file Consumer.cc.
Referenced by art::RootOutput::beginSubRun(), art::OutputModule::doBeginRun(), art::OutputModule::doBeginSubRun(), art::OutputModule::doEndRun(), art::OutputModule::doEndSubRun(), art::ProducingService::doPostReadEvent(), art::ProducingService::doPostReadRun(), art::ProducingService::doPostReadSubRun(), art::OutputModule::doWriteEvent(), art::ProcessPackage< L >::postScheduleSignal(), art::BeginEndPackage< Level::Run >::Begin::postScheduleSignal(), art::BeginEndPackage< Level::Run >::End::postScheduleSignal(), art::BeginEndPackage< Level::SubRun >::Begin::postScheduleSignal(), art::BeginEndPackage< Level::SubRun >::End::postScheduleSignal(), art::ProcessPackage< L >::preScheduleSignal(), art::BeginEndPackage< Level::Run >::Begin::preScheduleSignal(), art::BeginEndPackage< Level::SubRun >::Begin::preScheduleSignal(), art::EventProcessor::readEvent(), art::EventProcessor::readRun(), art::EmptyEvent::readRun_(), art::EventProcessor::readSubRun(), and art::EmptyEvent::readSubRun_().
|
inline |
Definition at line 65 of file SimPhotonCounter.h.
References LatePhotonTotal(), Print(), and PromptPhotonTotal().
|
protectedinherited |
Definition at line 89 of file Consumer.cc.
References fhicl::ParameterSet::get_if_present().
Referenced by art::EDProducer::doBeginJob(), art::EDFilter::doBeginJob(), and art::EDAnalyzer::doBeginJob().
void opdet::SimPhotonCounter::Print | ( | ) |
Definition at line 101 of file SimPhotonCounter.cxx.
References _photonVector_late, _photonVector_prompt, _qeVector, GetVectorSize(), MaxLateTime(), MaxPromptTime(), MinLateTime(), MinPromptTime(), and TotalPhotonVector().
Referenced by PhotonTotal().
|
inlineinherited |
Definition at line 41 of file EventObserverBase.h.
References art::EventObserverBase::process_name_.
Referenced by art::FileDumperOutput::printPrincipal(), and art::RootOutput::RootOutput().
|
inline |
Definition at line 61 of file SimPhotonCounter.h.
References _photonVector_prompt.
Referenced by opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), and PhotonTotal().
|
inline |
Definition at line 52 of file SimPhotonCounter.h.
References _photonVector_prompt.
Referenced by opdet::FlashHypothesisComparison::FillComparisonInfo(), opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), opdet::FlashHypothesisComparison::RunComparison(), and TotalPhotonVector().
|
inline |
Definition at line 54 of file SimPhotonCounter.h.
References _photonVector_prompt.
|
inline |
|
inline |
Definition at line 46 of file SimPhotonCounter.h.
References _qeVector, AddOnePhoton(), AddSimPhotons(), and ClearVectors().
|
inlineinherited |
Definition at line 33 of file EventObserverBase.h.
|
inlineinherited |
Definition at line 56 of file EventObserverBase.h.
References art::EventObserverBase::selector_config_id_.
Referenced by art::RootOutputFile::writeOne().
|
inline |
Definition at line 41 of file SimPhotonCounter.h.
|
inline |
void opdet::SimPhotonCounter::SetTimeRanges | ( | float | t_p1, |
float | t_p2, | ||
float | t_l1, | ||
float | t_l2 | ||
) |
Definition at line 54 of file SimPhotonCounter.cxx.
References _max_late_time, _max_prompt_time, _min_late_time, and _min_prompt_time.
Referenced by MaxWavelength(), and SimPhotonCounter().
|
inline |
Definition at line 25 of file SimPhotonCounter.h.
References _photonVector_late, _photonVector_prompt, and _qeVector.
Referenced by SetQEVector().
void opdet::SimPhotonCounter::SetWavelengthRanges | ( | float | min_w, |
float | max_w | ||
) |
Definition at line 37 of file SimPhotonCounter.cxx.
References _max_wavelength, and _min_wavelength.
Referenced by GetVectorSize(), and SimPhotonCounter().
|
protectedinherited |
Definition at line 125 of file Consumer.cc.
Referenced by art::EDProducer::doEndJob(), art::EDFilter::doEndJob(), art::EDAnalyzer::doEndJob(), and art::RootOutput::endJob().
std::vector< float > opdet::SimPhotonCounter::TotalPhotonVector | ( | ) | const |
Definition at line 91 of file SimPhotonCounter.cxx.
References evd::details::begin(), evd::details::end(), GetVectorSize(), LatePhotonVector(), and PromptPhotonVector().
Referenced by opdet::FlashHypothesisComparison::FillComparisonInfo(), opdet::FlashHypothesisComparison::FillSimPhotonCounterInfo(), LatePhotonVector(), and Print().
|
inline |
Definition at line 58 of file SimPhotonCounter.h.
References LatePhotonVector(), and PromptPhotonVector().
|
protectedinherited |
Definition at line 101 of file Consumer.cc.
References art::errors::ProductRegistrationFailure.
|
inlineinherited |
Definition at line 46 of file EventObserverBase.h.
References art::EventObserverBase::wantAllEvents_.
Referenced by art::EDAnalyzer::doEvent(), art::OutputModule::doEvent(), art::OutputModule::doWriteEvent(), art::RootOutput::RootOutput(), and art::OutputWorker::wantAllEvents().
|
inlineinherited |
Definition at line 51 of file EventObserverBase.h.
References art::EventObserverBase::selectors_, and art::detail::CachedProducts::wantEvent().
Referenced by art::EDAnalyzer::doEvent(), art::OutputModule::doEvent(), and art::OutputModule::doWriteEvent().
|
private |
Definition at line 46 of file SimPhotonCounter.cxx.
References sim::OnePhoton::Energy.
Referenced by AddOnePhoton().
|
inlineinherited |
Definition at line 109 of file EDAnalyzer.h.
References art::EDAnalyzer::currentContext().
|
private |
Definition at line 77 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MaxLateTime(), and SetTimeRanges().
|
private |
Definition at line 75 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MaxPromptTime(), and SetTimeRanges().
|
private |
Definition at line 81 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MaxWavelength(), and SetWavelengthRanges().
|
private |
Definition at line 76 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MinLateTime(), and SetTimeRanges().
|
private |
Definition at line 74 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MinPromptTime(), and SetTimeRanges().
|
private |
Definition at line 80 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), MinWavelength(), and SetWavelengthRanges().
|
private |
Definition at line 72 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), ClearVectors(), LatePhotonTotal(), LatePhotonVector(), Print(), SetVectorSize(), and SimPhotonCounter().
|
private |
Definition at line 71 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), ClearVectors(), GetVectorSize(), Print(), PromptPhotonTotal(), PromptPhotonVector(), SetVectorSize(), and SimPhotonCounter().
|
private |
Definition at line 78 of file SimPhotonCounter.h.
Referenced by AddOnePhoton(), Print(), QE(), QEVector(), SetQE(), SetQEVector(), SetVectorSize(), and SimPhotonCounter().
|
private |
Definition at line 127 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 128 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 122 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 123 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 124 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 141 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 141 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 131 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 114 of file SimPhotonCounter_module.cc.
Referenced by analyze().
|
private |
Definition at line 99 of file SimPhotonCounter_module.cc.
Referenced by analyze().
|
private |
Definition at line 139 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 104 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 103 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 135 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 106 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 105 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 140 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 132 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 140 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 142 of file SimPhotonCounter_module.cc.
|
private |
Definition at line 149 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 140 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 137 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 136 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 148 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 147 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 144 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 146 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 143 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 145 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 125 of file SimPhotonCounter_module.cc.
Referenced by analyze().
|
private |
Definition at line 94 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 93 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 91 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 92 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 120 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 140 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 101 of file SimPhotonCounter_module.cc.
Referenced by analyze().
|
private |
Definition at line 119 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().
|
private |
Definition at line 113 of file SimPhotonCounter_module.cc.
Referenced by analyze().
|
private |
Definition at line 151 of file SimPhotonCounter_module.cc.
Referenced by analyze(), and beginJob().