Definition at line 15 of file Enums.py.
◆ __eq__()
def python.Enums.FlagEnum.__eq__ |
( |
|
self, |
|
|
|
other |
|
) |
| |
|
inherited |
Definition at line 7 of file Enums.py.
7 def __eq__(self, other):
8 if not isinstance(other, self.__class__):
9 raise TypeError(f
"Invalid comparison of {self.__class__} with {type(other)}")
◆ determine()
def python.Enums.Project.determine |
( |
|
cls | ) |
|
Definition at line 24 of file Enums.py.
26 if "AthSimulation_DIR" in os.environ:
27 return cls.AthSimulation
28 if "AthGeneration_DIR" in os.environ:
29 return cls.AthGeneration
30 if "AthAnalysis_DIR" in os.environ:
31 return cls.AthAnalysis
32 if "AthDerivation_DIR" in os.environ:
33 return cls.AthDerivation
34 if "AnalysisBase_DIR" in os.environ:
35 return cls.AnalysisBase
◆ __hash__
python.Enums.FlagEnum.__hash__ |
|
staticprivateinherited |
◆ AnalysisBase
python.Enums.Project.AnalysisBase |
|
static |
◆ AthAnalysis
python.Enums.Project.AthAnalysis |
|
static |
◆ AthDerivation
python.Enums.Project.AthDerivation |
|
static |
◆ Athena
python.Enums.Project.Athena |
|
static |
◆ AthGeneration
python.Enums.Project.AthGeneration |
|
static |
◆ AthSimulation
python.Enums.Project.AthSimulation |
|
static |
The documentation for this class was generated from the following file: