Skip to content

Commit

Permalink
Fixing #25 -- now for real
Browse files Browse the repository at this point in the history
  • Loading branch information
fzeiser committed Jan 20, 2021
1 parent 9129dba commit 94ca2ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RAINIER.C
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ char cbriccs[] = "BrIccS.exe"; // haven't done any windows testing yet

/////////////////////////// Settings & Parameters ///////////////////////////////
#include "settings.h" // all (or most) parameters for the simulations
TString g_sRAINIERPath; // Path to RAINIER
string g_sRAINIERPath; // Path to RAINIER

///////////////////////// Discrete Input File //////////////////////////////////
double g_adDisEne[g_nDisLvlMax]; // discrete lvl energy
Expand All @@ -96,7 +96,7 @@ void ReadDisInputFile() {
#ifdef buse_nondefault_levels_file
TString szFile = slevels_file; // might e.g. add missing half-life
#else
TString szFile = g_sRAINIERPath + "/levels/z" + TString::Format("%03d",g_nZ) + ".dat";
TString szFile = TString(g_sRAINIERPath) + "/levels/z" + TString::Format("%03d",g_nZ) + ".dat";
#endif // buse_nondefault_levels_file
lvlFile.open(szFile.Data());
if (lvlFile.fail()) {cerr << "Level File: " << szFile << " could not be opened" << endl; exit(0);}
Expand Down

0 comments on commit 94ca2ff

Please sign in to comment.