Ignore:
Timestamp:
Jun 18, 2010, 11:42:07 AM (14 years ago)
Author:
garnier
Message:

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

Location:
trunk/source/geometry/volumes/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/geometry/volumes/src/G4NavigationHistory.cc

    r1228 r1315  
    2525//
    2626//
    27 // $Id: G4NavigationHistory.cc,v 1.11 2009/08/03 16:27:37 gcosmo Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4NavigationHistory.cc,v 1.15 2010/04/22 09:06:50 gcosmo Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2929//
    3030//
     
    3838#include "G4ios.hh"
    3939
     40// Initialise static data for the specialized memory pool
     41// for the internal STL vector of histories  ...
     42//
     43G4ChunkIndexType* G4AllocStats::allocStat = 0;
     44G4int             G4AllocStats::totSpace = 0;
     45G4int             G4AllocStats::numCat = 0;
     46
    4047G4NavigationHistory::G4NavigationHistory()
    4148  : fNavHistory(kHistoryMax), fStackDepth(0)
     
    4552
    4653G4NavigationHistory::G4NavigationHistory(const G4NavigationHistory &h)
    47   : fNavHistory(h.fNavHistory), fStackDepth(h.fStackDepth)
     54  : fStackDepth(h.fStackDepth)
    4855{
     56  fNavHistory.assign(h.fNavHistory.begin(),h.fNavHistory.end());
    4957}
    5058
  • trunk/source/geometry/volumes/src/G4ReflectionFactory.cc

    r1228 r1315  
    2525//
    2626//
    27 // $Id: G4ReflectionFactory.cc,v 1.9 2008/11/13 09:33:20 gcosmo Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4ReflectionFactory.cc,v 1.10 2010/04/13 07:19:01 gcosmo Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2929//
    3030//
     
    761761//_____________________________________________________________________________
    762762
     763void
     764G4ReflectionFactory::Reset()
     765{
     766  fConstituentLVMap.~map();
     767  fReflectedLVMap.~map();
     768}
     769
     770//_____________________________________________________________________________
     771
    763772void G4ReflectionFactory::PrintConstituentLVMap()
    764773{
Note: See TracChangeset for help on using the changeset viewer.