// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: G4MultiLevelLocator.cc,v 1.5 2008/12/11 10:01:02 tnikitin Exp $ // GEANT4 tag $Name: geant4-09-03-beta-cand-01 $ // // Class G4MultiLevelLocator implementation // // 27.10.08 - Tatiana Nikitina. // --------------------------------------------------------------------------- #include #include "G4ios.hh" #include "G4MultiLevelLocator.hh" G4MultiLevelLocator::G4MultiLevelLocator(G4Navigator *theNavigator) : G4VIntersectionLocator(theNavigator) { // In case of too slow progress in finding Intersection Point // intermediates Points on the Track must be stored. // Initialise the array of Pointers [max_depth+1] to do this G4ThreeVector zeroV(0.0,0.0,0.0); for (G4int idepth=0; idepthApproxCurvePointV( CurrentA_PointVelocity, CurrentB_PointVelocity, CurrentE_Point, GetEpsilonStepFor()); // The above method is the key & most intuitive part ... #ifdef G4DEBUG_FIELD if( ApproxIntersecPointV.GetCurveLength() > CurrentB_PointVelocity.GetCurveLength() * (1.0 + tolerance) ) { G4cerr << "ERROR - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Intermediate F point is more advanced than" << " endpoint B." << G4endl; G4Exception("G4multiLevelLocator::EstimateIntersectionPoint()", "IntermediatePointConfusion", FatalException, "Intermediate F point is past end B point" ); } #endif G4ThreeVector CurrentF_Point= ApproxIntersecPointV.GetPosition(); // First check whether EF is small - then F is a good approx. point // Calculate the length and direction of the chord AF // G4ThreeVector ChordEF_Vector = CurrentF_Point - CurrentE_Point; if ( ChordEF_Vector.mag2() <= sqr(GetDeltaIntersectionFor()) ) { found_approximate_intersection = true; // Create the "point" return value // IntersectedOrRecalculatedFT = ApproxIntersecPointV; IntersectedOrRecalculatedFT.SetPosition( CurrentE_Point ); if ( GetAdjustementOfFoundIntersection() ) { // Try to Get Correction of IntersectionPoint using SurfaceNormal() // G4ThreeVector IP; G4ThreeVector MomentumDir=ApproxIntersecPointV.GetMomentumDirection(); G4bool goodCorrection = AdjustmentOfFoundIntersection(Point_A, CurrentE_Point, CurrentF_Point, MomentumDir, last_AF_intersection, IP, NewSafety, fPreviousSafety, fPreviousSftOrigin ); if ( goodCorrection ) { IntersectedOrRecalculatedFT = ApproxIntersecPointV; IntersectedOrRecalculatedFT.SetPosition(IP); } } // Note: in order to return a point on the boundary, // we must return E. But it is F on the curve. // So we must "cheat": we are using the position at point E // and the velocity at point F !!! // // This must limit the length we can allow for displacement! } else // E is NOT close enough to the curve (ie point F) { // Check whether any volumes are encountered by the chord AF // --------------------------------------------------------- // First relocate to restore any Voxel etc information // in the Navigator before calling ComputeStep() // GetNavigatorFor()->LocateGlobalPointWithinVolume( Point_A ); G4ThreeVector PointG; // Candidate intersection point G4double stepLengthAF; G4bool Intersects_AF = IntersectChord( Point_A, CurrentF_Point, NewSafety,fPreviousSafety, fPreviousSftOrigin, stepLengthAF, PointG ); last_AF_intersection = Intersects_AF; if( Intersects_AF ) { // G is our new Candidate for the intersection point. // It replaces "E" and we will repeat the test to see if // it is a good enough approximate point for us. // B <- F // E <- G // CurrentB_PointVelocity = ApproxIntersecPointV; CurrentE_Point = PointG; // By moving point B, must take care if current // AF has no intersection to try current FB!! // fin_section_depth[depth]=false; #ifdef G4VERBOSE if( fVerboseLevel > 3 ) { G4cout << "G4PiF::LI> Investigating intermediate point" << " at s=" << ApproxIntersecPointV.GetCurveLength() << " on way to full s=" << CurveEndPointVelocity.GetCurveLength() << G4endl; } #endif } else // not Intersects_AF { // In this case: // There is NO intersection of AF with a volume boundary. // We must continue the search in the segment FB! // GetNavigatorFor()->LocateGlobalPointWithinVolume( CurrentF_Point ); G4double stepLengthFB; G4ThreeVector PointH; // Check whether any volumes are encountered by the chord FB // --------------------------------------------------------- G4bool Intersects_FB = IntersectChord( CurrentF_Point, Point_B, NewSafety,fPreviousSafety, fPreviousSftOrigin, stepLengthFB, PointH ); if( Intersects_FB ) { // There is an intersection of FB with a volume boundary // H <- First Intersection of Chord FB // H is our new Candidate for the intersection point. // It replaces "E" and we will repeat the test to see if // it is a good enough approximate point for us. // Note that F must be in volume volA (the same as A) // (otherwise AF would meet a volume boundary!) // A <- F // E <- H // CurrentA_PointVelocity = ApproxIntersecPointV; CurrentE_Point = PointH; } else // not Intersects_FB { // There is NO intersection of FB with a volume boundary if(fin_section_depth[depth]) { // If B is the original endpoint, this means that whatever // volume(s) intersected the original chord, none touch the // smaller chords we have used. // The value of 'IntersectedOrRecalculatedFT' returned is // likely not valid // Check on real final_section or SubEndSection // if( ((Second_half)&&(depth==0)) || (first_section) ) { there_is_no_intersection = true; // real final_section } else { // end of subsection, not real final section // exit from the and go to the depth-1 level substep_no_p = param_substeps+2; // exit from the loop // but 'Second_half' is still true because we need to find // the 'CurrentE_point' for the next loop // Second_half = true; sub_final_section = true; } } else { if(depth==0) { // We must restore the original endpoint // CurrentA_PointVelocity = CurrentB_PointVelocity; // Got to B CurrentB_PointVelocity = CurveEndPointVelocity; SubStart_PointVelocity = CurrentA_PointVelocity; restoredFullEndpoint = true; } else { // We must restore the depth endpoint // CurrentA_PointVelocity = CurrentB_PointVelocity; // Got to B CurrentB_PointVelocity = *ptrInterMedFT[depth]; SubStart_PointVelocity = CurrentA_PointVelocity; restoredFullEndpoint = true; } } } // Endif (Intersects_FB) } // Endif (Intersects_AF) // Ensure that the new endpoints are not further apart in space // than on the curve due to different errors in the integration // G4double linDistSq, curveDist; linDistSq = ( CurrentB_PointVelocity.GetPosition() - CurrentA_PointVelocity.GetPosition() ).mag2(); curveDist = CurrentB_PointVelocity.GetCurveLength() - CurrentA_PointVelocity.GetCurveLength(); // Change this condition for very strict parameters of propagation // if( curveDist*curveDist*(1+2* GetEpsilonStepFor()) < linDistSq ) { // Re-integrate to obtain a new B // G4FieldTrack newEndPointFT= ReEstimateEndpoint( CurrentA_PointVelocity, CurrentB_PointVelocity, linDistSq, // to avoid recalculation curveDist ); G4FieldTrack oldPointVelB = CurrentB_PointVelocity; CurrentB_PointVelocity = newEndPointFT; if ( (fin_section_depth[depth]) // real final section &&( first_section || ((Second_half)&&(depth==0)) ) ) { recalculatedEndPoint = true; IntersectedOrRecalculatedFT = newEndPointFT; // So that we can return it, if it is the endpoint! } } if( curveDist < 0.0 ) { G4cerr << "ERROR - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Error in advancing propagation." << G4endl; fVerboseLevel = 5; // Print out a maximum of information printStatus( CurrentA_PointVelocity, CurrentB_PointVelocity, -1.0, NewSafety, substep_no ); G4cerr << " Point A (start) is " << CurrentA_PointVelocity << G4endl; G4cerr << " Point B (end) is " << CurrentB_PointVelocity << G4endl; G4cerr << " Curve distance is " << curveDist << G4endl; G4cerr << G4endl << "The final curve point is not further along" << " than the original!" << G4endl; if( recalculatedEndPoint ) { G4cerr << "Recalculation of EndPoint was called with fEpsStep= " << GetEpsilonStepFor() << G4endl; } G4cerr.precision(20); G4cerr << " Point A (Curve start) is " << CurveStartPointVelocity << G4endl; G4cerr << " Point B (Curve end) is " << CurveEndPointVelocity << G4endl; G4cerr << " Point A (Current start) is " << CurrentA_PointVelocity << G4endl; G4cerr << " Point B (Current end) is " << CurrentB_PointVelocity << G4endl; G4cerr << " Point S (Sub start) is " << SubStart_PointVelocity << G4endl; G4cerr << " Point E (Trial Point) is " << CurrentE_Point << G4endl; G4cerr << " Point F (Intersection) is " << ApproxIntersecPointV << G4endl; G4cerr << " LocateIntersection parameters are : Substep no= " << substep_no << G4endl; G4cerr << " Substep depth no= "<< substep_no_p << " Depth= " << depth << G4endl; G4Exception("G4MultiLevelLocator::EstimateIntersectionPoint()", "FatalError", FatalException, "Error in advancing propagation."); } if(restoredFullEndpoint) { fin_section_depth[depth] = restoredFullEndpoint; restoredFullEndpoint = false; } } // EndIf ( E is close enough to the curve, ie point F. ) // tests ChordAF_Vector.mag() <= maximum_lateral_displacement #ifdef G4DEBUG_LOCATE_INTERSECTION if( substep_no >= trigger_substepno_print ) { G4cout << "Difficulty in converging in " << "G4MultiLevelLocator::EstimateIntersectionPoint():" << G4endl << " Substep no = " << substep_no << G4endl; if( substep_no == trigger_substepno_print ) { printStatus( CurveStartPointVelocity, CurveEndPointVelocity, -1.0, NewSafety, 0); } G4cout << " State of point A: "; printStatus( CurrentA_PointVelocity, CurrentA_PointVelocity, -1.0, NewSafety, substep_no-1, 0); G4cout << " State of point B: "; printStatus( CurrentA_PointVelocity, CurrentB_PointVelocity, -1.0, NewSafety, substep_no); } #endif substep_no++; substep_no_p++; } while ( ( ! found_approximate_intersection ) && ( ! there_is_no_intersection ) && ( substep_no_p <= param_substeps) ); // UNTIL found or // failed param substep first_section = false; if( (!found_approximate_intersection) && (!there_is_no_intersection) ) { G4double did_len = std::abs( CurrentA_PointVelocity.GetCurveLength() - SubStart_PointVelocity.GetCurveLength()); G4double all_len = std::abs( CurrentB_PointVelocity.GetCurveLength() - SubStart_PointVelocity.GetCurveLength()); G4double stepLengthAB; G4ThreeVector PointGe; // Check if progress is too slow and if it possible to go deeper, // then halve the step if so // if( ( ( did_len )GetIntegrationDriver(); integrDriver->AccurateAdvance(start, Sub_len, GetEpsilonStepFor()); *ptrInterMedFT[depth] = start; CurrentB_PointVelocity = *ptrInterMedFT[depth]; // Adjust 'SubStartPoint' to calculate the 'did_length' in next loop // SubStart_PointVelocity = CurrentA_PointVelocity; // Find new trial intersection point needed at start of the loop // G4ThreeVector Point_A = CurrentA_PointVelocity.GetPosition(); G4ThreeVector SubE_point = CurrentB_PointVelocity.GetPosition(); GetNavigatorFor()->LocateGlobalPointWithinVolume(Point_A); G4bool Intersects_AB = IntersectChord(Point_A, SubE_point, NewSafety, fPreviousSafety, fPreviousSftOrigin,stepLengthAB, PointGe); if( Intersects_AB ) { last_AF_intersection = Intersects_AB; CurrentE_Point = PointGe; fin_section_depth[depth]=true; } else { // No intersection found for first part of curve // (CurrentA,InterMedPoint[depth]). Go to the second part // Second_half = true; } } // if did_len if( (Second_half)&&(depth!=0) ) { // Second part of curve (InterMed[depth],Intermed[depth-1]) ) // On the depth-1 level normally we are on the 'second_half' Second_half = true; // Find new trial intersection point needed at start of the loop // SubStart_PointVelocity = *ptrInterMedFT[depth]; CurrentA_PointVelocity = *ptrInterMedFT[depth]; CurrentB_PointVelocity = *ptrInterMedFT[depth-1]; // Ensure that the new endpoints are not further apart in space // than on the curve due to different errors in the integration // G4double linDistSq, curveDist; linDistSq = ( CurrentB_PointVelocity.GetPosition() - CurrentA_PointVelocity.GetPosition() ).mag2(); curveDist = CurrentB_PointVelocity.GetCurveLength() - CurrentA_PointVelocity.GetCurveLength(); if( curveDist*curveDist*(1+2*GetEpsilonStepFor() ) < linDistSq ) { // Re-integrate to obtain a new B // G4FieldTrack newEndPointFT= ReEstimateEndpoint( CurrentA_PointVelocity, CurrentB_PointVelocity, linDistSq, // to avoid recalculation curveDist ); G4FieldTrack oldPointVelB = CurrentB_PointVelocity; CurrentB_PointVelocity = newEndPointFT; if (depth==1) { recalculatedEndPoint = true; IntersectedOrRecalculatedFT = newEndPointFT; // So that we can return it, if it is the endpoint! } } G4ThreeVector Point_A = CurrentA_PointVelocity.GetPosition(); G4ThreeVector SubE_point = CurrentB_PointVelocity.GetPosition(); GetNavigatorFor()->LocateGlobalPointWithinVolume(Point_A); G4bool Intersects_AB = IntersectChord(Point_A, SubE_point, NewSafety, fPreviousSafety, fPreviousSftOrigin,stepLengthAB, PointGe); if( Intersects_AB ) { last_AF_intersection = Intersects_AB; CurrentE_Point = PointGe; } depth--; fin_section_depth[depth]=true; } } // if(!found_aproximate_intersection) } while ( ( ! found_approximate_intersection ) && ( ! there_is_no_intersection ) && ( substep_no <= max_substeps) ); // UNTIL found or failed if( substep_no > max_no_seen ) { max_no_seen = substep_no; if( max_no_seen > warn_substeps ) { trigger_substepno_print = max_no_seen-20; // Want to see last 20 steps } } if( ( substep_no >= max_substeps) && !there_is_no_intersection && !found_approximate_intersection ) { G4cerr << "WARNING - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Convergence is requiring too many substeps: " << substep_no << G4endl; G4cerr << " Abandoning effort to intersect. " << G4endl; G4cerr << " Information on start & current step follows in cout." << G4endl; G4cout << "WARNING - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Convergence is requiring too many substeps: " << substep_no << G4endl; G4cout << " Found intersection = " << found_approximate_intersection << G4endl << " Intersection exists = " << !there_is_no_intersection << G4endl; G4cout << " Start and Endpoint of Requested Step:" << G4endl; printStatus( CurveStartPointVelocity, CurveEndPointVelocity, -1.0, NewSafety, 0); G4cout << G4endl; G4cout << " 'Bracketing' starting and endpoint of current Sub-Step" << G4endl; printStatus( CurrentA_PointVelocity, CurrentA_PointVelocity, -1.0, NewSafety, substep_no-1); printStatus( CurrentA_PointVelocity, CurrentB_PointVelocity, -1.0, NewSafety, substep_no); G4cout << G4endl; #ifdef FUTURE_CORRECTION // Attempt to correct the results of the method // FIX - TODO if ( ! found_approximate_intersection ) { recalculatedEndPoint = true; // Return the further valid intersection point -- potentially A ?? // JA/19 Jan 2006 IntersectedOrRecalculatedFT = CurrentA_PointVelocity; G4cout << "WARNING - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Did not convergence after " << substep_no << " substeps." << G4endl; G4cout << " The endpoint was adjused to pointA resulting" << G4endl << " from the last substep: " << CurrentA_PointVelocity << G4endl; } #endif G4cout.precision( 10 ); G4double done_len = CurrentA_PointVelocity.GetCurveLength(); G4double full_len = CurveEndPointVelocity.GetCurveLength(); G4cout << "ERROR - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Undertaken only length: " << done_len << " out of " << full_len << " required." << G4endl; G4cout << " Remaining length = " << full_len - done_len << G4endl; G4Exception("G4MultiLevelLocator::EstimateIntersectionPoint()", "UnableToLocateIntersection", FatalException, "Too many substeps while trying to locate intersection."); } else if( substep_no >= warn_substeps ) { G4int oldprc= G4cout.precision( 10 ); G4cout << "WARNING - G4MultiLevelLocator::EstimateIntersectionPoint()" << G4endl << " Undertaken length: " << CurrentB_PointVelocity.GetCurveLength(); G4cout << " - Needed: " << substep_no << " substeps." << G4endl << " Warning level = " << warn_substeps << " and maximum substeps = " << max_substeps << G4endl; G4Exception("G4MultiLevelLocator::EstimateIntersectionPoint()", "DifficultyToLocateIntersection", JustWarning, "Many substeps while trying to locate intersection."); G4cout.precision( oldprc ); } return !there_is_no_intersection; // Success or failure }