Files
geant4/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPNames.hh
T
2016-06-01 15:25:35 +02:00

43 lines
995 B
C++

// This code implementation is the intellectual property of
// neutron_hp -- header file
// J.P. Wellisch, Nov-1996
// A prototype of the low energy neutron transport model.
//
// 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.
//
// $Id: G4NeutronHPNames.hh,v 2.7 1998/12/10 11:55:07 hpw Exp $
// GEANT4 tag $Name: geant4-00 $
//
#ifndef G4NeutronHPNames_h
#define G4NeutronHPNames_h 1
#include "G4ios.hh"
#include <fstream.h>
#ifdef WIN32
#include <strstrea.h>
#else
#include <strstream.h>
#endif
#include <stdlib.h>
#include "globals.hh"
#include "G4NeutronHPDataUsed.hh"
class G4NeutronHPNames
{
public:
G4NeutronHPNames(){}
~G4NeutronHPNames(){}
G4NeutronHPDataUsed GetName(G4int A, G4int Z, G4String base, G4String rest, G4bool & active);
G4String GetName(G4int i) { return theString[i]; }
private:
static const G4String theString[99];
};
#endif