From 21735eb8c787f80605c25dabfef945071ad3dddc Mon Sep 17 00:00:00 2001 From: Chris Maffeo <cmaffeo2@illinois.edu> Date: Wed, 28 Jun 2017 15:24:36 -0500 Subject: [PATCH] Throw error if too many tabulatedFile in config --- src/Configuration.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Configuration.cpp b/src/Configuration.cpp index 16a57e9..51679b9 100644 --- a/src/Configuration.cpp +++ b/src/Configuration.cpp @@ -1700,6 +1700,11 @@ bool Configuration::readTableFile(const String& value, int currTab) { return false; } + if (currTab >= numParts*numParts) { + printf("ERROR: Number of tabulatedFile entries exceeded %d*%d particle types.\n", numParts,numParts); + exit(1); + } + partTableIndex0[currTab] = atoi(tokenList[0]); partTableIndex1[currTab] = atoi(tokenList[1]); partTableFile[currTab] = tokenList[2]; -- GitLab