├── .gitignore ├── LICENSE ├── README.rst ├── bin └── easyscan.py ├── src ├── auxfun.py ├── constraint.py ├── easyscan_logging.conf ├── initialize.py ├── ploter.py ├── program.py ├── readin_config.py ├── scan_controller.py ├── scanner.py └── statfun.py ├── templates ├── bound.txt ├── example_grid.ini ├── example_mcmc.ini ├── example_mcmc_bound.ini ├── example_multinest.ini ├── example_onepoint.ini ├── example_onepointbatch.ini ├── example_random.ini ├── example_random_timeLimit.ini └── scan_MSSM_for_mW.ini └── utils ├── MSSM_mW ├── for_MSSM_mW.susyhit ├── hbounds.txt └── makefile ├── OnePointBatch.in ├── TestFunction.py └── TestFunction_input.dat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/README.rst -------------------------------------------------------------------------------- /bin/easyscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/bin/easyscan.py -------------------------------------------------------------------------------- /src/auxfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/auxfun.py -------------------------------------------------------------------------------- /src/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/constraint.py -------------------------------------------------------------------------------- /src/easyscan_logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/easyscan_logging.conf -------------------------------------------------------------------------------- /src/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/initialize.py -------------------------------------------------------------------------------- /src/ploter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/ploter.py -------------------------------------------------------------------------------- /src/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/program.py -------------------------------------------------------------------------------- /src/readin_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/readin_config.py -------------------------------------------------------------------------------- /src/scan_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/scan_controller.py -------------------------------------------------------------------------------- /src/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/scanner.py -------------------------------------------------------------------------------- /src/statfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/src/statfun.py -------------------------------------------------------------------------------- /templates/bound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/bound.txt -------------------------------------------------------------------------------- /templates/example_grid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_grid.ini -------------------------------------------------------------------------------- /templates/example_mcmc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_mcmc.ini -------------------------------------------------------------------------------- /templates/example_mcmc_bound.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_mcmc_bound.ini -------------------------------------------------------------------------------- /templates/example_multinest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_multinest.ini -------------------------------------------------------------------------------- /templates/example_onepoint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_onepoint.ini -------------------------------------------------------------------------------- /templates/example_onepointbatch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_onepointbatch.ini -------------------------------------------------------------------------------- /templates/example_random.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_random.ini -------------------------------------------------------------------------------- /templates/example_random_timeLimit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/example_random_timeLimit.ini -------------------------------------------------------------------------------- /templates/scan_MSSM_for_mW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/templates/scan_MSSM_for_mW.ini -------------------------------------------------------------------------------- /utils/MSSM_mW/for_MSSM_mW.susyhit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/MSSM_mW/for_MSSM_mW.susyhit -------------------------------------------------------------------------------- /utils/MSSM_mW/hbounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/MSSM_mW/hbounds.txt -------------------------------------------------------------------------------- /utils/MSSM_mW/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/MSSM_mW/makefile -------------------------------------------------------------------------------- /utils/OnePointBatch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/OnePointBatch.in -------------------------------------------------------------------------------- /utils/TestFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/TestFunction.py -------------------------------------------------------------------------------- /utils/TestFunction_input.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phyzhangyang/EasyScan_HEP/HEAD/utils/TestFunction_input.dat --------------------------------------------------------------------------------