Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-10-04 22:54:36

0001 #include <iostream>
0002 
0003 namespace geometryDetails {
0004   std::ostream& print3D(std::ostream& s, double x, double y, double z) {
0005     return s << " (" << x << ',' << y << ',' << z << ") ";
0006   }
0007   std::ostream& print2D(std::ostream& s, double x, double y) { return s << " (" << x << ',' << y << ") "; }
0008 
0009 }  // namespace geometryDetails