20 #define LINK_PTR 0 // Node or site pointer 21 #define LINK_TT1 1 // First travel time in seconds 22 #define LINK_PHS1 2 // First travel time phase code 23 #define LINK_TT2 3 // Second travel time in seconds 24 #define LINK_PHS2 4 // Second travel time phase code 25 #define LINK_DIST 5 // Distance in degrees between Node and Site 34 typedef std::tuple<std::weak_ptr<CNode>, double, std::string, double, std::string,
double>
NodeLink;
42 typedef std::tuple<std::shared_ptr<CSite>, double, std::string, double, std::string,
double>
SiteLink;
std::tuple< std::weak_ptr< CNode >, double, std::string, double, std::string, double > NodeLink
Typedef to simplify use of a site-node link. Contains a CNode pointer to the Node that it's linked to...
Definition: Link.h:34
std::tuple< std::shared_ptr< CSite >, double, std::string, double, std::string, double > SiteLink
Typedef to simplify use of a node-site link. Contains a CSite pointer to the Site that it's linked to...
Definition: Link.h:42
The namespace containing the core algorithm.
Definition: Correlation.h:17