diff --git a/include/openmc/eigenvalue.h b/include/openmc/eigenvalue.h index ab1c82265..b7a75becb 100644 --- a/include/openmc/eigenvalue.h +++ b/include/openmc/eigenvalue.h @@ -1,3 +1,6 @@ +//! \file eigenvalue.h +//! \brief Data/functions related to k-eigenvalue calculations + #ifndef OPENMC_EIGENVALUE_H #define OPENMC_EIGENVALUE_H @@ -30,7 +33,7 @@ extern "C" int64_t n_bank; //! Collect/normalize the tracklength keff from each process extern "C" void calculate_generation_keff(); -//! Calcaulte mean/standard deviation of keff during active generations +//! Calculate mean/standard deviation of keff during active generations //! //! This function sets the global variables keff and keff_std which represent //! the mean and standard deviation of the mean of k-effective over active diff --git a/src/settings.cpp b/src/settings.cpp index 4137fdfe1..ce0925978 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -500,7 +500,6 @@ void read_settings_xml() if (check_for_node(root, "track")) { // Get values and make sure there are three per particle auto temp = get_node_array(root, "track"); - std::cout << "track size " << temp.size() << "\n"; if (temp.size() % 3 != 0) { fatal_error("Number of integers specified in 'track' is not " "divisible by 3. Please provide 3 integers per particle to be "