Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:14

0001 #include "DataFormats/GeometrySurface/interface/LocalError.h"
0002 #include <iostream>
0003 
0004 std::ostream& operator<<(std::ostream& s, const LocalError& err) {
0005   return s << " (" << err.xx() << "," << err.xy() << "," << err.yy() << ") ";
0006 }