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
@@ -1,67 +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. *
// ********************************************************************
//
#ifndef G4ASCCrossSection_h
#define G4ASCCrossSection_h
#include "globals.hh"
#include "G4VAnnihilationCrossSection.hh"
#include "G4Pow.hh"
class G4ASCCrossSection : public G4VAnnihilationCrossSection
{
public:
G4ASCCrossSection(G4int, G4int, G4double, G4double, G4double, G4double);
G4bool InCharge(G4int aCode, G4int bCode);
G4double GetXsec(G4double S);
private:
G4int theCode1;
G4int theCode2;
G4double theX;
G4double theY;
G4double theEta;
G4double theEps;
};
inline G4bool G4ASCCrossSection::InCharge(G4int aCode, G4int bCode)
{
G4bool result;
result = (aCode==theCode1&&bCode==theCode2)||(aCode==theCode2&&bCode==theCode1);
return result;
}
inline G4double G4ASCCrossSection::GetXsec(G4double S)
{
G4double result = theX*G4Pow::GetInstance()->powA(S, theEps) +
theY*G4Pow::GetInstance()->powA(S, -theEta);
return result;
}
#endif
@@ -1,61 +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. *
// ********************************************************************
//
#ifndef G4AnnihilationCrossSection_h
#define G4AnnihilationCrossSection_h
#include "globals.hh"
#include <vector>
#include "G4VAnnihilationCrossSection.hh"
class G4AnnihilationCrossSection
{
public:
G4AnnihilationCrossSection();
G4double GetCrossSection(int aCode, int bCode, G4double S);
private:
std::vector<G4VAnnihilationCrossSection*> theDataSets;
};
inline G4double G4AnnihilationCrossSection::GetCrossSection(G4int aCode, G4int bCode, G4double S)
{
G4double result = 0.;
typedef std::vector<G4VAnnihilationCrossSection*>::iterator iter;
iter i;
for(i=theDataSets.begin(); i!=theDataSets.end(); i++)
{
if((*i)->InCharge(aCode, bCode))
{
result = (*i)->GetXsec(S);
break;
}
}
return result;
}
#endif
@@ -1,47 +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. *
// ********************************************************************
//
#ifndef G4GammaAnnCrossSection_h
#define G4GammaAnnCrossSection_h
#include "globals.hh"
#include <vector>
#include "G4VAnnihilationCrossSection.hh"
#include "G4ASCCrossSection.hh"
class G4GammaAnnCrossSection : public G4VAnnihilationCrossSection
{
public:
G4GammaAnnCrossSection();
G4bool InCharge(G4int aCode, G4int bCode);
G4double GetXsec(G4double S);
virtual ~G4GammaAnnCrossSection(){}
private:
std::vector<G4ASCCrossSection*> theGammaNucXSections;
};
#endif
@@ -1,44 +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. *
// ********************************************************************
//
#ifndef G4QGSMParameters_h
#define G4QGSMParameters_h 1
#include "globals.hh"
class G4QGSMParameters
{
public:
G4QGSMParameters();
~G4QGSMParameters();
private:
G4QGSMParameters(const G4QGSMParameters &right);
G4bool operator==(const G4QGSMParameters &right) const;
G4bool operator!=(const G4QGSMParameters &right) const;
};
#endif
@@ -1,39 +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. *
// ********************************************************************
//
#ifndef G4VAnnihilationCrossSection_h
#define G4VAnnihilationCrossSection_h
#include "globals.hh"
class G4VAnnihilationCrossSection
{
public:
virtual G4bool InCharge(G4int aCode, G4int bCode) = 0;
virtual G4double GetXsec(G4double s) = 0;
};
#endif