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 12919ca commit 772980cCopy full SHA for 772980c
DataFormats/Detectors/CTP/src/Configuration.cxx
@@ -1204,8 +1204,8 @@ int CtpCfg::readAndSave(std::string& path)
1204
} else if (tokens[0].find("orbitshift") != std::string::npos) {
1205
orbitShift = std::atol(tokens[1].c_str());
1206
} else if (tokens[0].find("ir_inputs") != std::string::npos) {
1207
- irInputs_1_24 = std::stoul(tokens[1].c_str(), nullptr, 16);
1208
- irInputs_25_48 = std::stoul(tokens[2].c_str(), nullptr, 16);
+ irInputs_1_24 = std::stoul(tokens[2].c_str(), nullptr, 16);
+ irInputs_25_48 = std::stoul(tokens[1].c_str(), nullptr, 16);
1209
} else {
1210
LOG(warn) << " Token not found:" << tokens[0];
1211
}
0 commit comments