All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
lar_pandora::LArPandora Class Reference

LArPandora class. More...

#include <LArPandora.h>

Inheritance diagram for lar_pandora::LArPandora:
lar_pandora::ILArPandora lar_pandora::StandardPandora

Public Member Functions

 LArPandora (fhicl::ParameterSet const &pset)
 Constructor. More...
 
void beginJob ()
 
void produce (art::Event &evt)
 
- Public Member Functions inherited from lar_pandora::ILArPandora
 ILArPandora (fhicl::ParameterSet const &pset)
 Constructor. More...
 
virtual ~ILArPandora ()
 Destructor. More...
 

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...
 
- Protected Member Functions inherited from lar_pandora::ILArPandora
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...
 

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...
 
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...
 
- Protected Attributes inherited from lar_pandora::ILArPandora
const pandora::Pandora * m_pPrimaryPandora
 The address of the primary pandora instance. More...
 

Detailed Description

LArPandora class.

Definition at line 22 of file LArPandora.h.

Constructor & Destructor Documentation

lar_pandora::LArPandora::LArPandora ( fhicl::ParameterSet const &  pset)

Constructor.

Parameters
psetthe parameter set

Definition at line 41 of file LArPandora.cxx.

42  : ILArPandora(pset)
43  , m_configFile(pset.get<std::string>("ConfigFile"))
44  , m_shouldRunAllHitsCosmicReco(pset.get<bool>("ShouldRunAllHitsCosmicReco"))
45  , m_shouldRunStitching(pset.get<bool>("ShouldRunStitching"))
46  , m_shouldRunCosmicHitRemoval(pset.get<bool>("ShouldRunCosmicHitRemoval"))
47  , m_shouldRunSlicing(pset.get<bool>("ShouldRunSlicing"))
48  , m_shouldRunNeutrinoRecoOption(pset.get<bool>("ShouldRunNeutrinoRecoOption"))
49  , m_shouldRunCosmicRecoOption(pset.get<bool>("ShouldRunCosmicRecoOption"))
50  , m_shouldPerformSliceId(pset.get<bool>("ShouldPerformSliceId"))
51  , m_shouldProduceAllOutcomes(pset.get<bool>("ProduceAllOutcomes", false))
52  , m_printOverallRecoStatus(pset.get<bool>("PrintOverallRecoStatus", false))
53  , m_generatorModuleLabel(pset.get<std::string>("GeneratorModuleLabel", ""))
54  , m_geantModuleLabel(pset.get<std::string>("GeantModuleLabel", "largeant"))
55  , m_simChannelModuleLabel(pset.get<std::string>("SimChannelModuleLabel", m_geantModuleLabel))
56  , m_hitfinderModuleLabel(pset.get<std::string>("HitFinderModuleLabel"))
57  , m_backtrackerModuleLabel(pset.get<std::string>("BackTrackerModuleLabel", ""))
58  , m_allOutcomesInstanceLabel(pset.get<std::string>("AllOutcomesInstanceLabel", "allOutcomes"))
59  , m_enableProduction(pset.get<bool>("EnableProduction", true))
60  , m_enableDetectorGaps(pset.get<bool>("EnableLineGaps", true))
61  , m_enableMCParticles(pset.get<bool>("EnableMCParticles", false))
62  , m_disableRealDataCheck(pset.get<bool>("DisableRealDataCheck", false))
63  , m_lineGapsCreated(false)
64  {
65  m_inputSettings.m_useHitWidths = pset.get<bool>("UseHitWidths", true);
66  m_inputSettings.m_useBirksCorrection = pset.get<bool>("UseBirksCorrection", false);
67  m_inputSettings.m_useActiveBoundingBox = pset.get<bool>("UseActiveBoundingBox", false);
68  m_inputSettings.m_uidOffset = pset.get<int>("UidOffset", 100000000);
69  m_inputSettings.m_dx_cm = pset.get<double>("DefaultHitWidth", 0.5);
70  m_inputSettings.m_int_cm = pset.get<double>("InteractionLength", 84.);
71  m_inputSettings.m_rad_cm = pset.get<double>("RadiationLength", 14.);
72  m_inputSettings.m_dEdX_mip = pset.get<double>("dEdXmip", 2.);
73  m_inputSettings.m_mips_max = pset.get<double>("MipsMax", 50.);
74  m_inputSettings.m_mips_if_negative = pset.get<double>("MipsIfNegative", 0.);
75  m_inputSettings.m_mips_to_gev = pset.get<double>("MipsToGeV", 3.5e-4);
76  m_inputSettings.m_recombination_factor = pset.get<double>("RecombinationFactor", 0.63);
78  m_outputSettings.m_shouldProduceSlices = pset.get<bool>("ShouldProduceSlices", true);
80  pset.get<bool>("ShouldProduceTestBeamInteractionVertices", false);
82  "TestBeamInteractionVerticesInstanceLabel", "testBeamInteractionVertices");
86 
87  if (m_enableProduction) {
88  // Set up the instance names to produces
89  std::vector<std::string> instanceNames({""});
90  if (m_shouldProduceAllOutcomes) instanceNames.push_back(m_allOutcomesInstanceLabel);
91 
92  for (const std::string& instanceName : instanceNames) {
93  produces<std::vector<recob::PFParticle>>(instanceName);
94  produces<std::vector<recob::SpacePoint>>(instanceName);
95  produces<std::vector<recob::Cluster>>(instanceName);
96  produces<std::vector<recob::Vertex>>(instanceName);
97  produces<std::vector<larpandoraobj::PFParticleMetadata>>(instanceName);
98 
99  produces<art::Assns<recob::PFParticle, larpandoraobj::PFParticleMetadata>>(instanceName);
100  produces<art::Assns<recob::PFParticle, recob::SpacePoint>>(instanceName);
101  produces<art::Assns<recob::PFParticle, recob::Cluster>>(instanceName);
102  produces<art::Assns<recob::PFParticle, recob::Vertex>>(instanceName);
103  produces<art::Assns<recob::SpacePoint, recob::Hit>>(instanceName);
104  produces<art::Assns<recob::Cluster, recob::Hit>>(instanceName);
105 
107  // ATTN: Test beam interaction vertex instance label appended to current instance name to preserve unique label in multiple instance case
108  produces<std::vector<recob::Vertex>>(
110  produces<art::Assns<recob::PFParticle, recob::Vertex>>(
112  }
113 
115  produces<std::vector<anab::T0>>(instanceName);
116  produces<art::Assns<recob::PFParticle, anab::T0>>(instanceName);
117  }
118 
120  produces<std::vector<recob::Slice>>(instanceName);
121  produces<art::Assns<recob::Slice, recob::Hit>>(instanceName);
122  produces<art::Assns<recob::PFParticle, recob::Slice>>(instanceName);
123  }
124  }
125  }
126  }
std::string m_allOutcomesInstanceLabel
The instance label for all outcomes.
Definition: LArPandora.h:62
bool m_shouldRunAllHitsCosmicReco
Steering: whether to run all hits cosmic-ray reconstruction.
Definition: LArPandora.h:41
std::string m_testBeamInteractionVerticesInstanceLabel
The label for the test beam interaction vertices.
bool m_disableRealDataCheck
Whether to check if the input file contains real data before accessing MC information.
Definition: LArPandora.h:69
bool m_shouldProduceAllOutcomes
Steering: whether to produce all reconstruction outcomes.
Definition: LArPandora.h:53
bool m_isNeutrinoRecoOnlyNoSlicing
If we are running the neutrino reconstruction only with no slicing.
std::string m_backtrackerModuleLabel
The back tracker module label.
Definition: LArPandora.h:60
bool m_lineGapsCreated
Book-keeping: whether line gap creation has been called.
Definition: LArPandora.h:70
bool m_shouldRunCosmicHitRemoval
Steering: whether to remove hits from tagged cosmic-rays.
Definition: LArPandora.h:44
std::string m_hitfinderModuleLabel
The hit finder module label.
bool m_shouldRunNeutrinoRecoOption
Steering: whether to run neutrino reconstruction for each slice.
Definition: LArPandora.h:48
bool m_printOverallRecoStatus
Steering: whether to print current operation status messages.
Definition: LArPandora.h:54
std::string m_generatorModuleLabel
The generator module label.
Definition: LArPandora.h:56
std::string m_geantModuleLabel
The geant module label.
Definition: LArPandora.h:57
bool m_shouldRunCosmicRecoOption
Steering: whether to run cosmic-ray reconstruction for each slice.
Definition: LArPandora.h:50
bool m_shouldProduceTestBeamInteractionVertices
Whether to write the test beam interaction vertices in a separate collection.
std::string m_configFile
The config file.
Definition: LArPandora.h:38
bool m_enableDetectorGaps
Whether to pass detector gap information to Pandora instances.
Definition: LArPandora.h:65
bool m_shouldRunStitching
Steering: whether to stitch cosmic-ray muons crossing between volumes.
Definition: LArPandora.h:43
LArPandoraInput::Settings m_inputSettings
The lar pandora input settings.
Definition: LArPandora.h:72
LArPandoraOutput::Settings m_outputSettings
The lar pandora output settings.
Definition: LArPandora.h:73
bool m_shouldProduceSlices
Whether to produce output slices e.g. may not want to do this if only (re)processing single slices...
ILArPandora(fhicl::ParameterSet const &pset)
Constructor.
Definition: ILArPandora.h:88
bool m_shouldRunSlicing
Steering: whether to slice events into separate regions for processing.
Definition: LArPandora.h:46
bool m_enableMCParticles
Whether to pass mc information to Pandora instances to aid development.
Definition: LArPandora.h:67
bool m_enableProduction
Whether to persist output products.
Definition: LArPandora.h:64
std::string m_simChannelModuleLabel
The SimChannel producer module label.
Definition: LArPandora.h:58
bool m_shouldPerformSliceId
Steering: whether to identify slices and select most appropriate pfos.
Definition: LArPandora.h:52
std::string m_hitfinderModuleLabel
The hit finder module label.
Definition: LArPandora.h:59

