77{
79 InitializeForNewTrack();
82
83#ifdef G4VERBOSE
84 if (fVerbose != 0) {
85 G4cout <<
"________________________________________________________________"
86 "_______"
88 G4cout <<
"G4DNAIndependentReactionTimeStepper::CalculateStep" <<
G4endl;
89 G4cout <<
"Check done for molecule : " << pMoleculeA->GetName() <<
" (" << trackA.
GetTrackID()
91 }
92#endif
93
94 auto pMolConfA = pMoleculeA->GetMolecularConfiguration();
95
96 const auto pReactantList = fMolecularReactionTable->CanReactWith(pMolConfA);
97
98 if (pReactantList == nullptr) {
99 if(fVerbose > 1) {
101 msg << "G4DNAIndependentReactionTimeStepper::CalculateStep will return infinity "
102 "for the reaction because the molecule "
103 << pMoleculeA->GetName() << " does not have any reactants given in the reaction table."
105 G4Exception(
"G4DNAIndependentReactionTimeStepper::CalculateStep",
106 "G4DNAIndependentReactionTimeStepper03",
JustWarning, msg);
107 }
109 }
110
111 auto nbReactives = (
G4int)pReactantList->size();
112
113 if (nbReactives == 0) {
114 if(fVerbose != 0){
116 msg << "G4DNAIndependentReactionTimeStepper::CalculateStep will "
117 "return infinity "
118 "for the reaction because the molecule "
119 << pMoleculeA->GetName() << " does not have any reactants given in the reaction table."
120 << "This message can also result from a wrong implementation of "
121 "the reaction table."
123 G4Exception(
"G4DNAIndependentReactionTimeStepper::CalculateStep",
124 "G4DNAIndependentReactionTimeStepper04",
JustWarning, msg);
125 }
127 }
128 fReactants = std::make_shared<vector<G4Track*>>();
129 fReactionModel->Initialise(pMolConfA, trackA);
130 for (
G4int i = 0; i < nbReactives; ++i) {
131 auto pMoleculeB = (*pReactantList)[i];
132 G4int key = pMoleculeB->GetMoleculeID();
133
134
136
137
138 const G4double Reff = fReactionModel->GetReactionRadius(i);
139 std::vector<std::pair<G4TrackList::iterator, G4double>> resultIndices;
140 resultIndices.clear();
142
143 if (resultIndices.empty()) {
144 continue;
145 }
146 for (auto& it : resultIndices) {
147 G4Track* pTrackB = *(std::get<0>(it));
148
149 if (pTrackB == &trackA) {
150 continue;
151 }
152 if (pTrackB == nullptr) {
154 exceptionDescription << "No trackB no valid";
156 "G4DNAIndependentReactionTimeStepper"
157 "::CalculateStep()",
158 "G4DNAIndependentReactionTimeStepper007",
FatalException, exceptionDescription);
159 }
160 else {
161 if (fCheckedTracks.find(pTrackB->
GetTrackID()) != fCheckedTracks.end()) {
162 continue;
163 }
164
165 Utils utils(trackA, *pTrackB);
166
168 auto pMolConfB = pMolB->GetMolecularConfiguration();
170 if (distance * distance < Reff * Reff) {
171 auto reactionData = fMolecularReactionTable->GetReactionData(pMolConfA, pMolConfB);
174 if (!fHasAlreadyReachedNullTime) {
176 fHasAlreadyReachedNullTime = true;
177 }
179 CheckAndRecordResults(utils);
180 }
181 }
182 }
183 else {
184 G4double tempMinET = GetTimeToEncounter(trackA, *pTrackB);
186 continue;
187 }
189 continue;
190 }
193 CheckAndRecordResults(utils);
194 }
195 }
196 }
197 }
198
199#ifdef G4VERBOSE
200 if (fVerbose != 0) {
201 G4cout <<
"G4DNAIndependentReactionTimeStepper::CalculateStep will finally "
202 "return :"
204
205 if (fVerbose > 1) {
206 G4cout <<
"Selected reactants for trackA: " << pMoleculeA->GetName() <<
" ("
208
209 vector<G4Track*>::iterator it;
211 G4Track* trackB = *it;
213 }
215 }
216 }
217#endif
219}
G4Molecule * GetMolecule(const G4Track &track)
G4GLOB_DLL std::ostream G4cout
static G4double GetRCutOff()
const G4String & GetName() const override
static G4OctreeFinder * Instance()
void FindNearestInRange(const G4Track &track, const int &key, G4double R, std::vector< std::pair< typename CONTAINER::iterator, G4double > > &result, G4bool isSort=false) const
static G4Scheduler * Instance()
const G4ThreeVector & GetPosition() const
static G4ThreadLocal G4double fUserMinTimeStep
G4double fSampledMinTimeStep