Import Geant4 8.2.0 source tree
This commit is contained in:
@@ -137,6 +137,8 @@ private:
|
||||
G4VPhysicalVolume* physiThirdMonitorLayer3;
|
||||
G4VPhysicalVolume* physiThirdMonitorLayer4;
|
||||
G4VPhysicalVolume* physiNozzleSupport;
|
||||
G4VPhysicalVolume* physiHoleNozzle;
|
||||
|
||||
G4VPhysicalVolume* physiHoleNozzleSupport;
|
||||
G4VPhysicalVolume* physiSecondHoleNozzleSupport;
|
||||
G4Tubs* solidFinalCollimator;
|
||||
|
||||
@@ -109,7 +109,7 @@ public:
|
||||
// This method allows to change the material
|
||||
// of the range shifter through UI command.
|
||||
|
||||
void ComputeVoxelSize() {phantomSizeX/numberOfVoxelsAlongX;}
|
||||
G4double ComputeVoxelSize() {return phantomSizeX/numberOfVoxelsAlongX;};
|
||||
// Returns the size of the voxel along the X axis
|
||||
|
||||
private:
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: HadrontherapyProtonBertini.hh; May 2005
|
||||
// $Id: HadrontherapyProtonBertiniElastic.hh; May 2005
|
||||
// ----------------------------------------------------------------------------
|
||||
// GEANT 4 - Hadrontherapy example
|
||||
// ----------------------------------------------------------------------------
|
||||
@@ -42,48 +42,11 @@
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
|
||||
#include "G4ProcessManager.hh"
|
||||
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
//#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
|
||||
class HadrontherapyProtonBertini: public G4VPhysicsConstructor
|
||||
{
|
||||
@@ -96,41 +59,12 @@ class HadrontherapyProtonBertini: public G4VPhysicsConstructor
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double bertiniLowLimit;
|
||||
G4double bertiniHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
|
||||
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
|
||||
// Proton inelastic proces
|
||||
G4ProtonInelasticProcess theIPProton;
|
||||
// Cross Section for proton inelastic process
|
||||
G4ProtonInelasticCrossSection thePXSec;
|
||||
|
||||
// Neutron inelastic process
|
||||
G4NeutronInelasticProcess theIPNeutron;
|
||||
// Cross Section for neutron inelastic process
|
||||
G4NeutronInelasticCrossSection theNXSec;
|
||||
|
||||
// Deuteron inelastic process
|
||||
G4DeuteronInelasticProcess theIPdeuteron;
|
||||
|
||||
// Tritium inelastic process
|
||||
G4TritonInelasticProcess theIPtriton;
|
||||
|
||||
// Alpha inelastic process
|
||||
G4AlphaInelasticProcess theIPalpha;
|
||||
|
||||
// He3 inelastic process
|
||||
G4HadronInelasticProcess* theIPHe3;
|
||||
|
||||
private:
|
||||
G4ProtonInelasticCrossSection theProtonCrossSection;
|
||||
G4NeutronInelasticCrossSection theNeutronCrossSection;
|
||||
G4DeuteronInelasticProcess theDeuteronInelasticProcess;
|
||||
G4TritonInelasticProcess theTritonInelasticProcess;
|
||||
G4AlphaInelasticProcess theAlphaInelasticProcess;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
@@ -1,132 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: HadrontherapyProtonBinary.hh; May 2005
|
||||
// ----------------------------------------------------------------------------
|
||||
// GEANT 4 - Hadrontherapy example
|
||||
// ----------------------------------------------------------------------------
|
||||
// Code developed by:
|
||||
//
|
||||
// G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a)
|
||||
//
|
||||
// (a) Laboratori Nazionali del Sud
|
||||
// of the National Institute for Nuclear Physics, Catania, Italy
|
||||
// (b) National Institute for Nuclear Physics Section of Genova, genova, Italy
|
||||
//
|
||||
// * cirrone@lns.infn.it
|
||||
// ----------------------------------------------------------------------------
|
||||
#ifndef HadrontherapyProtonBinary_h
|
||||
#define HadrontherapyProtonBinary_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
|
||||
#include "G4ProcessManager.hh"
|
||||
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
|
||||
class HadrontherapyProtonBinary: public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
HadrontherapyProtonBinary(const G4String& name = "proton-precompound-binary");
|
||||
virtual ~HadrontherapyProtonBinary();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double precompoundLowLimit;
|
||||
G4double precompoundHighLimit;
|
||||
G4double binaryLowLimit;
|
||||
G4double binaryHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
|
||||
G4ProtonInelasticCrossSection theXSec;
|
||||
G4ExcitationHandler theHandler;
|
||||
G4DeuteronInelasticProcess theIPdeuteron;
|
||||
G4TritonInelasticProcess theIPtriton;
|
||||
G4AlphaInelasticProcess theIPalpha;
|
||||
G4HadronInelasticProcess* theIPHe3;
|
||||
G4HadronInelasticProcess* theIPIonC12;
|
||||
G4HadronInelasticProcess* theIPGenericIon;
|
||||
G4ProtonInelasticCrossSection thePXSec;
|
||||
G4ProtonInelasticProcess theIPProton;
|
||||
G4NeutronInelasticProcess theIPNeutron;
|
||||
G4NeutronInelasticCrossSection theNXSec;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -32,107 +32,45 @@
|
||||
// G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a)
|
||||
//
|
||||
// (a) Laboratori Nazionali del Sud
|
||||
// of the INFN, Catania, Italy
|
||||
// (b) INFN Section of Genova, Genova, Italy
|
||||
// of the National Institute for Nuclear Physics, Catania, Italy
|
||||
// (b) National Institute for Nuclear Physics Section of Genova, genova, Italy
|
||||
//
|
||||
// * cirrone@lns.infn.it
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#ifndef HadrontherapyProtonPrecompound_h
|
||||
#define HadrontherapyProtonPrecompound_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
#include "G4ProcessManager.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4GeneratorPrecompoundInterface.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
#include "G4PionPlusInelasticProcess.hh"
|
||||
#include "G4PionMinusInelasticProcess.hh"
|
||||
#include "G4PiNuclearCrossSection.hh"
|
||||
|
||||
class G4HadronInelasticProcess;
|
||||
#include "G4ExcitationHandler.hh"
|
||||
|
||||
class HadrontherapyProtonPrecompound: public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
HadrontherapyProtonPrecompound(const G4String& name = "proton-precompound");
|
||||
virtual ~HadrontherapyProtonPrecompound();
|
||||
public:
|
||||
HadrontherapyProtonPrecompound(const G4String& name = "proton-precompound");
|
||||
virtual ~HadrontherapyProtonPrecompound();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double precompoundLowLimit;
|
||||
G4double precompoundHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
|
||||
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
|
||||
// Proton inelastic proces
|
||||
G4ProtonInelasticProcess protonInelasticProcess;
|
||||
// Cross Section for proton inelastic process
|
||||
G4ProtonInelasticCrossSection protonInelasticCrossSection;
|
||||
|
||||
// Neutron inelastic process
|
||||
G4NeutronInelasticProcess neutronInelasticProcess;
|
||||
// Cross Section for neutron inelastic process
|
||||
G4ExcitationHandler theHandler;
|
||||
G4ProtonInelasticProcess protonInelasticProcess;
|
||||
G4ProtonInelasticCrossSection protonInelasticCrossSection;
|
||||
G4NeutronInelasticProcess neutronInelasticProcess;
|
||||
G4NeutronInelasticCrossSection neutronInelasticCrossSection;
|
||||
|
||||
// Deuteron inelastic process
|
||||
G4DeuteronInelasticProcess deuteronInelasticProcess;
|
||||
|
||||
// Tritium inelastic process
|
||||
G4TritonInelasticProcess tritonInelasticProcess;
|
||||
|
||||
// Alpha inelastic process
|
||||
G4AlphaInelasticProcess alphaInelasticProcess;
|
||||
G4DeuteronInelasticProcess deuteronInelasticProcess;
|
||||
G4TritonInelasticProcess tritonInelasticProcess;
|
||||
G4AlphaInelasticProcess alphaInelasticProcess;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
@@ -1,146 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: HadrontherapyProtonPrecompoundFermi.hh; May 2005
|
||||
// ----------------------------------------------------------------------------
|
||||
// GEANT 4 - Hadrontherapy example
|
||||
// ----------------------------------------------------------------------------
|
||||
// Code developed by:
|
||||
//
|
||||
// G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a)
|
||||
//
|
||||
// (a) Laboratori Nazionali del Sud
|
||||
// of the National Institute for Nuclear Physics, Catania, Italy
|
||||
// (b) National Institute for Nuclear Physics Section of Genova, genova, Italy
|
||||
//
|
||||
// * cirrone@lns.infn.it
|
||||
// ----------------------------------------------------------------------------
|
||||
#ifndef HadrontherapyProtonPrecompoundFermi_h
|
||||
#define HadrontherapyProtonPrecompoundFermi_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
|
||||
#include "G4ProcessManager.hh"
|
||||
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4GeneratorPrecompoundInterface.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
#include "G4PiNuclearCrossSection.hh"
|
||||
class HadrontherapyProtonPrecompoundFermi: public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
HadrontherapyProtonPrecompoundFermi(const G4String& name = "proton-precompoundFermi");
|
||||
virtual ~HadrontherapyProtonPrecompoundFermi();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double precompoundLowLimit;
|
||||
G4double precompoundHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
G4int targetA;
|
||||
G4int targetZ;
|
||||
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
|
||||
// Proton inelastic proces
|
||||
G4ProtonInelasticProcess theIPProton;
|
||||
// Cross Section for proton inelastic process
|
||||
G4ProtonInelasticCrossSection thePXSec;
|
||||
|
||||
// Neutron inelastic process
|
||||
G4NeutronInelasticProcess theIPNeutron;
|
||||
// Cross Section for neutron inelastic process
|
||||
G4NeutronInelasticCrossSection theNXSec;
|
||||
|
||||
// Deuteron inelastic process
|
||||
G4DeuteronInelasticProcess theIPdeuteron;
|
||||
|
||||
// Tritium inelastic process
|
||||
G4TritonInelasticProcess theIPtriton;
|
||||
|
||||
// Alpha inelastic process
|
||||
G4AlphaInelasticProcess theIPalpha;
|
||||
|
||||
// He3 inelastic process
|
||||
G4HadronInelasticProcess* theIPHe3;
|
||||
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,143 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: HadrontherapyProtonPrecompoundGEM.hh; May 2005
|
||||
// ----------------------------------------------------------------------------
|
||||
// GEANT 4 - Hadrontherapy example
|
||||
// ----------------------------------------------------------------------------
|
||||
// Code developed by:
|
||||
//
|
||||
// G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a)
|
||||
//
|
||||
// (a) Laboratori Nazionali del Sud
|
||||
// of the National Institute for Nuclear Physics, Catania, Italy
|
||||
// (b) National Institute for Nuclear Physics Section of Genova, genova, Italy
|
||||
//
|
||||
// * cirrone@lns.infn.it
|
||||
// ----------------------------------------------------------------------------
|
||||
#ifndef HadrontherapyProtonPrecompoundGEM_h
|
||||
#define HadrontherapyProtonPrecompoundGEM_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
|
||||
#include "G4ProcessManager.hh"
|
||||
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4GeneratorPrecompoundInterface.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
|
||||
class HadrontherapyProtonPrecompoundGEM: public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
HadrontherapyProtonPrecompoundGEM(const G4String& name = "proton-precompoundGEM");
|
||||
virtual ~HadrontherapyProtonPrecompoundGEM();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double precompoundLowLimit;
|
||||
G4double precompoundHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
|
||||
// Proton inelastic proces
|
||||
G4ProtonInelasticProcess theIPProton;
|
||||
// Cross Section for proton inelastic process
|
||||
G4ProtonInelasticCrossSection thePXSec;
|
||||
|
||||
// Neutron inelastic process
|
||||
G4NeutronInelasticProcess theIPNeutron;
|
||||
// Cross Section for neutron inelastic process
|
||||
G4NeutronInelasticCrossSection theNXSec;
|
||||
|
||||
// Deuteron inelastic process
|
||||
G4DeuteronInelasticProcess theIPdeuteron;
|
||||
|
||||
// Tritium inelastic process
|
||||
G4TritonInelasticProcess theIPtriton;
|
||||
|
||||
// Alpha inelastic process
|
||||
G4AlphaInelasticProcess theIPalpha;
|
||||
|
||||
// He3 inelastic process
|
||||
G4HadronInelasticProcess* theIPHe3;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,145 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: HadrontherapyProtonPrecompoundGEMFermi.hh; May 2005
|
||||
// ----------------------------------------------------------------------------
|
||||
// GEANT 4 - Hadrontherapy example
|
||||
// ----------------------------------------------------------------------------
|
||||
// Code developed by:
|
||||
//
|
||||
// G.A.P. Cirrone(a)*, F. Di Rosa(a), S. Guatelli(b), G. Russo(a)
|
||||
//
|
||||
// (a) Laboratori Nazionali del Sud
|
||||
// of the National Institute for Nuclear Physics, Catania, Italy
|
||||
// (b) National Institute for Nuclear Physics Section of Genova, genova, Italy
|
||||
//
|
||||
// * cirrone@lns.infn.it
|
||||
// ----------------------------------------------------------------------------
|
||||
#ifndef HadrontherapyProtonPrecompoundGEMFermi_h
|
||||
#define HadrontherapyProtonPrecompoundGEMFermi_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4HadronElasticProcess.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4ProtonInelasticProcess.hh"
|
||||
|
||||
#include "G4ProcessManager.hh"
|
||||
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
|
||||
#include "G4ProtonInelasticCrossSection.hh"
|
||||
#include "G4TheoFSGenerator.hh"
|
||||
#include "G4ExcitationHandler.hh"
|
||||
#include "G4PreCompoundModel.hh"
|
||||
#include "G4GeneratorPrecompoundInterface.hh"
|
||||
#include "G4ExcitedStringDecay.hh"
|
||||
// For neutron
|
||||
#include "G4HENeutronInelastic.hh"
|
||||
#include "G4LENeutronInelastic.hh"
|
||||
#include "G4LFission.hh"
|
||||
#include "G4LCapture.hh"
|
||||
#include "G4NeutronInelasticProcess.hh"
|
||||
#include "G4NeutronInelasticCrossSection.hh"
|
||||
#include "G4HadronFissionProcess.hh"
|
||||
#include "G4HadronCaptureProcess.hh"
|
||||
#include "G4NeutronHPElastic.hh"
|
||||
#include "G4NeutronHPElasticData.hh"
|
||||
#include "G4NeutronHPInelastic.hh"
|
||||
#include "G4NeutronHPInelasticData.hh"
|
||||
// For ions
|
||||
#include "G4TripathiCrossSection.hh"
|
||||
#include "G4IonsShenCrossSection.hh"
|
||||
#include "G4HadronInelasticProcess.hh"
|
||||
#include "G4BinaryLightIonReaction.hh"
|
||||
#include "G4BinaryCascade.hh"
|
||||
#include "G4IonInelasticProcess.hh"
|
||||
#include "G4LEDeuteronInelastic.hh"
|
||||
#include "G4DeuteronInelasticProcess.hh"
|
||||
#include "G4TritonInelasticProcess.hh"
|
||||
#include "G4LETritonInelastic.hh"
|
||||
#include "G4AlphaInelasticProcess.hh"
|
||||
#include "G4LEAlphaInelastic.hh"
|
||||
|
||||
class HadrontherapyProtonPrecompoundGEMFermi: public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
HadrontherapyProtonPrecompoundGEMFermi(const G4String& name = "proton-precompoundGEMFermi");
|
||||
virtual ~HadrontherapyProtonPrecompoundGEMFermi();
|
||||
|
||||
protected:
|
||||
// Construct particle and physics
|
||||
void ConstructParticle(){};
|
||||
void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
G4double binaryLightIonLowLimit;
|
||||
G4double binaryLightIonHighLimit;
|
||||
G4double LEPHighLimit;
|
||||
G4double precompoundLowLimit;
|
||||
G4double precompoundHighLimit;
|
||||
G4double neutronLowLimit;
|
||||
G4double neutronHighLimit;
|
||||
G4int targetZ;
|
||||
G4int targetA;
|
||||
|
||||
G4ExcitationHandler theHandler;
|
||||
|
||||
|
||||
// Proton inelastic proces
|
||||
G4ProtonInelasticProcess theIPProton;
|
||||
// Cross Section for proton inelastic process
|
||||
G4ProtonInelasticCrossSection thePXSec;
|
||||
|
||||
// Neutron inelastic process
|
||||
G4NeutronInelasticProcess theIPNeutron;
|
||||
// Cross Section for neutron inelastic process
|
||||
G4NeutronInelasticCrossSection theNXSec;
|
||||
|
||||
// Deuteron inelastic process
|
||||
G4DeuteronInelasticProcess theIPdeuteron;
|
||||
|
||||
// Tritium inelastic process
|
||||
G4TritonInelasticProcess theIPtriton;
|
||||
|
||||
// Alpha inelastic process
|
||||
G4AlphaInelasticProcess theIPalpha;
|
||||
|
||||
// He3 inelastic process
|
||||
G4HadronInelasticProcess* theIPHe3;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user