We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5663931 commit 3c644f2Copy full SHA for 3c644f2
ALICE3/Core/FastTracker.h
@@ -49,11 +49,7 @@ class GeometryContainer
49
static std::map<std::string, std::map<std::string, std::string>> parseTEnvConfiguration(std::string filename)
50
{
51
std::map<std::string, std::map<std::string, std::string>> configMap;
52
- if (filename.find('$') != std::string::npos) {
53
- // Expand environment variables in filename
54
- const char* expanded = gSystem->ExpandPathName(filename.c_str());
55
- filename = expanded;
56
- }
+ filename = gSystem->ExpandPathName(filename.c_str());
57
TEnv env(filename.c_str());
58
THashList* table = env.GetTable();
59
std::vector<std::string> layers;
0 commit comments