#include "G4ErrorSurfaceTrajParam.hh"
#include <iomanip>
#include "G4ThreeVector.hh"
#include "G4GeometryTolerance.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const G4ErrorSurfaceTrajParam &tp) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const G4ErrorSurfaceTrajParam & | tp | |||
) |
Definition at line 114 of file G4ErrorSurfaceTrajParam.cc.
References G4ErrorSurfaceTrajParam::fInvP, G4ErrorSurfaceTrajParam::fPV, G4ErrorSurfaceTrajParam::fPW, G4ErrorSurfaceTrajParam::fV, G4ErrorSurfaceTrajParam::fVectorV, G4ErrorSurfaceTrajParam::fVectorW, G4ErrorSurfaceTrajParam::fW, and G4endl.
00115 { 00116 // long mode = out.setf(std::ios::fixed,std::ios::floatfield); 00117 00118 // out << tp.theType; 00119 // out << std::setprecision(5) << std::setw(10); 00120 out << " InvP= " << tp.fInvP << " PV= " << tp.fPV 00121 << " PW= " << tp.fPW << " V= " << tp.fV << " W= " << tp.fW << G4endl; 00122 out << " vectorV direction= " << tp.fVectorV 00123 << " vectorW direction= " << tp.fVectorW << G4endl; 00124 00125 return out; 00126 }