135 lines
4.2 KiB
C++
135 lines
4.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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 G4LENDUsedTarget_h
|
|
#define G4LENDUsedTarget_h 1
|
|
|
|
// Class Description
|
|
// Container of LEND (Low Energy Nuclear Data) target (nucleus)
|
|
// LEND is Geant4 interface for GIDI (General Interaction Data Interface)
|
|
// which gives a discription of nuclear and atomic reactions, such as
|
|
// Binary collision cross sections
|
|
// Particle number multiplicity distributions of reaction products
|
|
// Energy and angular distributions of reaction products
|
|
// Derived calculational constants
|
|
// GIDI is developped at Lawrence Livermore National Laboratory
|
|
// Class Description - End
|
|
|
|
// 071025 First implementation done by T. Koi (SLAC/SCCS)
|
|
// 101118 Name modifications for release T. Koi (SLAC/PPA)
|
|
|
|
#include "G4LENDHeader.hh"
|
|
#include "G4ParticleDefinition.hh"
|
|
|
|
class G4LENDUsedTarget
|
|
{
|
|
|
|
public:
|
|
|
|
G4LENDUsedTarget( G4ParticleDefinition* pd , const G4String& Evaluation , G4int iZ , G4int iA , G4int iM = 0 )
|
|
: allow_nat ( false )
|
|
, allow_anything ( false )
|
|
, min_Z ( 0 )
|
|
, max_Z ( 113 )
|
|
, min_A ( 1 )
|
|
, max_A ( 278 )
|
|
, min_M ( 0 )
|
|
, max_M ( 10 )
|
|
{
|
|
|
|
proj = pd;
|
|
|
|
wanted_Z = iZ;
|
|
wanted_A = iA;
|
|
wanted_M = iM;
|
|
wanted_Evaluation = Evaluation;
|
|
|
|
actual_Z = -1;
|
|
actual_A = -1;
|
|
actual_M = -1;
|
|
actual_Evaluation = "na";
|
|
|
|
searchTarget();
|
|
}
|
|
|
|
~G4LENDUsedTarget(){;}
|
|
|
|
void AllowNat()
|
|
{
|
|
allow_nat = true;
|
|
searchTarget();
|
|
}
|
|
|
|
void AllowAny()
|
|
{
|
|
allow_anything = true;
|
|
searchTarget();
|
|
}
|
|
|
|
G4int GetWantedZ() const { return wanted_Z; }
|
|
G4int GetWantedA() const { return wanted_A; }
|
|
G4int GetWantedM() const { return wanted_M; }
|
|
|
|
G4int GetActualZ() const { return actual_Z; }
|
|
G4int GetActualA() const { return actual_A; }
|
|
G4int GetActualM() const { return actual_M; }
|
|
|
|
const G4String& GetWantedEvaluation() const { return wanted_Evaluation; }
|
|
const G4String& GetActualEvaluation() const { return actual_Evaluation; }
|
|
|
|
G4GIDI_target* GetTarget() const { return target; }
|
|
|
|
private:
|
|
|
|
void searchTarget();
|
|
|
|
G4ParticleDefinition* proj;
|
|
|
|
G4int wanted_Z;
|
|
G4int wanted_A;
|
|
G4int wanted_M;
|
|
|
|
G4String wanted_Evaluation;
|
|
|
|
G4bool allow_nat;
|
|
G4bool allow_anything;
|
|
|
|
G4GIDI_target* target;
|
|
|
|
G4int actual_Z;
|
|
G4int actual_A;
|
|
G4int actual_M;
|
|
G4String actual_Evaluation;
|
|
|
|
G4int min_Z;
|
|
G4int max_Z;
|
|
G4int min_A;
|
|
G4int max_A;
|
|
G4int min_M;
|
|
G4int max_M;
|
|
};
|
|
|
|
#endif
|