Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed analysis_inputs script to separate MS options #76

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -113,6 +114,10 @@ class ForwardInitialConditions(GeneralInitialConditions):
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
Loading