index page
0001: //////////////////////////////////////////////////
0002: //
0003: //                      ppa-r
0004: //  point process analysis system: pair correlation
0005: //
0006: //
0007: //      Copyright  November 2004 by TAKENAKA, A.
0008: 
0009: #if !defined (___R_X_ARRAY_H)
0010: #define ___R_X_ARRAY_H
0011: 
0012: #include <vector>
0013: #include <utility>
0014: 
0015: typedef std::pair<double, double> r_X_Pair;
0016: typedef std::vector<r_X_Pair> r_X_Array;
0017: 
0018: #endif // ___R_X_ARRAY_H

Back to Top of this Page