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

33 lines
512 B
C++

#ifndef G4NeutronHPDataUsed_h
#define G4NeutronHPDataUsed_h 1
#include "globals.hh"
class G4NeutronHPDataUsed
{
public:
G4NeutronHPDataUsed()
{
theName = "";
theA = 0;
theZ = 0;
}
void SetA(G4double anA){theA = anA;}
void SetZ(G4int aZ){theZ = aZ;}
void SetName(G4String aName){theName = aName;}
G4int GetZ() {return theZ;}
G4double GetA() {return theA;}
G4String GetName() {return theName;}
private:
G4String theName;
G4double theA;
G4int theZ;
};
#endif