Import Geant4 10.3.0 source tree
This commit is contained in:
@@ -37,7 +37,8 @@ class G4EmDNAChemistry : public G4VUserChemistryList,
|
||||
{
|
||||
|
||||
public:
|
||||
G4EmDNAChemistry();
|
||||
|
||||
explicit G4EmDNAChemistry();
|
||||
virtual ~G4EmDNAChemistry();
|
||||
|
||||
virtual void ConstructParticle()
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4EmDNAPhysics.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmDNAPhysics.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
|
||||
#ifndef G4EmDNAPhysics_h
|
||||
#define G4EmDNAPhysics_h 1
|
||||
@@ -38,10 +38,7 @@ class G4EmDNAPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmDNAPhysics(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics();
|
||||
|
||||
|
||||
@@ -0,0 +1,85 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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: G4EmDNAPhysicsActivator.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
|
||||
#ifndef G4EmDNAPhysicsActivator_h
|
||||
#define G4EmDNAPhysicsActivator_h 1
|
||||
|
||||
#include "G4VPhysicsConstructor.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class G4EmParameters;
|
||||
class G4ProcessManager;
|
||||
class G4LowECapture;
|
||||
|
||||
class G4EmDNAPhysicsActivator : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysicsActivator(G4int ver = 1);
|
||||
|
||||
virtual ~G4EmDNAPhysicsActivator();
|
||||
|
||||
virtual void ConstructParticle();
|
||||
virtual void ConstructProcess();
|
||||
|
||||
private:
|
||||
|
||||
void AddElectronModels0(const G4String& region, G4LowECapture* ecap,
|
||||
G4bool emsc, G4double elowest, G4double elimel);
|
||||
|
||||
void AddProtonModels0(const G4String& region, G4bool pmsc,
|
||||
G4double elimel, G4double pminbb,
|
||||
G4double pmin, G4double pmax);
|
||||
|
||||
void AddHeliumModels0(const G4String& region, G4bool a1msc, G4bool a2msc,
|
||||
G4double elimel, G4double pminbb,
|
||||
G4double pmin, G4double pmax);
|
||||
|
||||
void AddGenericIonModels0(const G4String& region, G4bool imsc,
|
||||
G4double elimel, G4double pminbb,
|
||||
G4double pmin);
|
||||
|
||||
G4bool HasMsc(G4ProcessManager*) const;
|
||||
|
||||
G4bool IsVerbose() const;
|
||||
|
||||
G4int verbose;
|
||||
G4EmParameters* theParameters;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -38,10 +38,7 @@ class G4EmDNAPhysics_option1 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option1(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmDNAPhysics_option1(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option1(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option1();
|
||||
|
||||
|
||||
@@ -38,10 +38,7 @@ class G4EmDNAPhysics_option2 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option2(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmDNAPhysics_option2(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option2(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option2();
|
||||
|
||||
|
||||
@@ -35,10 +35,7 @@ class G4EmDNAPhysics_option3 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option3(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmDNAPhysics_option3(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option3(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option3();
|
||||
|
||||
|
||||
@@ -38,9 +38,7 @@ class G4EmDNAPhysics_option4 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option4(G4int ver = 1);
|
||||
|
||||
G4EmDNAPhysics_option4(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option4(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option4();
|
||||
|
||||
|
||||
@@ -38,9 +38,7 @@ class G4EmDNAPhysics_option5 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option5(G4int ver = 1);
|
||||
|
||||
G4EmDNAPhysics_option5(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option5(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option5();
|
||||
|
||||
|
||||
@@ -38,9 +38,7 @@ class G4EmDNAPhysics_option7 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmDNAPhysics_option7(G4int ver = 1);
|
||||
|
||||
G4EmDNAPhysics_option7(G4int ver, const G4String& name);
|
||||
explicit G4EmDNAPhysics_option7(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmDNAPhysics_option7();
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
#include "G4Material.hh"
|
||||
#include "G4MaterialTable.hh"
|
||||
#include "G4ios.hh"
|
||||
// Geant461: #include "g4std/iomanip"
|
||||
|
||||
#include "G4Decay.hh"
|
||||
#include "G4UserSpecialCuts.hh"
|
||||
#include "G4StepLimiter.hh"
|
||||
@@ -46,15 +46,13 @@
|
||||
class G4EmLEPTSPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmLEPTSPhysics(const G4String& name="G4EmLEPTSPhysics");
|
||||
|
||||
explicit G4EmLEPTSPhysics(const G4String& name="G4EmLEPTSPhysics");
|
||||
virtual ~G4EmLEPTSPhysics(){};
|
||||
|
||||
virtual void ConstructParticle();
|
||||
virtual void ConstructProcess();
|
||||
|
||||
protected:
|
||||
// Physics
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4EmLivermorePhysics.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmLivermorePhysics.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
|
||||
#ifndef G4EmLivermorePhysics_h
|
||||
#define G4EmLivermorePhysics_h 1
|
||||
@@ -37,10 +37,7 @@ class G4EmLivermorePhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmLivermorePhysics(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmLivermorePhysics(G4int ver, const G4String& name);
|
||||
explicit G4EmLivermorePhysics(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmLivermorePhysics();
|
||||
|
||||
|
||||
+2
-4
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4EmLivermorePolarizedPhysics.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmLivermorePolarizedPhysics.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
|
||||
#ifndef G4EmLivermorePolarizedPhysics_h
|
||||
#define G4EmLivermorePolarizedPhysics_h 1
|
||||
@@ -36,10 +36,8 @@
|
||||
class G4EmLivermorePolarizedPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmLivermorePolarizedPhysics(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmLivermorePolarizedPhysics(G4int ver, const G4String&);
|
||||
explicit G4EmLivermorePolarizedPhysics(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmLivermorePolarizedPhysics();
|
||||
|
||||
|
||||
@@ -36,10 +36,7 @@ class G4EmLowEPPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmLowEPPhysics(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmLowEPPhysics(G4int ver, const G4String& name);
|
||||
explicit G4EmLowEPPhysics(G4int ver=1, const G4String& name= "");
|
||||
|
||||
virtual ~G4EmLowEPPhysics();
|
||||
|
||||
|
||||
@@ -53,34 +53,31 @@
|
||||
|
||||
class G4EmParameters;
|
||||
class G4ProcessManager;
|
||||
class G4ParticleDefinition;
|
||||
|
||||
class G4EmModelActivator
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmModelActivator();
|
||||
~G4EmModelActivator();
|
||||
|
||||
void ConstructParticle();
|
||||
|
||||
void ConstructProcess();
|
||||
explicit G4EmModelActivator(const G4String& emphys="");
|
||||
|
||||
private:
|
||||
|
||||
void ConstructDNAParticles();
|
||||
|
||||
void ActivatePAI();
|
||||
|
||||
void ActivateMicroElec();
|
||||
|
||||
void ActivateDNA();
|
||||
void ActivateEmOptions();
|
||||
|
||||
void FindOrAddProcess(const G4ParticleDefinition*, const G4String&);
|
||||
|
||||
G4bool HasMsc(G4ProcessManager*) const;
|
||||
|
||||
G4EmModelActivator & operator=(const G4EmModelActivator &right);
|
||||
G4EmModelActivator(const G4EmModelActivator&);
|
||||
G4EmModelActivator & operator=(const G4EmModelActivator &right) = delete;
|
||||
G4EmModelActivator(const G4EmModelActivator&) = delete;
|
||||
|
||||
G4EmParameters* theParameters;
|
||||
G4String baseName;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4EmPenelopePhysics.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmPenelopePhysics.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
|
||||
#ifndef G4EmPenelopePhysics_h
|
||||
#define G4EmPenelopePhysics_h 1
|
||||
@@ -37,10 +37,7 @@ class G4EmPenelopePhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmPenelopePhysics(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmPenelopePhysics(G4int ver, const G4String& name);
|
||||
explicit G4EmPenelopePhysics(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmPenelopePhysics();
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4EmStandardPhysics.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmStandardPhysics.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
@@ -52,10 +52,8 @@
|
||||
class G4EmStandardPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysics(G4int ver = 0);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysics(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysics(G4int ver=0, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysics();
|
||||
|
||||
|
||||
@@ -52,10 +52,8 @@
|
||||
class G4EmStandardPhysicsGS : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysicsGS(G4int ver = 0);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysicsGS(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysicsGS(G4int ver=0, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysicsGS();
|
||||
|
||||
|
||||
@@ -50,7 +50,8 @@
|
||||
class G4EmStandardPhysicsSS : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysicsSS(G4int ver = 1);
|
||||
|
||||
explicit G4EmStandardPhysicsSS(G4int ver = 1);
|
||||
|
||||
virtual ~G4EmStandardPhysicsSS();
|
||||
|
||||
|
||||
@@ -53,7 +53,8 @@
|
||||
class G4EmStandardPhysicsWVI : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysicsWVI(G4int ver = 1);
|
||||
|
||||
explicit G4EmStandardPhysicsWVI(G4int ver = 1);
|
||||
|
||||
virtual ~G4EmStandardPhysicsWVI();
|
||||
|
||||
|
||||
+2
-5
@@ -23,7 +23,7 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4EmStandardPhysics_option1.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmStandardPhysics_option1.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
@@ -55,10 +55,7 @@ class G4EmStandardPhysics_option1 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmStandardPhysics_option1(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysics_option1(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysics_option1(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysics_option1();
|
||||
|
||||
|
||||
+2
-5
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4EmStandardPhysics_option2.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmStandardPhysics_option2.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
@@ -56,10 +56,7 @@ class G4EmStandardPhysics_option2 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
|
||||
G4EmStandardPhysics_option2(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysics_option2(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysics_option2(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysics_option2();
|
||||
|
||||
|
||||
+2
-4
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4EmStandardPhysics_option3.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmStandardPhysics_option3.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
@@ -52,10 +52,8 @@
|
||||
class G4EmStandardPhysics_option3 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysics_option3(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysics_option3(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysics_option3(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysics_option3();
|
||||
|
||||
|
||||
+2
-4
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4EmStandardPhysics_option4.hh 66704 2013-01-10 18:20:17Z gunter $
|
||||
// $Id: G4EmStandardPhysics_option4.hh 98736 2016-08-09 10:55:12Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
@@ -53,10 +53,8 @@
|
||||
class G4EmStandardPhysics_option4 : public G4VPhysicsConstructor
|
||||
{
|
||||
public:
|
||||
G4EmStandardPhysics_option4(G4int ver = 1);
|
||||
|
||||
// obsolete
|
||||
G4EmStandardPhysics_option4(G4int ver, const G4String& name);
|
||||
explicit G4EmStandardPhysics_option4(G4int ver=1, const G4String& name="");
|
||||
|
||||
virtual ~G4EmStandardPhysics_option4();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user