.. _program_listing_file_larflow_Reco_NuVertexCandidate.h: Program Listing for File NuVertexCandidate.h ============================================ |exhale_lsh| :ref:`Return to documentation for file ` (``larflow/Reco/NuVertexCandidate.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef __LARFLOW_RECO_NUVERTEX_CANDIDATE_H__ #define __LARFLOW_RECO_NUVERTEX_CANDIDATE_H__ #include #include namespace larflow { namespace reco { class NuVertexCandidate { public: NuVertexCandidate() {}; virtual ~NuVertexCandidate() {}; typedef enum { kTrack=0, kShowerKP, kShower } ClusterType_t; struct VtxCluster_t { std::string producer; int index; std::vector dir; std::vector pos; float gap; float impact; int npts; ClusterType_t type; }; std::string keypoint_producer; int keypoint_index; std::vector pos; std::vector< VtxCluster_t > cluster_v; float score; bool operator<(const NuVertexCandidate& rhs) const { if ( score>rhs.score ) return true; return false; }; }; } } #endif