Fix potential use of dangling temporary.
In ``` const TGeoHMatrix& m = par.nominal().worldTransformation(); ``` nominal() returns a temporary Alignment object by value, and worldTransformation() returns a reference within that Alignment object. So we shoud make a copy.
Please register or sign in to comment