Translating volumes after close geometry

Hello,

Is it possible to translate or rotate any volume after to close the geometry?
If so, How can I do that?

Luciano

Hi,

It is possible to do this in a safe way only using TGeoPhysicalNode objects. For usage, see:
ftp://root.cern.ch/root/doc/18Geometry.pdf page 340.
TGeoPhysicalNode *pn = new TGeoPhysicalNode(“path_to_object_to_move”)
pn->Align(new_matrix); // where new_matrix is the local matrix of the last volume in the path.

Cheers,
Andrei[/quote]