Added to repository
This commit is contained in:
28
geant4/LEMuSR/include/yields.h
Normal file
28
geant4/LEMuSR/include/yields.h
Normal file
@ -0,0 +1,28 @@
|
||||
#ifndef Yields_h
|
||||
#define Yield_h 1
|
||||
|
||||
#include "globals.hh"
|
||||
|
||||
class Yields
|
||||
{
|
||||
|
||||
public:
|
||||
//constructor
|
||||
Yields();
|
||||
//destructor
|
||||
~Yields();
|
||||
|
||||
void GetYields(double E, double masse, double yvector[]);
|
||||
|
||||
|
||||
private:
|
||||
// VARIABLES
|
||||
double Q_zero,Q_minus,D;
|
||||
double Yield_minus,Yield_zero,Yield_plus;
|
||||
|
||||
double help1,help2,help3;
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user