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

MCMC Averaging #212

Merged
merged 5 commits into from
Nov 16, 2024
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: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Henry Wallace <[email protected]> Henry Wallace <67589487+henry-wallace-ph
Henry Wallace <[email protected]> Henry Wallace <[email protected]>
Henry Wallace <[email protected]> Henry Wallace <[email protected]>
Henry Wallace <[email protected]> Henry Wallace <[email protected]>
Henry Wallace <[email protected]> Henry Wallace <[email protected]>
Henry Wallace <[email protected]> Henry Wallace <[email protected]>

# Ewan Miller
Ewan Miller <[email protected]> Ewan <[email protected]>
Expand Down
5 changes: 1 addition & 4 deletions Diagnostics/DiagMCMC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ void DiagMCMC(const std::string& inputFile, const std::string& config)
YAML::Node Settings = YAML::LoadFile(config);

// Make the processor
MCMCProcessor* Processor = new MCMCProcessor(inputFile);

auto Processor = std::make_unique<MCMCProcessor>(inputFile);
Processor->SetOutputSuffix("_MCMC_Diag");
//KS:Turn off plotting detector and some other setting
Processor->SetExcludedTypes(GetFromManager<std::vector<std::string>>(Settings["DiagMCMC"]["ExcludedTypes"], {""}));
Expand All @@ -27,8 +26,6 @@ void DiagMCMC(const std::string& inputFile, const std::string& config)

//KS: finally call main method
Processor->DiagMCMC();

delete Processor;
}

int main(int argc, char *argv[]) {
Expand Down
Loading