| 320 | class sn_Routing_Init_Thread(threading.Thread): |
| 321 | |
| 322 | def __init__(self, remote_ssh, remote_ftp, orbit_num, sat_num, |
| 323 | constellation_size, fac_num, file_path, sat_bandwidth, |
| 324 | sat_ground_bandwidth, sat_loss, sat_ground_loss): |
| 325 | threading.Thread.__init__(self) |
| 326 | self.remote_ssh = remote_ssh |
| 327 | self.constellation_size = constellation_size |
| 328 | self.fac_num = fac_num |
| 329 | self.orbit_num = orbit_num |
| 330 | self.sat_num = sat_num |
| 331 | self.file_path = file_path |
| 332 | self.sat_bandwidth = sat_bandwidth |
| 333 | self.sat_ground_bandwidth = sat_ground_bandwidth |
| 334 | self.sat_loss = sat_loss |
| 335 | self.sat_ground_loss = sat_ground_loss |
| 336 | self.remote_ftp = remote_ftp |
| 337 | |
| 338 | def run(self): |
| 339 | print( |