2017-07-25 12:19:11 -04:00
|
|
|
/// \file config.h
|
|
|
|
#ifndef CONFIG
|
|
|
|
#define CONFIG
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
namespace catima{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \enum z_eff_type
|
|
|
|
* enum to select formulat to calculate effective charge of the Projectile
|
|
|
|
*/
|
|
|
|
enum z_eff_type:char {
|
|
|
|
none = 0,
|
|
|
|
pierce_blann = 1,
|
|
|
|
anthony_landorf = 2,
|
2018-01-15 09:11:51 -05:00
|
|
|
hubert = 3,
|
|
|
|
winger = 4,
|
|
|
|
schiwietz = 5,
|
2018-01-18 13:20:42 -05:00
|
|
|
global = 6,
|
|
|
|
atima14 = 7
|
2017-07-25 12:19:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enum to select which calculation to skip
|
|
|
|
*/
|
|
|
|
enum skip_calculation:char{
|
|
|
|
skip_none = 0,
|
|
|
|
skip_tof = 1,
|
|
|
|
skip_sigma_a = 2,
|
|
|
|
skip_sigma_r = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enum to select which dEdx correction to skip
|
|
|
|
*/
|
|
|
|
enum corrections:char{
|
|
|
|
no_barkas = 1,
|
|
|
|
no_lindhard = 2,
|
|
|
|
no_shell_correction = 4
|
|
|
|
};
|
|
|
|
|
2018-01-18 13:20:42 -05:00
|
|
|
/**
|
|
|
|
* enum to select which dEdx straggling options
|
|
|
|
*/
|
|
|
|
enum omega:char{
|
|
|
|
atima = 0,
|
|
|
|
bohr = 1,
|
|
|
|
};
|
|
|
|
|
2017-07-25 12:19:11 -04:00
|
|
|
/**
|
|
|
|
* structure to store calculation configuration
|
|
|
|
* each group of options are grouped and enum are suppose to use
|
|
|
|
* see catima::z_eff_type, catima::skip_calculation, catima::corrections
|
|
|
|
*
|
|
|
|
* check catima::z_effective()
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct Config{
|
2018-01-18 13:20:42 -05:00
|
|
|
char z_effective=z_eff_type::pierce_blann;
|
|
|
|
//char z_effective=z_eff_type::atima14;
|
2017-07-25 12:19:11 -04:00
|
|
|
char skip=skip_none;
|
|
|
|
char dedx = 0;
|
2018-01-18 13:20:42 -05:00
|
|
|
char dedx_straggling = omega::atima;
|
2017-07-25 12:19:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Config default_config;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|