Member Function Documentation

void lar_pandora::LArPandora::beginJob ( )

Definition at line 131 of file LArPandora.cxx.

132  {
133  LArDriftVolumeList driftVolumeList;
136 
137  this->CreatePandoraInstances();
138 
139  if (!m_pPrimaryPandora)
140  throw cet::exception("LArPandora")
141  << " LArPandora::beginJob - failed to create primary Pandora instance " << std::endl;
142 
145 
146  // Pass basic LArTPC information to pandora instances
148 
149  // If using global drift volume approach, pass details of gaps between daughter volumes to the pandora instance
150  if (m_enableDetectorGaps) {
151  LArDetectorGapList listOfGaps;
153  LArPandoraInput::CreatePandoraDetectorGaps(m_inputSettings, driftVolumeList, listOfGaps);
154  }
155 
156  // Parse Pandora settings xml files
158  }
static void CreatePandoraDetectorGaps(const Settings &settings, const LArDriftVolumeList &driftVolumeList, const LArDetectorGapList &listOfGaps)
Create pandora line gaps to cover dead regions between TPCs in a global drift volume approach...
const pandora::Pandora * m_pPrimaryPandora
static void LoadGeometry(LArDriftVolumeList &outputVolumeList, LArDriftVolumeMap &outputVolumeMap, const bool useActiveBoundingBox)
Load drift volume geometry.
std::vector< LArDriftVolume > LArDriftVolumeList
const pandora::Pandora * m_pPrimaryPandora
const pandora::Pandora * m_pPrimaryPandora
The address of the primary pandora instance.
Definition: ILArPandora.h:83
LArDriftVolumeMap m_driftVolumeMap
The map from volume id to drift volume.
Definition: LArPandora.h:75
virtual void CreatePandoraInstances()=0
Create pandora instances.
static void LoadDetectorGaps(LArDetectorGapList &listOfGaps, const bool useActiveBoundingBox)
Load the 2D gaps that go with the chosen geometry.
bool m_enableDetectorGaps
Whether to pass detector gap information to Pandora instances.
Definition: LArPandora.h:65
LArPandoraInput::Settings m_inputSettings
The lar pandora input settings.
Definition: LArPandora.h:72
static void CreatePandoraLArTPCs(const Settings &settings, const LArDriftVolumeList &driftVolumeList)
Create pandora LArTPCs to represent the different drift volumes in use.
LArPandoraOutput::Settings m_outputSettings
The lar pandora output settings.
Definition: LArPandora.h:73
std::vector< LArDetectorGap > LArDetectorGapList
virtual void ConfigurePandoraInstances()=0
Configure pandora instances.
void lar_pandora::LArPandora::CreatePandoraInput ( art::Event &  evt,
IdToHitMap idToHitMap 
)
protectedvirtual

