Import Geant4 4.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:39:52 +02:00
parent 921d3b1cda
commit 330b82b769
4524 changed files with 178689 additions and 43575 deletions
+2 -19
View File
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4PrimaryTransformer.cc,v 1.13 2001/11/22 18:53:13 asaim Exp $
// GEANT4 tag $Name: geant4-04-00 $
// $Id: G4PrimaryTransformer.cc,v 1.14 2002/01/23 03:20:38 asaim Exp $
// GEANT4 tag $Name: geant4-04-01 $
//
#include "G4PrimaryTransformer.hh"
@@ -33,11 +33,6 @@
#include "G4Track.hh"
#include "G4ThreeVector.hh"
#include "G4DecayProducts.hh"
#include "G4TransportationManager.hh"
#include "G4Navigator.hh"
#include "G4VPhysicalVolume.hh"
#include "G4LogicalVolume.hh"
#include "G4VSolid.hh"
#include "G4UnitsTable.hh"
#include "G4ios.hh"
@@ -84,18 +79,6 @@ void G4PrimaryTransformer::GenerateTracks(G4PrimaryVertex* primaryVertex)
}
#endif
//Check whether the vertex is inside the world volume
G4Navigator* navi =
G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking();
G4VSolid* theWorldSolid = navi->GetWorldVolume()->GetLogicalVolume()->GetSolid();
if(theWorldSolid->Inside(G4ThreeVector(X0,Y0,Z0))==kOutside)
{
G4cerr << "Primary vertex "
<< G4BestUnit(G4ThreeVector(X0,Y0,Z0),G4String("Length"))
<< " is outside of the world volume." << G4endl;
G4Exception("G4PrimaryTransformer::Primary vertex outside of the world");
}
G4PrimaryParticle* primaryParticle = primaryVertex->GetPrimary();
while( primaryParticle != 0 )
{