541{
542
543
544 static const G4String StrDoNot("DoNot"), StrUnique("Unique"),
545 StrUndefined("Undefined"),
546 StrSharedTransport("SharedTransport"),
547 StrSharedOther("SharedOther");
548 G4cout <<
"### G4ITMultiNavigator::PrintLimited() reports: " <<
G4endl;
551
552#ifdef G4DEBUG_NAVIGATION
553 if(fVerbose>=2)
554 {
555 G4cout << std::setw(5) <<
" NavId" <<
" "
556 << std::setw(12) << " step-size " << " "
557 << std::setw(12) << " raw-size " << " "
558 << std::setw(12) << " pre-safety " << " "
559 << std::setw(15) << " Limited / flag" << " "
560 << std::setw(15) << " World " << " "
562 }
563#endif
564
565 for (
G4int num= 0; num < fNoActiveNavigators; num++ )
566 {
570 {
572 }
574
575 G4cout << std::setw(5) << num <<
" "
576 << std::setw(12) << stepLen << " "
577 << std::setw(12) << rawStep << " "
579 << std::setw(5) << (
fLimitTruth[num] ?
"YES" :
" NO") <<
" ";
580 G4String limitedStr;
582 {
583 case kDoNot : limitedStr= StrDoNot;
break;
584 case kUnique : limitedStr = StrUnique;
break;
587 default : limitedStr = StrUndefined; break;
588 }
589 G4cout <<
" " << std::setw(15) << limitedStr <<
" ";
590 G4cout.precision(oldPrec);
591
592 G4ITNavigator *pNav= fpNavigator[ num ];
593 G4String WorldName( "Not-Set" );
594 if (pNav != nullptr)
595 {
596 G4VPhysicalVolume *pWorld= pNav->GetWorldVolume();
597 if( pWorld != nullptr )
598 {
600 }
601 }
602 G4cout <<
" " << WorldName ;
604 }
605}