Skip to content

Commit 772980c

Browse files
committed
fix
1 parent 12919ca commit 772980c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DataFormats/Detectors/CTP/src/Configuration.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1204,8 +1204,8 @@ int CtpCfg::readAndSave(std::string& path)
12041204
} else if (tokens[0].find("orbitshift") != std::string::npos) {
12051205
orbitShift = std::atol(tokens[1].c_str());
12061206
} 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);
1207+
irInputs_1_24 = std::stoul(tokens[2].c_str(), nullptr, 16);
1208+
irInputs_25_48 = std::stoul(tokens[1].c_str(), nullptr, 16);
12091209
} else {
12101210
LOG(warn) << " Token not found:" << tokens[0];
12111211
}

0 commit comments

Comments
 (0)