#include <iomanip>
#include "G4PhysicalConstants.hh"
#include "G4SystemOfUnits.hh"
#include "G4Field.hh"
#include "G4FieldManager.hh"
#include "G4TransportationManager.hh"
#include "G4GeometryTolerance.hh"
#include "G4Material.hh"
#include "G4ErrorPropagatorData.hh"
#include "G4ErrorFreeTrajState.hh"
#include "G4ErrorFreeTrajParam.hh"
#include "G4ErrorSurfaceTrajState.hh"
#include "G4ErrorMatrix.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const G4ErrorFreeTrajState &ts) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const G4ErrorFreeTrajState & | ts | |||
) |
Definition at line 186 of file G4ErrorFreeTrajState.cc.
References G4ErrorTrajState::DumpPosMomError(), G4ErrorFreeTrajState::fTrajParam, and G4endl.
00187 { 00188 std::ios::fmtflags orig_flags = out.flags(); 00189 00190 out.setf(std::ios::fixed,std::ios::floatfield); 00191 00192 ts.DumpPosMomError( out ); 00193 00194 out << " G4ErrorFreeTrajState: Params: " << ts.fTrajParam << G4endl; 00195 00196 out.flags(orig_flags); 00197 00198 return out; 00199 }