Skip to content
Snippets Groups Projects
Commit cf8fb672 authored by Jan Reher's avatar Jan Reher
Browse files

fixed typos

parent 2d46a6cf
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ int main(int argc, char* argv[]) {
}
catch (std::exception &e) {
nFailed++;
std::cerr << "An error occurred on APD paid with red APD " << newUnit->redSerial << " and blue APD " << newUnit->blueSerial << "!" << std::endl;
std::cerr << "An error occurred on APD pair with red APD " << newUnit->redSerial << " and blue APD " << newUnit->blueSerial << "!" << std::endl;
std::cerr << e.what() << std::endl << std::endl;
continue;
}
......@@ -182,7 +182,7 @@ void loadSerialsFromFileName(string m_fileName, bool m_debug) {
barcode += 1309000000;
newUnit.barCode = barcode;
std::cout << "Found new unit with RS = " << newUnit.redSerial << ", BS = " << newUnit.blueSerial << ", CS = " << newUnit.crystalSerial << ", BC = " << newUnit.barCode << std::endl;
std::cout << "Found new unit with Red = " << newUnit.redSerial << ", Blue = " << newUnit.blueSerial << ", xtal = " << newUnit.crystalSerial << ", Barcode = " << newUnit.barCode << std::endl;
newUnits.push_back(newUnit);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment