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
@@ -35,8 +35,6 @@
#include <vector>
#include <cmath>
using namespace std;
class HadrontherapyElectricTabulatedField3D
: public G4ElectricField
@@ -44,9 +42,9 @@ class HadrontherapyElectricTabulatedField3D
{
// Storage space for the table
vector< vector< vector< G4double > > > xEField;
vector< vector< vector< G4double > > > yEField;
vector< vector< vector< G4double > > > zEField;
std::vector< std::vector< std::vector< G4double > > > xEField;
std::vector< std::vector< std::vector< G4double > > > yEField;
std::vector< std::vector< std::vector< G4double > > > zEField;
// The dimensions of the table
G4int Enx,Eny,Enz;
// The physical limits of the defined region
@@ -35,8 +35,6 @@
#include <vector>
#include <cmath>
using namespace std;
class HadrontherapyMagneticField3D
#ifndef STANDALONE
: public G4MagneticField
@@ -44,9 +42,9 @@ class HadrontherapyMagneticField3D
{
// Storage space for the table
vector< vector< vector< double > > > xField;
vector< vector< vector< double > > > yField;
vector< vector< vector< double > > > zField;
std::vector< std::vector< std::vector< double > > > xField;
std::vector< std::vector< std::vector< double > > > yField;
std::vector< std::vector< std::vector< double > > > zField;
// The dimensions of the table
int nx,ny,nz;
// The physical limits of the defined region
@@ -42,7 +42,6 @@
#include "G4RotationMatrix.hh"
#include "HadrontherapyModulatorMessenger.hh"
// using namespace std;
class G4Tubs;
class G4LogicalVolume;
class G4VPhysicalVolume;