Skip to content

Commit

Permalink
Fix XCOM file not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit Leck committed Mar 1, 2024
1 parent a2fe978 commit 1eafb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gammapkt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void init_photoion_data() {
for (int Z = 0; Z < numb_xcom_elements; Z++) {
photoion_data[Z].reserve(100);
}
const std::string filepath{"xcom_photoion_data.txt"};
const std::string filepath{"data/xcom_photoion_data.txt"};
assert_always(std::filesystem::exists(filepath));

std::ifstream data_fs(filepath);
Expand Down

0 comments on commit 1eafb08

Please sign in to comment.