390{
391 G4ping debug("debug_G4BinaryCascade");
392#ifdef debug_BIC_Propagate
393 G4cout <<
"G4BinaryCascade Propagate starting -------------------------------------------------------" <<
G4endl;
394#endif
395
399 theCurrentTime=0;
402
403 ClearAndDestroy(&theCapturedList);
404 ClearAndDestroy(&theSecondaryList);
405 theSecondaryList.clear();
406 ClearAndDestroy(&theFinalState);
407 std::vector<G4KineticTrack *>::iterator iter;
408 theCollisionMgr->ClearAndDestroy();
409
410 theCutOnP=90*MeV;
414
415
416 BuildTargetList();
417
418#ifdef debug_BIC_GetExcitationEnergy
419 G4cout <<
"ExcitationEnergy0 " << GetExcitationEnergy() <<
G4endl;
420#endif
421
423
424 G4bool success = BuildLateParticleCollisions(secondaries);
425 if (! success )
426 {
427 products=HighEnergyModelFSProducts(products, secondaries);
428 ClearAndDestroy(secondaries);
429 delete secondaries;
430
431#ifdef debug_G4BinaryCascade
432 G4cout <<
"G4BinaryCascade::Propagate: warning - high energy model failed energy conservation, returning unchanged high energy final state" <<
G4endl;
433#endif
434
435 return products;
436 }
437
438
441
442
443 FindCollisions(&theSecondaryList);
444
445
446 if(theCollisionMgr->Entries() == 0 )
447 {
448
449 delete products;
450#ifdef debug_BIC_return
452#endif
453 return nullptr;
454 }
455
456
457
458
459
460 G4bool haveProducts =
false;
461#ifdef debug_BIC_Propagate_Collisions
462 G4int collisionCount=0;
463#endif
464 G4int collisionLoopMaxCount=1000000;
465 while(theCollisionMgr->Entries() > 0 && currentZ && --collisionLoopMaxCount>0)
466 {
467 if(Absorb()) {
468 haveProducts = true;
469 }
470 if(Capture()) {
471 haveProducts = true;
472 }
473
474
475
476 if(theCollisionMgr->Entries() > 0)
477 {
478 G4CollisionInitialState *
479 nextCollision = theCollisionMgr->GetNextCollision();
480#ifdef debug_BIC_Propagate_Collisions
481 G4cout <<
" NextCollision * , Time, curtime = " << nextCollision <<
" "
484#endif
486 {
487
488 if (theCollisionMgr->GetNextCollision() != nextCollision )
489 {
490 nextCollision = nullptr;
491 }
492 }
493
494
495 if( nextCollision )
496 {
497 if (ApplyCollision(nextCollision))
498 {
499
500 haveProducts = true;
501#ifdef debug_BIC_Propagate_Collisions
502 collisionCount++;
503#endif
504
505 } else {
506
507 theCollisionMgr->RemoveCollision(nextCollision);
508 }
509 }
510 }
511 }
512
513
514
516 for(iter = theTargetList.begin(); iter != theTargetList.end(); ++iter)
517 {
519 }
520 if ( ! theTargetList.size() || ! nProtons ){
521
522 products = FillVoidNucleusProducts(products);
523#ifdef debug_BIC_return
524 G4cout <<
"return @ Z=0 after collision loop "<<
G4endl;
525 PrintKTVector(&theSecondaryList,std::string(" theSecondaryList"));
526 G4cout <<
"theTargetList size: " << theTargetList.size() <<
G4endl;
527 PrintKTVector(&theTargetList,std::string(" theTargetList"));
528 PrintKTVector(&theCapturedList,std::string(" theCapturedList"));
529
530 G4cout <<
" ExcitE be4 Correct : " <<GetExcitationEnergy() <<
G4endl;
531 G4cout <<
" Mom Transfered to nucleus : " << theMomentumTransfer <<
" " << theMomentumTransfer.mag() <<
G4endl;
532 PrintKTVector(&theFinalState,std::string(" FinalState uncorrected"));
533 G4cout <<
"returned products: " << products->size() <<
G4endl;
536#endif
537
538 return products;
539 }
540
541
542 if(Absorb()) {
543 haveProducts = true;
544
545 }
546
547 if(Capture()) {
548 haveProducts = true;
549
550 }
551
552 if(!haveProducts)
553 {
554#ifdef debug_BIC_return
556#endif
557 return products;
558 }
559
560
561#ifdef debug_BIC_Propagate
562 G4cout <<
" Momentum transfer to Nucleus " << theMomentumTransfer <<
" " << theMomentumTransfer.mag() <<
G4endl;
564#endif
565
566 StepParticlesOut();
568
569
570 if ( theSecondaryList.size() > 0 )
571 {
572#ifdef debug_G4BinaryCascade
573 G4cerr <<
"G4BinaryCascade: Warning, have active particles at end" <<
G4endl;
574 PrintKTVector(&theSecondaryList, "active particles @ end added to theFinalState");
575#endif
576
577 for ( iter =theSecondaryList.begin(); iter != theSecondaryList.end(); ++iter)
578 {
579 theFinalState.push_back(*iter);
580 }
581 theSecondaryList.clear();
582
583 }
584 while ( theCollisionMgr->Entries() > 0 )
585 {
586#ifdef debug_G4BinaryCascade
587 G4cerr <<
" Warning: remove left over collision(s) " <<
G4endl;
588#endif
589 theCollisionMgr->RemoveCollision(theCollisionMgr->GetNextCollision());
590 }
591
592#ifdef debug_BIC_Propagate_Excitation
593
594 PrintKTVector(&theSecondaryList,std::string(" theSecondaryList"));
595 G4cout <<
"theTargetList size: " << theTargetList.size() <<
G4endl;
596
597 PrintKTVector(&theCapturedList,std::string(" theCapturedList"));
598
599 G4cout <<
" ExcitE be4 Correct : " <<GetExcitationEnergy() <<
G4endl;
600 G4cout <<
" Mom Transfered to nucleus : " << theMomentumTransfer <<
" " << theMomentumTransfer.mag() <<
G4endl;
601 PrintKTVector(&theFinalState,std::string(" FinalState uncorrected"));
602#endif
603
604
605
606
607 G4double ExcitationEnergy=GetExcitationEnergy();
608
609#ifdef debug_BIC_Propagate_finals
610 PrintKTVector(&theFinalState,std::string(" FinalState be4 corr"));
611 G4cout <<
" Excitation Energy prefinal, #collisions:, out, captured "
612 << ExcitationEnergy << " "
613 << collisionCount << " "
614 << theFinalState.size() << " "
615 << theCapturedList.size()<<
G4endl;
616#endif
617
618 if (ExcitationEnergy < 0 )
619 {
620 G4int maxtry=5, ntry=0;
621 do {
622 CorrectFinalPandE();
623 ExcitationEnergy=GetExcitationEnergy();
624 } while ( ++ntry < maxtry && ExcitationEnergy < 0 );
625 }
627
628#ifdef debug_BIC_Propagate_finals
629 PrintKTVector(&theFinalState,std::string(" FinalState corrected"));
630 G4cout <<
" Excitation Energy final, #collisions:, out, captured "
631 << ExcitationEnergy << " "
632 << collisionCount << " "
633 << theFinalState.size() << " "
634 << theCapturedList.size()<<
G4endl;
635#endif
636
637
638 if ( ExcitationEnergy < 0. )
639 {
640 #ifdef debug_G4BinaryCascade
641 G4cerr <<
"G4BinaryCascade-Warning: negative excitation energy ";
643 PrintKTVector(&theFinalState,std::string("FinalState"));
644 PrintKTVector(&theCapturedList,std::string("captured"));
645 G4cout <<
"negative ExE:Final 4Momentum .mag: " << GetFinal4Momentum()
646 <<
" "<< GetFinal4Momentum().mag()<<
G4endl
647 << "negative ExE:FinalNucleusMom .mag: " << GetFinalNucleusMomentum()
648 <<
" "<< GetFinalNucleusMomentum().mag()<<
G4endl;
649 #endif
650 #ifdef debug_BIC_return
651 G4cout <<
" negative Excitation E return empty products " << products <<
G4endl;
653 #endif
654
655 ClearAndDestroy(products);
656 return products;
657 }
658
660
661
662 G4DecayKineticTracks
decay(&theFinalState);
664
665 products= ProductsAddFinalState(products, theFinalState);
666
667 products= ProductsAddPrecompound(products, precompoundProducts);
668
669
670
671
672 thePrimaryEscape = true;
673
674 #ifdef debug_BIC_return
676
677 #endif
678
679 return products;
680}
#define _CheckChargeAndBaryonNumber_(val)
#define _DebugEpConservation(val)
G4GLOB_DLL std::ostream G4cout
G4double GetCollisionTime(void)
static G4Proton * Proton()
ParticleList decay(Cluster *const c)
Carries out a cluster decay.