Skip to content
Open
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
4 changes: 2 additions & 2 deletions CIValidations/FitterValidations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void FitVal(const std::string& Algo, bool MoreTests)
{
std::string TutorialPath = std::getenv("MaCh3Tutorial_ROOT");
std::string ManagerInput = TutorialPath + "/TutorialConfigs/FitterConfig.yaml";
auto FitManager = std::make_unique<manager>(ManagerInput);
auto FitManager = std::make_unique<Manager>(ManagerInput);

MACH3LOG_INFO("Testing {}", Algo);

Expand Down Expand Up @@ -72,7 +72,7 @@ void StartFromPosteriorTest(const std::string& PreviousName)
{
std::string TutorialPath = std::getenv("MaCh3Tutorial_ROOT");
std::string ManagerInput = TutorialPath + "/TutorialConfigs/FitterConfig.yaml";
auto FitManager = std::make_unique<manager>(ManagerInput);
auto FitManager = std::make_unique<Manager>(ManagerInput);

FitManager->OverrideSettings("General", "OutputFile", "MCMC_Test_Start.root");

Expand Down
2 changes: 1 addition & 1 deletion CIValidations/SigmaVarValidations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ int main(int argc, char *argv[])
auto SampleTutorial = std::make_unique<samplePDFSigmaVar>();

std::string ManagerInput = TutorialPath + "/TutorialConfigs/FitterConfig.yaml";
auto FitManager = std::make_unique<manager>(ManagerInput);
auto FitManager = std::make_unique<Manager>(ManagerInput);

// Create MCMC Class
std::unique_ptr<FitterBase> MaCh3Fitter = MaCh3FitterFactory(FitManager.get());
Expand Down
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.3.2 LANGUAGES CXX)
project(MaCh3Tutorial VERSION 2.4.0 LANGUAGES CXX)
set(MaCh3Tutorial_VERSION ${PROJECT_VERSION})

set(CMAKE_CXX_STANDARD_REQUIRED True)
Expand Down
Loading