Skip to content

Commit

Permalink
added bShouldRecalculateMatrixElements flag to all model files (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorindevandevis authored Oct 21, 2024
1 parent 53fb936 commit 5b98b29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Models/InertDoubletModel/inertDoubletModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ class InertDoubletModelExample(WallGoExampleBase):

def __init__(self) -> None:
""""""
self.bShouldRecalculateMatrixElements = False

self.bShouldRecalculateCollisions = False
self.matrixElementFile = pathlib.Path(
self.exampleBaseDirectory / "MatrixElements/matrixElements.ew.json"
Expand Down
1 change: 1 addition & 0 deletions Models/ManySinglets/manySinglets.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@ class NSingletsModelExample(WallGoExampleBase):

def __init__(self) -> None:
""""""
self.bShouldRecalculateMatrixElements = False
self.bShouldRecalculateCollisions = False

self.matrixElementFile = pathlib.Path(
Expand Down
2 changes: 2 additions & 0 deletions Models/SimpleModel/simpleModelWithCollisionGeneration.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class SimpleModelExample(WallGoExampleBase):

def __init__(self) -> None:
""""""
self.bShouldRecalculateMatrixElements = False

self.bShouldRecalculateCollisions = False

# We take the matrix elements from the Yukawa model
Expand Down
1 change: 1 addition & 0 deletions Models/StandardModel/standardModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ class StandardModelExample(WallGoExampleBase):

def __init__(self) -> None:
""""""
self.bShouldRecalculateMatrixElements = False
self.bShouldRecalculateCollisions = False
self.matrixElementFile = pathlib.Path(
self.exampleBaseDirectory / "MatrixElements/matrixElements.ew.json"
Expand Down
2 changes: 2 additions & 0 deletions Models/Yukawa/yukawa.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ class YukawaModelExample(WallGoExampleBase):

def __init__(self) -> None:
""""""
self.bShouldRecalculateMatrixElements = False

self.bShouldRecalculateCollisions = False

self.matrixElementFile = pathlib.Path(
Expand Down

0 comments on commit 5b98b29

Please sign in to comment.