LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
CheatingPfoCreationAlgorithm.h
Go to the documentation of this file.
1 
8 #ifndef LAR_CHEATING_PFO_CREATION_ALGORITHM_H
9 #define LAR_CHEATING_PFO_CREATION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
14 
15 #include <unordered_map>
16 
17 namespace lar_content
18 {
19 
23 class CheatingPfoCreationAlgorithm : public pandora::Algorithm
24 {
25 public:
30 
31 private:
32  pandora::StatusCode Run();
33  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
34 
35  typedef std::unordered_map<const pandora::MCParticle*, pandora::ClusterList> MCParticleToClusterListMap;
36 
44  void GetMCParticleToClusterListMap(const pandora::ClusterList *const pClusterList, const LArMCParticleHelper::MCRelationMap &mcPrimaryMap,
45  MCParticleToClusterListMap &mcParticleToClusterListMap) const;
46 
52  void CreatePfos(const MCParticleToClusterListMap &mcParticleToClusterListMap) const;
53 
62  unsigned int GetNHitTypesAboveThreshold(const pandora::ClusterList &clusterList, const unsigned int nHitsThreshold) const;
63 
64  typedef std::map<pandora::HitType, unsigned int> HitTypeMap;
65  typedef std::set<int> ParticleIdList;
66 
67  pandora::StringVector m_inputClusterListNames;
68  std::string m_outputPfoListName;
69  std::string m_outputVertexListName;
70 
72  std::string m_mcParticleListName;
73 
77  unsigned int m_minGoodHitTypes;
78  unsigned int m_nHitsForGoodHitType;
79  ParticleIdList m_particleIdList;
80 };
81 
82 } // namespace lar_content
83 
84 #endif // #ifndef LAR_CHEATING_PFO_CREATION_ALGORITHM_H
std::string m_mcParticleListName
The mc particle list name.
pandora::StringVector m_inputClusterListNames
The names of the input cluster lists.
std::unordered_map< const pandora::MCParticle *, pandora::ClusterList > MCParticleToClusterListMap
std::string m_outputVertexListName
The output vertex list name.
unsigned int m_minGoodHitTypes
The min number of good hit types in the clusters collected for a given mc particle.
void CreatePfos(const MCParticleToClusterListMap &mcParticleToClusterListMap) const
Create pfos corresponding to the details in a provided mc particle to cluster list map...
std::string m_outputPfoListName
The output pfo list name.
std::map< pandora::HitType, unsigned int > HitTypeMap
Header file for the lar monte carlo particle helper helper class.
unsigned int m_nHitsForGoodHitType
The min number of hits of a particular hit type in order to declare the hit type is good...
void GetMCParticleToClusterListMap(const pandora::ClusterList *const pClusterList, const LArMCParticleHelper::MCRelationMap &mcPrimaryMap, MCParticleToClusterListMap &mcParticleToClusterListMap) const
Get a map relating mc particles to a list of daughter clusters.
bool m_addVertices
Whether to add the start vertex to the cheated pfo.
bool m_useOnlyAvailableClusters
Whether to consider unavailable clusters when identifying cheated pfos.
ParticleIdList m_particleIdList
The list of particle ids to consider for pfo creation; will consider all ids if empty.
unsigned int GetNHitTypesAboveThreshold(const pandora::ClusterList &clusterList, const unsigned int nHitsThreshold) const
Get the number of hit types containing more than a specified number of hits.
bool m_collapseToPrimaryMCParticles
Whether to collapse mc particle hierarchies to primary particles.
bool m_replaceCurrentVertexList
Whether to replace current vertex list.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::unordered_map< const pandora::MCParticle *, const pandora::MCParticle * > MCRelationMap