74{
75 G4HadFinalState* finalState = nullptr;
76 G4int Z = aNucleus.GetZ_asInt();
77 if ( Z >= ZMAXHPE || Z < 1 ) { return finalState; }
78
79 G4int A = aNucleus.GetA_asInt();
80 fManagerHP->OpenReactionWhiteBoard();
81 fManagerHP->GetReactionWhiteBoard()->SetTargZ(Z);
82 fManagerHP->GetReactionWhiteBoard()->SetTargA(
A);
83
84 G4ParticleHPChannel* mod = theElastic[Z];
85 if ( nullptr == mod ) {
86 InitialiseOnFly();
87 if ( nullptr == mod ) { return finalState; }
88 }
89
90
91
93
94 fManagerHP->CloseReactionWhiteBoard();
95 return finalState;
96}
G4HadFinalState * ApplyYourself(const G4HadProjectile &theTrack, G4int isoNumber=-1, G4bool isElastic=false)