397 {
398 std::vector<int> combine_size;
399 cout << endl;
400 cout << " ***************check data file tsf: ***************** " << endl;
401 cout << "*--------------------------BEGIN-------------------------------*" << endl;
402 cout << endl;
403
404 cout << " -------------------SL1---------------------- " << endl;
405 combine_size.clear();
406 for ( unsigned int i = 0; i < SL1.size(); i++ )
407 {
408 cout << "Cell ID --> " << i << endl;
409 combine_size.push_back( SL1[i].size() );
410 for ( unsigned int j = 0; j < SL1[i].size(); j++ )
411 {
412 cout << SL1[i][j] << " ";
413 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
414 }
415 cout << endl;
416 }
417 sort( combine_size.begin(), combine_size.end() );
418 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
419 << endl;
420 cout << endl;
421
422 cout << " -------------------SL2---------------------- " << endl;
423 combine_size.clear();
424 for ( unsigned int i = 0; i < SL2.size(); i++ )
425 {
426 cout << "Cell ID --> " << i << endl;
427 combine_size.push_back( SL2[i].size() );
428 for ( unsigned int j = 0; j < SL2[i].size(); j++ )
429 {
430 cout << SL2[i][j] << " ";
431 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
432 }
433 cout << endl;
434 }
435 sort( combine_size.begin(), combine_size.end() );
436 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
437 << endl;
438 cout << endl;
439
440 cout << " -------------------SL3---------------------- " << endl;
441 combine_size.clear();
442 for ( unsigned int i = 0; i < SL3.size(); i++ )
443 {
444 cout << "Cell ID --> " << i << endl;
445 combine_size.push_back( SL3[i].size() );
446 for ( unsigned int j = 0; j < SL3[i].size(); j++ )
447 {
448 cout << SL3[i][j] << " ";
449 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
450 }
451 cout << endl;
452 }
453 sort( combine_size.begin(), combine_size.end() );
454 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
455 << endl;
456 cout << endl;
457
458 cout << " -------------------SL4---------------------- " << endl;
459 combine_size.clear();
460 for ( unsigned int i = 0; i < SL4.size(); i++ )
461 {
462 cout << "Cell ID --> " << i << endl;
463 combine_size.push_back( SL4[i].size() );
464 for ( unsigned int j = 0; j < SL4[i].size(); j++ )
465 {
466 cout << SL4[i][j] << " ";
467 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
468 }
469 cout << endl;
470 }
471 sort( combine_size.begin(), combine_size.end() );
472 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
473 << endl;
474 cout << endl;
475
476 cout << " -------------------SL5---------------------- " << endl;
477 combine_size.clear();
478 for ( unsigned int i = 0; i < SL5.size(); i++ )
479 {
480 cout << "Cell ID --> " << i << endl;
481 combine_size.push_back( SL5[i].size() );
482 for ( unsigned int j = 0; j < SL5[i].size(); j++ )
483 {
484 cout << SL5[i][j] << " ";
485 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
486 }
487 cout << endl;
488 }
489 sort( combine_size.begin(), combine_size.end() );
490 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
491 << endl;
492 cout << endl;
493
494 cout << " -------------------SL10---------------------- " << endl;
495 combine_size.clear();
496 for ( unsigned int i = 0; i < SL10.size(); i++ )
497 {
498 cout << "Cell ID --> " << i << endl;
499 combine_size.push_back( SL10[i].size() );
500 for ( unsigned int j = 0; j < SL10[i].size(); j++ )
501 {
502 cout << SL10[i][j] << " ";
503 if ( ( j + 1 ) % 4 == 0 ) cout << endl;
504 }
505 cout << endl;
506 }
507 sort( combine_size.begin(), combine_size.end() );
508 cout << "The Max Number of Combination is " << combine_size[combine_size.size() - 1] / 4
509 << endl;
510 cout << endl;
511
512 cout << "*---------------------------END------------------------------*" << endl;
513}