#include "G4tgrRotationMatrix.hh"
#include "G4SystemOfUnits.hh"
#include "G4tgrRotationMatrixFactory.hh"
#include "G4tgrUtils.hh"
#include "G4tgrMessenger.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4tgrRotationMatrix &obj) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4tgrRotationMatrix & | obj | |||
) |
Definition at line 109 of file G4tgrRotationMatrix.cc.
References G4endl, G4tgrRotationMatrix::theInputType, G4tgrRotationMatrix::theName, and G4tgrRotationMatrix::theValues.
00110 { 00111 os << "G4tgrRotationMatrix= " << obj.theName 00112 << " InputTyep = " << obj.theInputType << " VALUES= "; 00113 00114 for( size_t ii = 0; ii < obj.theValues.size(); ii++ ) 00115 { 00116 os << obj.theValues[ii] << " "; 00117 } 00118 00119 os << G4endl; 00120 00121 return os; 00122 }