Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
+15 -17
View File
@@ -23,30 +23,28 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
//
// Voxel Optimisation Constants
// History:
// 12.02.99 S.Giani made numerical values consistent with Geant3.21
// 13.08.95 P.Kent Created separate file
// 12.02.99, S.Giani - Made numerical values consistent with Geant3.21
// 13.08.95, P.Kent - Created separate file
// --------------------------------------------------------------------
#ifndef VOXELDEFS_HH
#define VOXELDEFS_HH
#include "G4Types.hh"
// Hard limit on no. voxel nodes per given header
const G4int kMaxVoxelNodes=1000; // PK chose 2000, Geant 3.21 used 1000
const G4int kMaxVoxelNodes = 1000; // PK chose 2000, Geant 3.21 used 1000
// Hard limit on no. voxel nodes per given header
const G4int kMinVoxelVolumesLevel1 = 2;
// Only begin to make voxels if >= this no of daughters
const G4int kMinVoxelVolumesLevel2 = 3;
// Only make second level of refinement if >= this no of
// volumes in 1st level node
const G4int kMinVoxelVolumesLevel3 = 4;
// Only make third level of refinement if >= this no of
// volumes in 2nd level node
const G4int kMinVoxelVolumesLevel1=2; // Only begin to make voxels if >=
// this no of daughters
const G4int kMinVoxelVolumesLevel2=3; // Only make second level of refinement
// if >= this no of volumes in
// 1st level node
const G4int kMinVoxelVolumesLevel3=4; // Only make third level of refinement
// if >= this no of volumes in
// 2nd level node
#endif