26 lines
749 B
C++
26 lines
749 B
C++
#ifndef PROCESS_ALGORITHM_GLOBALE_VAR_H
|
|
#define PROCESS_ALGORITHM_GLOBALE_VAR_H
|
|
#include <QString>
|
|
|
|
class global
|
|
{
|
|
//常数变量
|
|
public:
|
|
static double cst_d_decay_133xeg_lam;
|
|
static double cst_d_decay_131xem_lam;
|
|
static double cst_d_decay_133xem_lam;
|
|
static double cst_d_decay_135xeg_lam;
|
|
static double cst_d_br_133xe_80;
|
|
static double cst_d_br_133xe_30;
|
|
static double cst_d_br_131xem_30;
|
|
static double cst_d_br_133xem_30;
|
|
static double cst_d_br_135xeg;
|
|
static double cst_d_xe_air;
|
|
static double cst_k;
|
|
static int fit_type;
|
|
enum XeType{both,_131m,_133m,none};
|
|
static void InitAlgorithmVar(QString& _cfgFileName);
|
|
static void GenerateAlgorithmVar(QString& _cfgFileName);
|
|
};
|
|
#endif
|