Create pandora input hits, mc particles etc.

Parameters
evtthe art event
idToHitMapto receive the populated pandora hit id to art hit map

Implements lar_pandora::ILArPandora.

Definition at line 175 of file LArPandora.cxx.

176  {
177  // ATTN Should complete gap creation in begin job callback, but channel status service functionality unavailable at that point
180  m_lineGapsCreated = true;
181  }
182 
183  HitVector artHits;
184  SimChannelVector artSimChannels;
185  HitsToTrackIDEs artHitsToTrackIDEs;
186  MCParticleVector artMCParticleVector;
187  RawMCParticleVector generatorArtMCParticleVector;
188  MCTruthToMCParticles artMCTruthToMCParticles;
189  MCParticlesToMCTruth artMCParticlesToMCTruth;
190 
191  bool areSimChannelsValid(false);
192 
194 
195  if (m_enableMCParticles && (m_disableRealDataCheck || !evt.isRealData())) {
197 
198  if (!m_generatorModuleLabel.empty())
200  evt, m_generatorModuleLabel, generatorArtMCParticleVector);
201 
203  evt, m_geantModuleLabel, artMCTruthToMCParticles, artMCParticlesToMCTruth);
204 
206  evt, m_simChannelModuleLabel, artSimChannels, areSimChannelsValid);
207  if (!artSimChannels.empty()) {
208  LArPandoraHelper::BuildMCParticleHitMaps(evt, artHits, artSimChannels, artHitsToTrackIDEs);
209  }
210  else if (!areSimChannelsValid) {
211  if (m_backtrackerModuleLabel.empty())
212  throw cet::exception("LArPandora")
213  << "LArPandora::CreatePandoraInput - Can't build MCParticle to Hit map." << std::endl
214  << "No SimChannels found with label \"" << m_simChannelModuleLabel
215  << "\", and BackTrackerModuleLabel isn't set in FHiCL." << std::endl;
216 
218  evt, m_hitfinderModuleLabel, m_backtrackerModuleLabel, artHitsToTrackIDEs);
219  }
220  else {
221  mf::LogDebug("LArPandora")
222  << " *** LArPandora::CreatePandoraInput - empty list of sim channels found " << std::endl;
223  }
224  }
225 
227  evt, m_inputSettings, m_driftVolumeMap, artHits, idToHitMap);
228 
229  if (m_enableMCParticles && (m_disableRealDataCheck || !evt.isRealData())) {
231  artMCTruthToMCParticles,
232  artMCParticlesToMCTruth,
233  generatorArtMCParticleVector);
234  LArPandoraInput::CreatePandoraMCLinks2D(m_inputSettings, idToHitMap, artHitsToTrackIDEs);
235  }
236  }
static void CreatePandoraMCParticles(const Settings &settings, const MCTruthToMCParticles &truthToParticles, const MCParticlesToMCTruth &particlesToTruth, const RawMCParticleVector &generatorMCParticleVector)
Create the Pandora MC particles from the MC particles.
std::map< art::Ptr< simb::MCParticle >, art::Ptr< simb::MCTruth > > MCParticlesToMCTruth
bool m_disableRealDataCheck
Whether to check if the input file contains real data before accessing MC information.
Definition: LArPandora.h:69
std::string m_backtrackerModuleLabel
The back tracker module label.
Definition: LArPandora.h:60
static void CollectGeneratorMCParticles(const art::Event &evt, const std::string &label, RawMCParticleVector &particleVector)
Collect a vector of MCParticle objects from the generator in the ART event record. ATTN: This function is needed as accessing generator (opposed to Geant4) level MCParticles requires use of MCTruth block.
bool m_lineGapsCreated
Book-keeping: whether line gap creation has been called.
Definition: LArPandora.h:70
std::map< art::Ptr< recob::Hit >, TrackIDEVector > HitsToTrackIDEs
std::vector< simb::MCParticle > RawMCParticleVector
LArDriftVolumeMap m_driftVolumeMap
The map from volume id to drift volume.
Definition: LArPandora.h:75
std::map< art::Ptr< simb::MCTruth >, MCParticleVector > MCTruthToMCParticles
std::string m_generatorModuleLabel
The generator module label.
Definition: LArPandora.h:56
std::string m_geantModuleLabel
The geant module label.
Definition: LArPandora.h:57
static void CreatePandoraMCLinks2D(const Settings &settings, const HitMap &hitMap, const HitsToTrackIDEs &hitToParticleMap)
Create links between the 2D hits and Pandora MC particles.
std::vector< art::Ptr< simb::MCParticle > > MCParticleVector
static void CollectSimChannels(const art::Event &evt, const std::string &label, SimChannelVector &simChannelVector, bool &areSimChannelsValid)
Collect a vector of SimChannel objects from the ART event record.
static void CollectHits(const art::Event &evt, const std::string &label, HitVector &hitVector)
Collect the reconstructed Hits from the ART event record.
static void CreatePandoraReadoutGaps(const Settings &settings, const LArDriftVolumeMap &driftVolumeMap)
Create pandora line gaps to cover any (continuous regions of) bad channels.
bool m_enableDetectorGaps
Whether to pass detector gap information to Pandora instances.
Definition: LArPandora.h:65
LArPandoraInput::Settings m_inputSettings
The lar pandora input settings.
Definition: LArPandora.h:72
std::vector< art::Ptr< recob::Hit > > HitVector
std::vector< art::Ptr< sim::SimChannel > > SimChannelVector
static void CreatePandoraHits2D(const art::Event &evt, const Settings &settings, const LArDriftVolumeMap &driftVolumeMap, const HitVector &hitVector, IdToHitMap &idToHitMap)
Create the Pandora 2D hits from the ART hits.
TCEvent evt
Definition: DataStructs.cxx:8
bool m_enableMCParticles
Whether to pass mc information to Pandora instances to aid development.
Definition: LArPandora.h:67
static void BuildMCParticleHitMaps(const art::Event &evt, const HitVector &hitVector, const SimChannelVector &simChannelVector, HitsToTrackIDEs &hitsToTrackIDEs)
Collect the links from reconstructed hits to their true energy deposits.
static void CollectMCParticles(const art::Event &evt, const std::string &label, MCParticleVector &particleVector)
Collect a vector of MCParticle objects from the ART event record.
std::string m_simChannelModuleLabel
The SimChannel producer module label.
Definition: LArPandora.h:58
std::string m_hitfinderModuleLabel
The hit finder module label.
Definition: LArPandora.h:59
void lar_pandora::LArPandora::ProcessPandoraOutput ( art::Event &  evt,
const IdToHitMap idToHitMap 
)
protectedvirtual

