when no event build, the suffix is 'single' instead of '-1'

This commit is contained in:
Ryan Tang 2024-06-18 16:47:54 -04:00
parent 02305314ba
commit 0e8c92a266

View File

@ -60,7 +60,7 @@ int main(int argc, char **argv) {
pos = outFileName.Index("_", pos+1); // find next "_" pos = outFileName.Index("_", pos+1); // find next "_"
if( nFile == 1 ) pos = outFileName.Index("_", pos+1); // find next "_", S/N if( nFile == 1 ) pos = outFileName.Index("_", pos+1); // find next "_", S/N
outFileName.Remove(pos); // remove the rest outFileName.Remove(pos); // remove the rest
outFileName += "_" + std::to_string(timeWindow); outFileName += "_" + ( timeWindow >= 0 ? std::to_string(timeWindow) : "single");
outFileName += ".root"; outFileName += ".root";
printf("-------> Out file name : %s \n", outFileName.Data()); printf("-------> Out file name : %s \n", outFileName.Data());
printf("========================================= Number of Files : %d \n", nFile); printf("========================================= Number of Files : %d \n", nFile);