Skip to content

Commit

Permalink
Merge pull request #76 from mantidproject/73-separate-multiple-scatte…
Browse files Browse the repository at this point in the history
…ring-options-for-forward-and-backward-classes

Changed analysis_inputs script to separate MS options
  • Loading branch information
MialLewis authored Dec 13, 2023
2 parents 38f8ed7 + 5b6b541 commit acb3219
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions EVSVesuvio/config/analysis_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ def __init__(self, ipFilesPath):

class GeneralInitialConditions:
"""Used to define initial conditions shared by both Back and Forward scattering"""

transmission_guess = 0.8537 # Experimental value from VesuvioTransmission
multiple_scattering_order, number_of_events = 2, 1.e5
# Sample slab parameters
vertical_width, horizontal_width, thickness = 0.1, 0.1, 0.001 # Expressed in meters

Expand Down Expand Up @@ -76,6 +73,10 @@ def __init__(self, ipFilesPath):
tofBinning='275.,1.,420' # Binning of ToF spectra
maskTOFRange = None

transmission_guess = 0.8537 # Experimental value from VesuvioTransmission
multiple_scattering_order = 2
number_of_events = 1.e5

# Original data uses histogram data instead of point data
runHistData = True
normVoigt = False
Expand Down Expand Up @@ -115,6 +116,10 @@ def __init__(self, ipFilesPath):
tofBinning="110,1,430" # Binning of ToF spectra
maskTOFRange = None

transmission_guess = 0.8537 # Experimental value from VesuvioTransmission
multiple_scattering_order = 2
number_of_events = 1.e5

# Original data uses histogram data instead of point data
runHistData = True
normVoigt = False
Expand Down

0 comments on commit acb3219

Please sign in to comment.