Geant4 9.6.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 187 of file G4ErrorFreeTrajState.cc.

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