#include "G4tgrPlaceParameterisation.hh"
#include "G4tgrUtils.hh"
#include "G4tgrVolume.hh"
#include "G4tgrMessenger.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4tgrPlaceParameterisation &obj) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4tgrPlaceParameterisation & | obj | |||
) |
Definition at line 91 of file G4tgrPlaceParameterisation.cc.
References G4endl, G4tgrPlaceParameterisation::theExtraData, G4tgrPlaceParameterisation::theParamType, G4tgrPlace::theParentName, and G4tgrPlaceParameterisation::theRotMatName.
00093 { 00094 os << "G4tgrPlaceParameterisation= in " << obj.theParentName 00095 << " ParamTyep = " << obj.theParamType 00096 << " RotMatName= " << obj.theRotMatName << " EXTRA DATA= "; 00097 for( size_t ii = 0; ii << obj.theExtraData.size(); ii++ ) 00098 { 00099 os << obj.theExtraData[ii] << " "; 00100 } 00101 os << G4endl; 00102 00103 return os; 00104 }