CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DataFormats/GeometrySurface/src/LocalError.cc

Go to the documentation of this file.
00001 #include "DataFormats/GeometrySurface/interface/LocalError.h"
00002 #include <iostream>
00003 
00004 std::ostream & operator<<( std::ostream& s, const LocalError& err) {
00005   return s << " (" << err.xx() << "," << err.xy() << "," << err.yy() << ") ";
00006 }
00007 
00008