Ignore:
Timestamp:
Dec 22, 2010, 11:33:38 AM (13 years ago)
Author:
garnier
Message:

before tag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/modeling/src/G4PhysicalVolumeModel.cc

    r1337 r1346  
    2525//
    2626//
    27 // $Id: G4PhysicalVolumeModel.cc,v 1.67 2010/05/11 11:16:51 allison Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     27// $Id: G4PhysicalVolumeModel.cc,v 1.68 2010/11/05 15:19:29 allison Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
     
    475475  if (daughtersToBeDrawn) {
    476476    for (G4int iDaughter = 0; iDaughter < nDaughters; iDaughter++) {
    477       G4VPhysicalVolume* pVPV = pLV -> GetDaughter (iDaughter);
     477      // Store daughter pVPV in local variable ready for recursion...
     478      G4VPhysicalVolume* pDaughterVPV = pLV -> GetDaughter (iDaughter);
    478479      // Descend the geometry structure recursively...
    479480      fCurrentDepth++;
    480481      VisitGeometryAndGetVisReps
    481         (pVPV, requestedDepth - 1, theNewAT, sceneHandler);
     482        (pDaughterVPV, requestedDepth - 1, theNewAT, sceneHandler);
    482483      fCurrentDepth--;
    483484    }
Note: See TracChangeset for help on using the changeset viewer.