Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ErrorFreeTrajState.cc File Reference
#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)
 

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream &  out,
const G4ErrorFreeTrajState ts 
)

Definition at line 185 of file G4ErrorFreeTrajState.cc.

186{
187 std::ios::fmtflags orig_flags = out.flags();
188
189 out.setf(std::ios::fixed,std::ios::floatfield);
190
191 ts.DumpPosMomError( out );
192
193 out << " G4ErrorFreeTrajState: Params: " << ts.fTrajParam << G4endl;
194
195 out.flags(orig_flags);
196
197 return out;
198}
#define G4endl
Definition: G4ios.hh:57
void DumpPosMomError(std::ostream &out=G4cout) const