Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -0,0 +1,51 @@
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
/// \file F05ActionInitialization.hh
/// \brief Definition of the F05ActionInitialization class
#ifndef F05ActionInitialization_h
#define F05ActionInitialization_h 1
#include "G4VUserActionInitialization.hh"
/// Action initialization class.
class F05ActionInitialization : public G4VUserActionInitialization
{
public:
F05ActionInitialization();
virtual ~F05ActionInitialization();
virtual void BuildForMaster() const;
virtual void Build() const;
virtual G4VSteppingVerbose* InitializeSteppingVerbose() const;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#endif
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05DetectorConstruction.hh 75672 2013-11-05 08:47:41Z gcosmo $
//
/// \file field/field05/include/F05DetectorConstruction.hh
/// \brief Definition of the F05DetectorConstruction class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -39,14 +38,14 @@
#include "G4VUserDetectorConstruction.hh"
#include "globals.hh"
class F05Field;
class G4Material;
class G4Box;
class G4LogicalVolume;
class G4VPhysicalVolume;
class F05Field;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class F05DetectorConstruction : public G4VUserDetectorConstruction
@@ -54,24 +53,25 @@ class F05DetectorConstruction : public G4VUserDetectorConstruction
public:
F05DetectorConstruction();
~F05DetectorConstruction();
virtual ~F05DetectorConstruction();
public:
G4VPhysicalVolume* Construct();
virtual G4VPhysicalVolume* Construct();
virtual void ConstructSDandField();
private:
G4Material* Vacuum;
G4Material* fVacuum;
G4double WorldSizeXY;
G4double WorldSizeZ;
G4double fWorldSizeXY;
G4double fWorldSizeZ;
G4Box* solidWorld; //pointer to the solid World
G4LogicalVolume* logicWorld; //pointer to the logical World
G4VPhysicalVolume* physiWorld; //pointer to the physical World
G4Box* fSolidWorld; //pointer to the solid World
G4LogicalVolume* fLogicWorld; //pointer to the logical World
G4VPhysicalVolume* fPhysiWorld; //pointer to the physical World
F05Field* field;
static G4ThreadLocal F05Field* fField;
private:
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05ExtraPhysics.hh 68021 2013-03-13 13:36:07Z gcosmo $
//
/// \file field/field05/include/F05ExtraPhysics.hh
/// \brief Definition of the F05ExtraPhysics class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05Field.hh 75672 2013-11-05 08:47:41Z gcosmo $
//
/// \file field/field05/include/F05Field.hh
/// \brief Definition of the F05Field class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -39,11 +38,6 @@
#include "globals.hh"
#include "G4ElectroMagneticField.hh"
class G4EqEMFieldWithSpin;
class G4MagIntegratorStepper;
class G4ChordFinder;
class G4PropagatorInField;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class F05Field : public G4ElectroMagneticField
@@ -52,23 +46,15 @@ class F05Field : public G4ElectroMagneticField
public:
F05Field();
~F05Field();
virtual ~F05Field();
/// DoesFieldChangeEnergy() returns true.
G4bool DoesFieldChangeEnergy() const { return true; };
virtual G4bool DoesFieldChangeEnergy() const { return true; };
/// GetFieldValue() returns the field value at a given point[].
/// field is really field[6]: Bx,By,Bz,Ex,Ey,Ez.
/// point[] is in global coordinates: x,y,z,t.
void GetFieldValue( const G4double Point[3], G4double* Bfield ) const;
private:
G4EqEMFieldWithSpin* fEquation;
G4MagIntegratorStepper* fStepper;
G4ChordFinder* fChordFinder;
G4PropagatorInField* fieldPropagator;
virtual void GetFieldValue(const G4double Point[4], G4double* Bfield) const;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05PhysicsList.hh 69563 2013-05-08 12:30:36Z gcosmo $
//
/// \file field/field05/include/F05PhysicsList.hh
/// \brief Definition of the F05PhysicsList class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
@@ -48,8 +47,8 @@ public:
F05PhysicsList();
virtual ~F05PhysicsList();
void ConstructParticle();
void ConstructProcess();
virtual void ConstructParticle();
virtual void ConstructProcess();
void SetCuts();
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05PrimaryGeneratorAction.hh 69563 2013-05-08 12:30:36Z gcosmo $
//
/// \file field/field05/include/F05PrimaryGeneratorAction.hh
/// \brief Definition of the F05PrimaryGeneratorAction class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -51,11 +50,11 @@ public:
F05PrimaryGeneratorAction(void);
virtual ~F05PrimaryGeneratorAction();
void GeneratePrimaries(G4Event*);
virtual void GeneratePrimaries(G4Event*);
private:
G4ParticleGun* particleGun;
G4ParticleGun* fParticleGun;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -23,12 +23,11 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: F05SteppingAction.hh 69563 2013-05-08 12:30:36Z gcosmo $
//
/// \file field/field05/include/F05SteppingAction.hh
/// \brief Definition of the F05SteppingAction class
//
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -48,7 +47,7 @@ public:
F05SteppingAction(void);
virtual ~F05SteppingAction();
void UserSteppingAction(const G4Step*);
virtual void UserSteppingAction(const G4Step*);
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -0,0 +1,66 @@
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
/// \file field/field05/include/F05SteppingVerbose.hh
/// \brief Definition of the F05SteppingVerbose class
//
//
// $Id$
//
//
//---------------------------------------------------------------
//
// F05SteppingVerbose.hh
//
// Description:
// This class manages the vervose outputs in G4SteppingManager.
//
//
// Contact:
// Questions and comments to this code should be sent to
// Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
// Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
//
//---------------------------------------------------------------
#ifndef F05SteppingVerbose_h
#define F05SteppingVerbose_h 1
#include "G4SteppingVerbose.hh"
class F05SteppingVerbose : public G4SteppingVerbose
{
public:
F05SteppingVerbose();
virtual ~F05SteppingVerbose();
// Constructor/Destructor
virtual void StepInfo();
virtual void TrackingStarted();
};
#endif