UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
sim_point_2d.hpp
1 /* sim_point_2d.hpp */
2 /* $Id$ */
3 #ifndef __sim_point_2d_hpp
4 #define __sim_point_2d_hpp
5 
6 #include <s2proc/sim_service.hpp>
7 
11 namespace sim
12 {
16  struct Point2D
17  {
18  Point2D():
19  x(0), z(0) {/* nothing to do. */};
20 
21  Point2D(double ix, double iz):
22  x(ix), z(iz) {/* nothing to do. */};
23 
24  CoordT x, z;
25  };
26 };
27 
28 #endif /* sim_point_2d.hpp */
Definition: sim_point_2d.hpp:16
bool sim(size_t n, const Trace::AmplT *x, const Trace::AmplT *y, Trace::AmplT &s)