Skip to content

Commit

Permalink
typo + formating
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 committed Dec 11, 2024
1 parent eb7c22d commit 92a7a39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/dagmc/dagmcmetadata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ void dagmcMetaData::parse_boundary_data() {

std::string bc_string = dagmc_util::to_lower(boundary_assignment[0]);

if (bc_string.find(dagmc_util::to_lower(reflecting_str())) != std::string::npos)
if (bc_string.find(dagmc_util::to_lower(reflecting_str())) !=
std::string::npos)
surface_boundary_data_eh[eh] = reflecting_str();
if (bc_string.find(dagmc_util::to_lower(white_str())) !=
std::string::npos)
Expand Down
10 changes: 6 additions & 4 deletions src/mcnp/mcnp_funcs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,12 @@ void write_cell_cards(std::ostringstream& lcadfile,
}
double imp = 1.0;
// if we find graveyard always have importance 0.0
if (dagmc_util::to_lower(mat_num) == dagmc_util::to_lower(DMD->graveyard_mat_str())) {
if (dagmc_util::to_lower(mat_num) ==
dagmc_util::to_lower(DMD->graveyard_mat_str())) {
imp = 0.0;
// no splitting can happenin vacuum set to 1
} else if (dagmc_util::to_lower(mat_num) == dagmc_util::to_lower(DMD->vacuum_mat_str())) {
} else if (dagmc_util::to_lower(mat_num) ==
dagmc_util::to_lower(DMD->vacuum_mat_str())) {
imp = 1.0;
// otherwise as the map says
} else {
Expand All @@ -285,15 +287,15 @@ void write_cell_cards(std::ostringstream& lcadfile,
}
// its possible no importances were assigned
if (set.size() == 0) {
if (dagmc_util::to_lower(mat_num) != dagmc_util::to_lower(DMD->graveyard_mat_str()) {
if (dagmc_util::to_lower(mat_num) != dagmc_util::to_lower(DMD->graveyard_mat_str())) {
importances = "imp:n=1";
} else {
importances = "imp:n=0";
}
}

// add descriptive comments for special volumes
if (dagmc_util::to_lower(mat_num) == dagmc_util::to_lower(DMD->graveyard_mat_str()) {
if (dagmc_util::to_lower(mat_num) == dagmc_util::to_lower(DMD->graveyard_mat_str())) {
importances += " $ graveyard";
} else if (DAG->is_implicit_complement(entity)) {
importances += " $ implicit complement";
Expand Down

0 comments on commit 92a7a39

Please sign in to comment.