Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_VERBOSE_MAKEFILE ON)
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)

# Create project
project(MaCh3Tutorial VERSION 2.5.1 LANGUAGES CXX)
project(MaCh3Tutorial VERSION 2.6.0 LANGUAGES CXX)
set(MaCh3Tutorial_VERSION ${PROJECT_VERSION})

set(CMAKE_CXX_STANDARD_REQUIRED True)
Expand Down
14 changes: 11 additions & 3 deletions Tutorial/TutorialDiagConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ ProcessMCMC:
BipolarPlot:
- ["BinnedSplineParam1", [0, 1]]

#KS: Feel free to pass whatever combination you like
#KS: Feel free to pass whatever combination you like
TrianglePlot:
- ["Test", ["Norm_Param_0", "Norm_Param_1", "BinnedSplineParam1", "BinnedSplineParam2"]]

#First is paramter name and second number of intervals
#First is parameter name and second number of intervals
ParameterEvolution:
- ["Norm_Param_0", 20]

# Technique to reduce size of chains by saving only every N-th step. Help reduce size while having good autocorrelations.
Thinning: [false, 100]

#First param name, then new prior and new prior error
Expand All @@ -109,6 +109,14 @@ ProcessMCMC:
# This allows to specify custom bin edges for usual 1D plotting
CustomBinEdges:
delta_cp: [-3.141592, 3.141592]
# Calculate Jarlskog invariant and make plots
JarlskogAnalysis: true
# Calculate PMNS elements and save based on posterior distribution
ProducePMNSElements: true
# Calculate and write Unitarity Triangles
ProduceUnitarityTriangles: true
# Produce fancy looking Pie or Clock Plot for Delta CP
MakePiePlot: true
#########################################
GetPenaltyTerm:
PenaltySets: ["Norm", "Spline"]
Expand Down
2 changes: 2 additions & 0 deletions TutorialConfigs/FitterConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ Predictive:
ParameterBounds: []
# Example with normal ordering and upper octant
#ParameterBounds: [ ["delm2_23", [0, 999]], ["sin2th_23", [0.5, 1] ] ]
# Will produce posterior predictive distributions with by mode breakdown, can be heavy on RAM
ByMode: false
# LLH Scan settings
LLHScan:
# don't make LLH for certain systematic groups
Expand Down