Commit 1e4a5efc authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

Update MASA MD headroom

parent 1ba2e349
Loading
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -318,6 +318,9 @@ ReferenceMasaMDFiles = {

PROGRAM_VERSION = "3.1"

MLD_HEADROOM = 0.1
MASAMD_HEADROOM = 0.004


@dataclass
class TestDescriptor:
@@ -1301,7 +1304,7 @@ class MLDConformance:
        return False

    def analyseTag(self, tag: str) -> bool:
        corridor_threshold = 0.1
        corridor_threshold = MLD_HEADROOM
        command_fail_count = 0
        be_count = 0
        non_be_count = 0
@@ -2053,7 +2056,7 @@ class MLDConformance:
                            mldRefWithTags,
                            mdlCutWithTags,
                            tag,
                            threshold=0.1,
                            threshold=MLD_HEADROOM,
                            metricKey="MLD",
                            metricLabel="MLD",
                        )
@@ -2143,7 +2146,7 @@ class MLDConformance:
                            masaMDRefWithTags,
                            masaMDCutWithTags,
                            tag,
                            threshold=0.0,
                            threshold=MASAMD_HEADROOM,
                            metricKey="MASA",
                            metricLabel="MASA",
                        )