aboutsummaryrefslogtreecommitdiffstats
path: root/utils/enums.py
diff options
context:
space:
mode:
authorShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 18:39:45 +0000
committerShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 18:39:45 +0000
commit402f8b53dd892b8fd44ae5ad45eac91b5f6b3750 (patch)
treeb619c6efb0eb303e164bbd27691cdd9f8fce36a2 /utils/enums.py
parent3a5a6c658e45402d413970e8d273a656ed74dcf5 (diff)
downloadGolemFlavor-402f8b53dd892b8fd44ae5ad45eac91b5f6b3750.tar.gz
GolemFlavor-402f8b53dd892b8fd44ae5ad45eac91b5f6b3750.zip
reogranise into a python package
Diffstat (limited to 'utils/enums.py')
-rw-r--r--utils/enums.py63
1 files changed, 0 insertions, 63 deletions
diff --git a/utils/enums.py b/utils/enums.py
deleted file mode 100644
index e85158d..0000000
--- a/utils/enums.py
+++ /dev/null
@@ -1,63 +0,0 @@
-# author : S. Mandalia
-# s.p.mandalia@qmul.ac.uk
-#
-# date : March 17, 2018
-
-"""
-Define Enums for the BSM flavour ratio analysis
-"""
-
-from enum import Enum
-
-
-def str_enum(x):
- return '{0}'.format(str(x).split('.')[-1])
-
-
-class DataType(Enum):
- REAL = 1
- ASIMOV = 2
- REALISATION = 3
-
-
-class Likelihood(Enum):
- GOLEMFIT = 1
- GF_FREQ = 2
-
-
-class ParamTag(Enum):
- NUISANCE = 1
- SM_ANGLES = 2
- MMANGLES = 3
- SCALE = 4
- SRCANGLES = 5
- BESTFIT = 6
- NONE = 7
-
-
-class PriorsCateg(Enum):
- UNIFORM = 1
- GAUSSIAN = 2
- LIMITEDGAUSS = 3
-
-
-class MCMCSeedType(Enum):
- UNIFORM = 1
- GAUSSIAN = 2
-
-
-class StatCateg(Enum):
- BAYESIAN = 1
- FREQUENTIST = 2
-
-
-class SteeringCateg(Enum):
- P2_0 = 1
- P2_1 = 2
-
-
-class Texture(Enum):
- OEU = 1
- OET = 2
- OUT = 3
- NONE = 4