#include "G4ErrorSurfaceTrajState.hh"
#include "G4ErrorPropagatorData.hh"
#include "G4PhysicalConstants.hh"
#include "G4SystemOfUnits.hh"
#include "G4Field.hh"
#include "G4FieldManager.hh"
#include "G4TransportationManager.hh"
#include "G4ErrorMatrix.hh"
#include <iomanip>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const G4ErrorSurfaceTrajState &ts) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const G4ErrorSurfaceTrajState & | ts | |||
) |
Definition at line 225 of file G4ErrorSurfaceTrajState.cc.
References G4ErrorTrajState::DumpPosMomError(), G4ErrorSurfaceTrajState::fTrajParam, and G4endl.
00226 { 00227 std::ios::fmtflags oldFlags = out.flags(); 00228 out.setf(std::ios::fixed,std::ios::floatfield); 00229 00230 ts.DumpPosMomError( out ); 00231 00232 out << " G4ErrorSurfaceTrajState: Params: " << ts.fTrajParam << G4endl; 00233 out.flags(oldFlags); 00234 return out; 00235 }