![]() |
LArSoft
v10_06_00
Liquid Argon Software toolkit - https://larsoft.org/
|
LArPandora class. More...
#include "LArPandora.h"
Public Types | |
| using | ModuleType = EDProducer |
| template<typename UserConfig , typename KeysToIgnore = void> | |
| using | Table = Modifier::Table< UserConfig, KeysToIgnore > |
Public Member Functions | |
| LArPandora (fhicl::ParameterSet const &pset) | |
| Constructor. More... | |
| void | beginJob () |
| void | produce (art::Event &evt) |
| 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) |
| 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 ¤t_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) |
Protected Member Functions | |
| void | CreatePandoraInput (art::Event &evt, IdToHitMap &idToHitMap) |
| Create pandora input hits, mc particles etc. More... | |
| void | ProcessPandoraOutput (art::Event &evt, const IdToHitMap &idToHitMap) |
| Process pandora output particle flow objects. More... | |
| fhicl::ParameterSet | ConstructHitCollectionToolParameterSet (const fhicl::ParameterSet &pset) |
| virtual void | CreatePandoraInstances ()=0 |
| Create pandora instances. More... | |
| virtual void | ConfigurePandoraInstances ()=0 |
| Configure pandora instances. More... | |
| virtual void | DeletePandoraInstances ()=0 |
| Delete pandora instances. More... | |
| virtual void | RunPandoraInstances ()=0 |
| Run all associated pandora instances. More... | |
| virtual void | ResetPandoraInstances ()=0 |
| Reset all associated pandora instances. More... | |
| 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 () |
Protected Attributes | |
| std::string | m_configFile |
| The config file. More... | |
| bool | m_shouldRunAllHitsCosmicReco |
| Steering: whether to run all hits cosmic-ray reconstruction. More... | |
| bool | m_shouldRunStitching |
| Steering: whether to stitch cosmic-ray muons crossing between volumes. More... | |
| bool | m_shouldRunCosmicHitRemoval |
| Steering: whether to remove hits from tagged cosmic-rays. More... | |
| bool | m_shouldRunSlicing |
| Steering: whether to slice events into separate regions for processing. More... | |
| bool | m_shouldRunNeutrinoRecoOption |
| Steering: whether to run neutrino reconstruction for each slice. More... | |
| bool | m_shouldRunCosmicRecoOption |
| Steering: whether to run cosmic-ray reconstruction for each slice. More... | |
| bool | m_shouldPerformSliceId |
| Steering: whether to identify slices and select most appropriate pfos. More... | |
| bool | m_shouldProduceAllOutcomes |
| Steering: whether to produce all reconstruction outcomes. More... | |
| bool | m_printOverallRecoStatus |
| Steering: whether to print current operation status messages. More... | |
| std::string | m_generatorModuleLabel |
| The generator module label. More... | |
| std::string | m_geantModuleLabel |
| The geant module label. More... | |
| std::string | m_simChannelModuleLabel |
| The SimChannel producer module label. More... | |
| std::string | m_hitfinderModuleLabel |
| The hit finder module label. More... | |
| std::string | m_backtrackerModuleLabel |
| The back tracker module label. More... | |
| std::string | m_allOutcomesInstanceLabel |
| The instance label for all outcomes. More... | |
| bool | m_enableProduction |
| Whether to persist output products. More... | |
| bool | m_enableDetectorGaps |
| Whether to pass detector gap information to Pandora instances. More... | |
| bool | m_enableMCParticles |
| Whether to pass mc information to Pandora instances to aid development. More... | |
| bool | m_disableRealDataCheck |
| Whether to check if the input file contains real data before accessing MC information. More... | |
| bool | m_lineGapsCreated |
| Book-keeping: whether line gap creation has been called. More... | |
| std::unique_ptr< IHitCollectionTool > | m_collectHitsTool |
| art tool used to collect the hits More... | |
| LArPandoraInput::Settings | m_inputSettings |
| The lar pandora input settings. More... | |
| LArPandoraOutput::Settings | m_outputSettings |
| The lar pandora output settings. More... | |
| LArDriftVolumeMap | m_driftVolumeMap |
| The map from volume id to drift volume. More... | |
| const pandora::Pandora * | m_pPrimaryPandora |
| The address of the primary pandora instance. More... | |
LArPandora class.
Definition at line 24 of file LArPandora.h.
|
inherited |
Definition at line 17 of file EDProducer.h.
|
inherited |
Definition at line 26 of file Producer.h.
| lar_pandora::LArPandora::LArPandora | ( | fhicl::ParameterSet const & | pset | ) |
Constructor.
| pset | the parameter set |
Definition at line 43 of file LArPandora.cxx.
References ConstructHitCollectionToolParameterSet(), m_allOutcomesInstanceLabel, lar_pandora::LArPandoraInput::Settings::m_dEdX_mip, lar_pandora::LArPandoraInput::Settings::m_dx_cm, m_enableProduction, m_hitfinderModuleLabel, lar_pandora::LArPandoraOutput::Settings::m_hitfinderModuleLabel, m_inputSettings, lar_pandora::LArPandoraInput::Settings::m_int_cm, lar_pandora::LArPandoraOutput::Settings::m_isNeutrinoRecoOnlyNoSlicing, lar_pandora::LArPandoraInput::Settings::m_mips_if_negative, lar_pandora::LArPandoraInput::Settings::m_mips_max, lar_pandora::LArPandoraInput::Settings::m_mips_to_gev, m_outputSettings, lar_pandora::LArPandoraInput::Settings::m_rad_cm, lar_pandora::LArPandoraInput::Settings::m_recombination_factor, m_shouldProduceAllOutcomes, lar_pandora::LArPandoraOutput::Settings::m_shouldProduceSlices, lar_pandora::LArPandoraOutput::Settings::m_shouldProduceTestBeamInteractionVertices, m_shouldRunCosmicRecoOption, m_shouldRunNeutrinoRecoOption, m_shouldRunSlicing, m_shouldRunStitching, lar_pandora::LArPandoraOutput::Settings::m_shouldRunStitching, lar_pandora::LArPandoraOutput::Settings::m_testBeamInteractionVerticesInstanceLabel, lar_pandora::LArPandoraInput::Settings::m_uidOffset, lar_pandora::LArPandoraInput::Settings::m_useActiveBoundingBox, lar_pandora::LArPandoraInput::Settings::m_useBirksCorrection, and lar_pandora::LArPandoraInput::Settings::m_useHitWidths.
|
virtual |
Reimplemented from art::EDProducer.
Definition at line 134 of file LArPandora.cxx.
References lar_pandora::ILArPandora::ConfigurePandoraInstances(), lar_pandora::LArPandoraInput::CreatePandoraDetectorGaps(), lar_pandora::ILArPandora::CreatePandoraInstances(), lar_pandora::LArPandoraInput::CreatePandoraLArTPCs(), lar_pandora::LArPandoraGeometry::LoadDetectorGaps(), lar_pandora::LArPandoraGeometry::LoadGeometry(), m_driftVolumeMap, m_enableDetectorGaps, m_inputSettings, m_outputSettings, lar_pandora::LArPandoraInput::Settings::m_pPrimaryPandora, lar_pandora::ILArPandora::m_pPrimaryPandora, lar_pandora::LArPandoraOutput::Settings::m_pPrimaryPandora, and lar_pandora::LArPandoraInput::Settings::m_useActiveBoundingBox.
|
protectedpure virtualinherited |
|
protected |
Definition at line 257 of file LArPandora.cxx.
References fhicl::ParameterSet::get(), fhicl::ParameterSet::has_key(), and fhicl::ParameterSet::put().
Referenced by LArPandora().
|
protectedinherited |
Definition at line 61 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::consumes().
|
protectedinherited |
|
protectedinherited |
Definition at line 75 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::consumesMany().
|
protectedinherited |
|
inherited |
Definition at line 68 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::consumesView().
|
protectedvirtual |
Create pandora input hits, mc particles etc.
| evt | the art event |
| idToHitMap | to receive the populated pandora hit id to art hit map |
Implements lar_pandora::ILArPandora.
Definition at line 176 of file LArPandora.cxx.
References lar_pandora::LArPandoraHelper::BuildMCParticleHitMaps(), lar_pandora::LArPandoraHelper::CollectGeneratorMCParticles(), lar_pandora::LArPandoraHelper::CollectMCParticles(), lar_pandora::LArPandoraHelper::CollectSimChannels(), lar_pandora::LArPandoraInput::CreatePandoraHits2D(), lar_pandora::LArPandoraInput::CreatePandoraMCLinks2D(), lar_pandora::LArPandoraInput::CreatePandoraMCParticles(), lar_pandora::LArPandoraInput::CreatePandoraReadoutGaps(), art::Event::isRealData(), m_backtrackerModuleLabel, m_collectHitsTool, m_disableRealDataCheck, m_driftVolumeMap, m_enableDetectorGaps, m_enableMCParticles, m_geantModuleLabel, m_generatorModuleLabel, m_hitfinderModuleLabel, m_inputSettings, m_lineGapsCreated, and m_simChannelModuleLabel.
Referenced by produce().
|
protectedpure virtualinherited |
|
protectedpure virtualinherited |
Delete pandora instances.
Implemented in lar_pandora::StandardPandora.
|
inherited |
Definition at line 22 of file Producer.cc.
References art::detail::Producer::beginJobWithFrame(), and art::detail::Producer::setupQueues().
|
inherited |
Definition at line 65 of file Producer.cc.
References art::detail::Producer::beginRunWithFrame(), art::RangeSet::forRun(), art::RunPrincipal::makeRun(), r, art::RunPrincipal::runID(), and art::ModuleContext::scheduleID().
|
inherited |
Definition at line 85 of file Producer.cc.
References art::detail::Producer::beginSubRunWithFrame(), art::RangeSet::forSubRun(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::SubRunPrincipal::subRunID().
|
inherited |
Definition at line 30 of file Producer.cc.
References art::detail::Producer::endJobWithFrame().
|
inherited |
Definition at line 75 of file Producer.cc.
References art::detail::Producer::endRunWithFrame(), art::RunPrincipal::makeRun(), r, art::ModuleContext::scheduleID(), and art::Principal::seenRanges().
|
inherited |
Definition at line 95 of file Producer.cc.
References art::detail::Producer::endSubRunWithFrame(), art::SubRunPrincipal::makeSubRun(), art::ModuleContext::scheduleID(), and art::Principal::seenRanges().
|
inherited |
Definition at line 105 of file Producer.cc.
References art::detail::Producer::checkPutProducts_, e, art::EventPrincipal::makeEvent(), art::detail::Producer::produceWithFrame(), and art::ModuleContext::scheduleID().
|
inherited |
Definition at line 44 of file Producer.cc.
References art::detail::Producer::respondToCloseInputFileWithFrame().
|
inherited |
Definition at line 58 of file Producer.cc.
References art::detail::Producer::respondToCloseOutputFilesWithFrame().
|
inherited |
Definition at line 37 of file Producer.cc.
References art::detail::Producer::respondToOpenInputFileWithFrame().
|
inherited |
Definition at line 51 of file Producer.cc.
References art::detail::Producer::respondToOpenOutputFilesWithFrame().
|
inherited |
Definition at line 10 of file Modifier.cc.
References art::ProductRegistryHelper::fillDescriptions(), and art::ModuleBase::moduleDescription().
|
inherited |
Definition at line 43 of file ModuleBase.cc.
References art::ModuleBase::collector_, and art::ConsumesCollector::getConsumables().
|
inherited |
Definition at line 37 of file ModuleBase.cc.
References art::ModuleBase::doMakeWorker(), and art::NumBranchTypes.
|
protectedinherited |
Definition at line 82 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsume().
|
protectedinherited |
Definition at line 96 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeMany().
|
protectedinherited |
|
inherited |
Definition at line 89 of file ModuleBase.h.
References art::ModuleBase::collector_, and art::ConsumesCollector::mayConsumeView().
|
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().
|
protectedvirtual |
Process pandora output particle flow objects.
| evt | the art event |
| idToHitMap | the pandora hit id to art hit map |
Implements lar_pandora::ILArPandora.
Definition at line 241 of file LArPandora.cxx.
References m_allOutcomesInstanceLabel, lar_pandora::LArPandoraOutput::Settings::m_allOutcomesInstanceLabel, m_enableProduction, m_outputSettings, m_shouldProduceAllOutcomes, lar_pandora::LArPandoraOutput::Settings::m_shouldProduceAllOutcomes, and lar_pandora::LArPandoraOutput::ProduceArtOutput().
Referenced by produce().
|
virtual |
Implements art::EDProducer.
Definition at line 165 of file LArPandora.cxx.
References CreatePandoraInput(), ProcessPandoraOutput(), lar_pandora::ILArPandora::ResetPandoraInstances(), and lar_pandora::ILArPandora::RunPandoraInstances().
|
inherited |
Definition at line 16 of file Modifier.cc.
References art::ModuleBase::moduleDescription(), and art::ProductRegistryHelper::registerProducts().
|
protectedpure virtualinherited |
Reset all associated pandora instances.
Implemented in lar_pandora::StandardPandora.
Referenced by produce().
|
protectedpure virtualinherited |
Run all associated pandora instances.
Implemented in lar_pandora::StandardPandora.
Referenced by produce().
|
inherited |
|
inherited |
Definition at line 49 of file ModuleBase.cc.
References art::ModuleBase::collector_, and art::ConsumesCollector::sortConsumables().
|
protected |
The instance label for all outcomes.
Definition at line 66 of file LArPandora.h.
Referenced by LArPandora(), and ProcessPandoraOutput().
|
protected |
The back tracker module label.
Definition at line 64 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
art tool used to collect the hits
Definition at line 76 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
The config file.
Definition at line 42 of file LArPandora.h.
Referenced by lar_pandora::StandardPandora::ConfigurePandoraInstances().
|
protected |
Whether to check if the input file contains real data before accessing MC information.
Definition at line 73 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
The map from volume id to drift volume.
Definition at line 81 of file LArPandora.h.
Referenced by beginJob(), and CreatePandoraInput().
|
protected |
Whether to pass detector gap information to Pandora instances.
Definition at line 69 of file LArPandora.h.
Referenced by beginJob(), and CreatePandoraInput().
|
protected |
Whether to pass mc information to Pandora instances to aid development.
Definition at line 71 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
Whether to persist output products.
Definition at line 68 of file LArPandora.h.
Referenced by LArPandora(), and ProcessPandoraOutput().
|
protected |
The geant module label.
Definition at line 61 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
The generator module label.
Definition at line 60 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
The hit finder module label.
Definition at line 63 of file LArPandora.h.
Referenced by CreatePandoraInput(), and LArPandora().
|
protected |
The lar pandora input settings.
Definition at line 78 of file LArPandora.h.
Referenced by beginJob(), CreatePandoraInput(), and LArPandora().
|
protected |
Book-keeping: whether line gap creation has been called.
Definition at line 74 of file LArPandora.h.
Referenced by CreatePandoraInput().
|
protected |
The lar pandora output settings.
Definition at line 79 of file LArPandora.h.
Referenced by beginJob(), LArPandora(), and ProcessPandoraOutput().
|
protectedinherited |
The address of the primary pandora instance.
Definition at line 85 of file ILArPandora.h.
Referenced by beginJob(), lar_pandora::StandardPandora::ConfigurePandoraInstances(), lar_pandora::StandardPandora::CreatePandoraInstances(), lar_pandora::StandardPandora::DeletePandoraInstances(), lar_pandora::StandardPandora::ResetPandoraInstances(), and lar_pandora::StandardPandora::RunPandoraInstances().
|
protected |
Steering: whether to print current operation status messages.
Definition at line 58 of file LArPandora.h.
Referenced by lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to identify slices and select most appropriate pfos.
Definition at line 56 of file LArPandora.h.
Referenced by lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to produce all reconstruction outcomes.
Definition at line 57 of file LArPandora.h.
Referenced by LArPandora(), and ProcessPandoraOutput().
|
protected |
Steering: whether to run all hits cosmic-ray reconstruction.
Definition at line 45 of file LArPandora.h.
Referenced by lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to remove hits from tagged cosmic-rays.
Definition at line 48 of file LArPandora.h.
Referenced by lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to run cosmic-ray reconstruction for each slice.
Definition at line 54 of file LArPandora.h.
Referenced by LArPandora(), and lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to run neutrino reconstruction for each slice.
Definition at line 52 of file LArPandora.h.
Referenced by LArPandora(), and lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to slice events into separate regions for processing.
Definition at line 50 of file LArPandora.h.
Referenced by LArPandora(), and lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
Steering: whether to stitch cosmic-ray muons crossing between volumes.
Definition at line 47 of file LArPandora.h.
Referenced by LArPandora(), and lar_pandora::StandardPandora::ProvideExternalSteeringParameters().
|
protected |
The SimChannel producer module label.
Definition at line 62 of file LArPandora.h.
Referenced by CreatePandoraInput().