We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a95ff0 commit b3f6a1aCopy full SHA for b3f6a1a
DDRec/src/Surface.cpp
@@ -740,8 +740,9 @@ namespace dd4hep {
740
741
//---- if the volSurface is not in the DetElement's volume, we need to mutliply the path to the volume to the
742
// DetElements world transform
743
- for( const auto pvol : pVList ){
+ for( auto it = std::next(pVList.begin()) ; it != pVList.end() ; ++it ) {
744
745
+ PlacedVolume pvol = *it ;
746
TGeoMatrix* m = pvol->GetMatrix();
747
// std::cout << " +++ matrix for placed volume : " << std::endl ;
748
// m->Print() ;
0 commit comments