Process pandora output particle flow objects.

Parameters
evtthe art event
idToHitMapthe pandora hit id to art hit map

Implements lar_pandora::ILArPandora.

Definition at line 241 of file LArPandora.cxx.

242  {
243  if (m_enableProduction) {
246 
251  }
252  }
253  }
std::string m_allOutcomesInstanceLabel
The instance label for all outcomes.
Definition: LArPandora.h:62
std::string m_allOutcomesInstanceLabel
The label for the instance producing all outcomes.
bool m_shouldProduceAllOutcomes
Steering: whether to produce all reconstruction outcomes.
Definition: LArPandora.h:53
static void ProduceArtOutput(const Settings &settings, const IdToHitMap &idToHitMap, art::Event &evt)
Convert the Pandora PFOs into ART clusters and write into ART event.
LArPandoraOutput::Settings m_outputSettings
The lar pandora output settings.
Definition: LArPandora.h:73
bool m_shouldProduceAllOutcomes
If all outcomes should be produced in separate collections (choose false if you only require the cons...
TCEvent evt
Definition: DataStructs.cxx:8
bool m_enableProduction
Whether to persist output products.
Definition: LArPandora.h:64
void lar_pandora::LArPandora::produce ( art::Event &  evt)

Definition at line 163 of file LArPandora.cxx.

164  {
165  IdToHitMap idToHitMap;
166  this->CreatePandoraInput(evt, idToHitMap);
167  this->RunPandoraInstances();
168  this->ProcessPandoraOutput(evt, idToHitMap);
169  this->ResetPandoraInstances();
170  }
void CreatePandoraInput(art::Event &evt, IdToHitMap &idToHitMap)
Create pandora input hits, mc particles etc.
Definition: LArPandora.cxx:175
std::map< int, art::Ptr< recob::Hit > > IdToHitMap
Definition: ILArPandora.h:21
void ProcessPandoraOutput(art::Event &evt, const IdToHitMap &idToHitMap)
Process pandora output particle flow objects.
Definition: LArPandora.cxx:241
virtual void ResetPandoraInstances()=0
Reset all associated pandora instances.
virtual void RunPandoraInstances()=0
Run all associated pandora instances.
TCEvent evt
Definition: DataStructs.cxx:8

Member Data Documentation

std::string lar_pandora::LArPandora::m_allOutcomesInstanceLabel
protected

The instance label for all outcomes.

Definition at line 62 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_backtrackerModuleLabel
protected

The back tracker module label.

Definition at line 60 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_configFile
protected

The config file.

Definition at line 38 of file LArPandora.h.

bool lar_pandora::LArPandora::m_disableRealDataCheck
protected

Whether to check if the input file contains real data before accessing MC information.

Definition at line 69 of file LArPandora.h.

LArDriftVolumeMap lar_pandora::LArPandora::m_driftVolumeMap
protected

The map from volume id to drift volume.

Definition at line 75 of file LArPandora.h.

bool lar_pandora::LArPandora::m_enableDetectorGaps
protected

Whether to pass detector gap information to Pandora instances.

Definition at line 65 of file LArPandora.h.

bool lar_pandora::LArPandora::m_enableMCParticles
protected

Whether to pass mc information to Pandora instances to aid development.

Definition at line 67 of file LArPandora.h.

bool lar_pandora::LArPandora::m_enableProduction
protected

Whether to persist output products.

Definition at line 64 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_geantModuleLabel
protected

The geant module label.

Definition at line 57 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_generatorModuleLabel
protected

The generator module label.

Definition at line 56 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_hitfinderModuleLabel
protected

The hit finder module label.

Definition at line 59 of file LArPandora.h.

LArPandoraInput::Settings lar_pandora::LArPandora::m_inputSettings
protected

The lar pandora input settings.

Definition at line 72 of file LArPandora.h.

bool lar_pandora::LArPandora::m_lineGapsCreated
protected

Book-keeping: whether line gap creation has been called.

Definition at line 70 of file LArPandora.h.

LArPandoraOutput::Settings lar_pandora::LArPandora::m_outputSettings
protected

The lar pandora output settings.

Definition at line 73 of file LArPandora.h.

bool lar_pandora::LArPandora::m_printOverallRecoStatus
protected

Steering: whether to print current operation status messages.

Definition at line 54 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldPerformSliceId
protected

Steering: whether to identify slices and select most appropriate pfos.

Definition at line 52 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldProduceAllOutcomes
protected

Steering: whether to produce all reconstruction outcomes.

Definition at line 53 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunAllHitsCosmicReco
protected

Steering: whether to run all hits cosmic-ray reconstruction.

Definition at line 41 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunCosmicHitRemoval
protected

Steering: whether to remove hits from tagged cosmic-rays.

Definition at line 44 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunCosmicRecoOption
protected

Steering: whether to run cosmic-ray reconstruction for each slice.

Definition at line 50 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunNeutrinoRecoOption
protected

Steering: whether to run neutrino reconstruction for each slice.

Definition at line 48 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunSlicing
protected

Steering: whether to slice events into separate regions for processing.

Definition at line 46 of file LArPandora.h.

bool lar_pandora::LArPandora::m_shouldRunStitching
protected

Steering: whether to stitch cosmic-ray muons crossing between volumes.

Definition at line 43 of file LArPandora.h.

std::string lar_pandora::LArPandora::m_simChannelModuleLabel
protected

The SimChannel producer module label.

Definition at line 58 of file LArPandora.h.


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