Skip to content

Commit f03b6f6

Browse files
committed
fmk - mod to search for a RV. as well as one in quotes in simcenterSub
1 parent e8333ac commit f03b6f6

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

modules/performUQ/templateSub/simCenterSub.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,17 @@ int main(int argc, char **argv)
8181

8282
// subsequent lines contain RV and value .. add to string vectors
8383
string rvName = "\"RV." + tokens.at(0) + "\""; // add SimCenter delimiters begin="RV. & end="
84+
string rvName2 = "RV." + tokens.at(0); // add SimCenter delimiters begin="RV. & end="
8485
string rvValue = tokens.at(1);
8586
original.push_back(rvName);
8687
replace.push_back(rvValue);
88+
original.push_back(rvName2);
89+
replace.push_back(rvValue);
8790
originalLength.push_back(rvName.length());
8891
replacementLength.push_back(rvValue.length());
92+
originalLength.push_back(rvName2.length());
93+
replacementLength.push_back(rvValue.length());
94+
8995
// std::cerr << rvName << " " << rvValue << "\n";
9096
}
9197

0 commit comments

Comments
 (0)