84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
//
|
|
// GEANT4 physics class: G4CrossSectionDataStore -- header file
|
|
// F.W. Jones, TRIUMF, 19-NOV-97
|
|
//
|
|
// Class Description
|
|
// This is the class to which to register data-sets. You can get the instance
|
|
// from energy hadronic process, and use its 'AddDataSet(...)' method to tailor
|
|
// the cross-sectinos for your application.
|
|
// Class Description - End
|
|
|
|
#ifndef G4CrossSectionDataStore_h
|
|
#define G4CrossSectionDataStore_h 1
|
|
|
|
#include "G4ParticleDefinition.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4Element.hh"
|
|
#include "G4VCrossSectionDataSet.hh"
|
|
|
|
|
|
class G4CrossSectionDataStore
|
|
{
|
|
public:
|
|
|
|
G4CrossSectionDataStore() :
|
|
NDataSetList(0), verboseLevel(0)
|
|
{
|
|
}
|
|
|
|
~G4CrossSectionDataStore()
|
|
{
|
|
}
|
|
|
|
G4double GetCrossSection(const G4DynamicParticle*,
|
|
const G4Element*, G4double aTemperature);
|
|
|
|
void AddDataSet(G4VCrossSectionDataSet*);
|
|
|
|
void BuildPhysicsTable(const G4ParticleDefinition&);
|
|
|
|
void DumpPhysicsTable(const G4ParticleDefinition&);
|
|
|
|
void SetVerboseLevel(G4int value)
|
|
{
|
|
verboseLevel = value;
|
|
}
|
|
|
|
G4int GetVerboseLevel(G4int value)
|
|
{
|
|
return verboseLevel;
|
|
}
|
|
|
|
private:
|
|
|
|
enum { NDataSetMax = 100 };
|
|
G4VCrossSectionDataSet* DataSetList[NDataSetMax];
|
|
G4int NDataSetList;
|
|
G4int verboseLevel;
|
|
};
|
|
|
|
#endif
|