#include "G4ErrorTrajState.hh"#include "G4ParticleTable.hh"#include "G4ParticleDefinition.hh"#include "G4ErrorPropagatorData.hh"#include <iomanip>Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &out, const G4ErrorTrajState &ts) |
| std::ostream& operator<< | ( | std::ostream & | out, | |
| const G4ErrorTrajState & | ts | |||
| ) |
Definition at line 111 of file G4ErrorTrajState.cc.
References G4ErrorTrajState::fError, G4ErrorTrajState::fMomentum, G4ErrorTrajState::fParticleType, G4ErrorTrajState::fPosition, G4cout, G4endl, and G4ErrorTrajState::theTSType.
00112 { 00113 // long mode = out.setf(std::ios::fixed,std::ios::floatfield); 00114 out 00115 << " G4ErrorTrajState of type " << ts.theTSType << " : partycle: " 00116 << ts.fParticleType << " position: " << std::setw(6) << ts.fPosition 00117 << " momentum: " << ts.fMomentum 00118 << " error matrix "; 00119 G4cout << ts.fError << G4endl; 00120 00121 return out; 00122 }
1.4.7