Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:50:00

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