00001 #include "brct_plane_corr.h" 00002 //: 00003 // \file 00004 #include <vcl_iostream.h> 00005 00006 brct_plane_corr::brct_plane_corr() 00007 { 00008 plane_ = 0; 00009 index_ = 0; 00010 } 00011 00012 brct_plane_corr::brct_plane_corr(const int n_cams, const int plane, const int index) : brct_corr(n_cams) 00013 { 00014 plane_ = plane; 00015 index_ = index; 00016 } 00017 00018 brct_plane_corr::~brct_plane_corr() 00019 { 00020 } 00021 00022 00023 //external functions 00024 vcl_ostream& operator<<(vcl_ostream& s, brct_plane_corr const& pc) 00025 { 00026 s << " Plane No. " << pc.plane_ << " Index in Plane " << pc.index_ << '\n'; 00027 brct_corr const& c = (brct_corr)pc; 00028 s << c; 00029 return s; 00030 }
1.5.1