25 #include <TGeoMatrix.h>
26 #include <TGeoManager.h>
35 TGeoMatrix* mat = n->GetMatrix();
36 TGeoVolume* vol = n->GetVolume();
37 TGeoMedium* med = vol->GetMedium();
38 TGeoShape* shape = vol->GetShape();
39 TObjArray* nodes = vol->GetNodes();
40 for (
int i = 0; i < level; ++i)
42 std::cout <<
" ++Node:|" << n->GetName() <<
"| ";
43 std::cout <<
" Volume: " << vol->GetName() <<
" material:" << med->GetName()
44 <<
" shape:" << shape->GetName() << std::endl;
45 for (
int i = 0; i < level; ++i)
47 const Double_t* tr = mat->GetTranslation();
48 std::cout <<
" matrix:|" << mat->GetName()
49 <<
"|" << mat->IsTranslation() << mat->IsRotation() << mat->IsScale()
50 <<
" tr:x=" << tr[0] <<
" y=" << tr[1] <<
" z=" << tr[2];
51 if (mat->IsRotation()) {
52 Double_t theta, phi, psi;
53 TGeoRotation rot(*mat);
54 rot.GetAngles(phi, theta, psi);
55 std::cout <<
" rot: theta:" << theta <<
" phi:" << phi <<
" psi:" << psi;
57 std::cout << std::endl;
59 for (
int i = 0; i < level; ++i)
61 std::cout <<
" volume:" << plv.
toString();
62 std::cout << std::endl;
65 while ((geoNode = (TGeoNode *) next())) {
71 TObjArray* nodes = vol->GetNodes();
72 TGeoMedium* med = vol->GetMedium();
73 TGeoShape* shape = vol->GetShape();
75 for (
int i = 0; i < level; ++i)
77 std::cout <<
"++Volume: " << vol->GetName() <<
" material:" << med->GetName() <<
" shape:" << shape->GetName() << std::endl;
80 while ((geoNode = (TGeoNode *) next())) {