Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // G4QSSDriverCreator implementation 27 // 28 // Author: J.Apostolakis (CERN) - 2021-2023 29 // ------------------------------------------- 30 31 #include "G4QSSDriverCreator.hh" 32 33 #include "G4MagIntegratorStepper.hh" 34 #include "G4VIntegrationDriver.hh" 35 36 #include "G4QSSDriver.hh" 37 #include "G4QSStepper.hh" 38 #include "G4QSS2.hh" 39 #include "G4QSS3.hh" 40 41 #include "G4Mag_UsualEqRhs.hh" 42 43 #include <cassert> 44 45 G4VIntegrationDriver* 46 G4QSSDriverCreator::CreateDriver( G4MagIntegra 47 { 48 G4VIntegrationDriver* driver = nullptr; 49 // pStepper->build_driver(stepMinimum, true) 50 auto qss2stepper = dynamic_cast<G4QSStepper< 51 if( qss2stepper != nullptr ) { 52 // driver = new G4QSSDriver<G4QSStepper<G4 53 driver = CreateDriver( qss2stepper ); 54 } 55 auto qss3stepper = dynamic_cast<G4QSStepper< 56 if( qss3stepper != nullptr ) { 57 // driver = new G4QSSDriver<G4QSStepper<G4 58 driver= CreateDriver( qss3stepper ); 59 } 60 return driver; 61 } 62 63 G4QSSDriver<G4QSStepper<G4QSS2>>* 64 G4QSSDriverCreator::CreateDriver( G4QSStep 65 { 66 G4cout << "---- G4QSSDriver<G4QSS2>* G4QSSDr 67 return new G4QSSDriver<G4QSStepper<G4QSS2>>( 68 } 69 70 static constexpr G4int numOfVars= 6; 71 72 G4QSSDriver<G4QSStepper<G4QSS3>>* 73 G4QSSDriverCreator::CreateDriver( G4QSStepp 74 { 75 G4cout << "---- G4QSSDriver<G4QSS3>* G4QSSDr 76 return new G4QSSDriver<G4QSStepper<G4QSS3>>( 77 } 78 79 G4QSStepper<G4QSS2>* G4QSSDriverCreator::G4QSS 80 { 81 G4cout << "---- G4QSStepper<G4QSS2>* CreateQ 82 return G4QSStepper<G4QSS2>::build_QSS2( Equa 83 } 84 85 G4QSStepper<G4QSS3>* G4QSSDriverCreator::Creat 86 { 87 G4cout << "---- G4QSStepper<G4QSS3>* CreateQ 88 return G4QSStepper<G4QSS3>::build_QSS3( Equa 89 } 90 91 G4VIntegrationDriver* G4QSSDriverCreator::Crea 92 { 93 assert( dynamic_cast<G4Mag_UsualEqRhs*>(Equa 94 // assert( Equation->GetNumberOfVariables() 95 96 auto qss2stepper = G4QSStepper<G4QSS2>::buil 97 return CreateDriver( qss2stepper ); 98 } 99 100 G4VIntegrationDriver* G4QSSDriverCreator:: 101 CreateQss3Driver(G4Mag_EqRhs *Equation) 102 { 103 assert( dynamic_cast<G4Mag_UsualEqRhs*>(Equa 104 // assert( Equation->GetNumberOfVariables() 105 106 auto qss3stepper = G4QSStepper<G4QSS3>::buil 107 return CreateDriver( qss3stepper ); 108 } 109