Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
+35
View File
@@ -0,0 +1,35 @@
// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_rtausmef
#define tools_rtausmef
#include "rtausmeui"
#include "S_STRING"
#include <cmath>
namespace tools {
class rtausmef : public rtausmeui {
typedef rtausmeui parent;
public:
TOOLS_SCLASS(tools::rtausmef)
public:
rtausmef(unsigned int a_seed = 4357):parent(a_seed){}
virtual ~rtausmef(){}
public:
rtausmef(const rtausmef& a_from):parent(a_from){}
rtausmef& operator=(const rtausmef& a_from) {parent::operator=(a_from);return *this;}
protected:
static float two_to_minus_32() {
static const float s_v = ::ldexpf(1,-32);
return s_v;
}
public:
float shoot() {return float(parent::shoot()) * two_to_minus_32();}
};
}
#endif