Rev 2184 | Rev 2302 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2184 | Rev 2204 | ||
---|---|---|---|
Line 36... | Line 36... | ||
36 | int operator== (const hit_t& h) {return ((crv == h.crv) && (what == h.what) && (id == h.id));} |
36 | int operator== (const hit_t& h) {return ((crv == h.crv) && (what == h.what) && (id == h.id));} |
37 | int matched_id (const hit_t& h) {return ( (crv == h.crv) && (id == h.id) ); } |
37 | int matched_id (const hit_t& h) {return ( (crv == h.crv) && (id == h.id) ); } |
38 | void ensure_id (); |
38 | void ensure_id (); |
39 | hit_t& operator= (const hit_t& h); |
39 | hit_t& operator= (const hit_t& h); |
40 | void copy (const hit_t& src); |
40 | void copy (const hit_t& src); |
- | 41 | ||
41 | pointinfo<float>& get (); |
42 | pointinfo<float>& get (); |
42 | 43 | ||
43 | }; |
44 | }; |
44 | 45 | ||
45 | template <typename T> T& operator<< (T& t, const hit_t& h) { |
46 | template <typename T> T& operator<< (T& t, const hit_t& h) { |