8 #ifndef LAR_CHEATING_PFO_CREATION_ALGORITHM_H 9 #define LAR_CHEATING_PFO_CREATION_ALGORITHM_H 1 11 #include "Pandora/Algorithm.h" 15 #include <unordered_map> 32 pandora::StatusCode
Run();
33 pandora::StatusCode
ReadSettings(
const pandora::TiXmlHandle xmlHandle);
52 void CreatePfos(
const MCParticleToClusterListMap &mcParticleToClusterListMap)
const;
71 bool IsTrack(
const pandora::MCParticle *
const pMCParticle)
const;
80 bool IsShower(
const pandora::MCParticle *
const pMCParticle)
const;
82 typedef std::map<pandora::HitType, unsigned int>
HitTypeMap;
102 #endif // #ifndef LAR_CHEATING_PFO_CREATION_ALGORITHM_H
std::string m_mcParticleListName
The mc particle list name.
CheatingPfoCreationAlgorithm()
Default constructor.
std::set< int > ParticleIdList
bool IsShower(const pandora::MCParticle *const pMCParticle) const
Determine whether an input MCParticle is a shower-like particle.
pandora::StringVector m_inputClusterListNames
The names of the input cluster lists.
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.
std::unordered_map< const pandora::MCParticle *, pandora::ClusterList > MCParticleToClusterListMap
pandora::StatusCode Run()
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...
bool IsTrack(const pandora::MCParticle *const pMCParticle) const
Determine whether an input MCParticle is a track-like particle.
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
CheatingPfoCreationAlgorithm class.