(self)
| 474 | logL.append(str(event.eventId)) |
| 475 | |
| 476 | def getOutput(self): |
| 477 | if self.para.PST == 0 and self.partitionsL[0].numOfLogs != 0: |
| 478 | for logL in self.partitionsL[0].logLL: |
| 479 | self.output.append(logL[-2:] + logL[:-2]) |
| 480 | for partition in self.partitionsL: |
| 481 | if not partition.valid: |
| 482 | continue |
| 483 | for logL in partition.logLL: |
| 484 | self.output.append(logL[-2:] + logL[:-2]) |
| 485 | |
| 486 | def WriteEventToFile(self): |
| 487 | eventID_template = { |