Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /* 26 /* 27 * =========================================== 27 * ============================================================================= 28 * 28 * 29 * Filename: CexmcStudiedPhysics.hh 29 * Filename: CexmcStudiedPhysics.hh 30 * 30 * 31 * Description: studied physics in the tar 31 * Description: studied physics in the target 32 * 32 * 33 * Version: 1.0 33 * Version: 1.0 34 * Created: 18.10.2009 16:10:52 34 * Created: 18.10.2009 16:10:52 35 * Revision: none 35 * Revision: none 36 * Compiler: gcc 36 * Compiler: gcc 37 * 37 * 38 * Author: Alexey Radkov (), 38 * Author: Alexey Radkov (), 39 * Company: PNPI 39 * Company: PNPI 40 * 40 * 41 * =========================================== 41 * ============================================================================= 42 */ 42 */ 43 43 44 #ifndef CEXMC_STUDIED_PHYSICS_HH 44 #ifndef CEXMC_STUDIED_PHYSICS_HH 45 #define CEXMC_STUDIED_PHYSICS_HH 45 #define CEXMC_STUDIED_PHYSICS_HH 46 46 47 #include <G4VPhysicsConstructor.hh> 47 #include <G4VPhysicsConstructor.hh> 48 #include <G4ProcessManager.hh> 48 #include <G4ProcessManager.hh> 49 #include <G4ParticleDefinition.hh> 49 #include <G4ParticleDefinition.hh> 50 #include "CexmcFakeCrossSectionData.hh" 50 #include "CexmcFakeCrossSectionData.hh" 51 #include "CexmcStudiedProcess.hh" 51 #include "CexmcStudiedProcess.hh" 52 #include "CexmcPhysicsManager.hh" 52 #include "CexmcPhysicsManager.hh" 53 #include "CexmcProductionModel.hh" 53 #include "CexmcProductionModel.hh" 54 54 55 class G4VProcess; 55 class G4VProcess; 56 56 57 57 58 template < typename Process > 58 template < typename Process > 59 class CexmcStudiedPhysics : public G4VPhysics 59 class CexmcStudiedPhysics : public G4VPhysicsConstructor 60 { 60 { 61 public: 61 public: 62 explicit CexmcStudiedPhysics( CexmcPhy 62 explicit CexmcStudiedPhysics( CexmcPhysicsManager * physicsManager ); 63 63 64 virtual ~CexmcStudiedPhysics(); 64 virtual ~CexmcStudiedPhysics(); 65 65 66 public: 66 public: 67 void ConstructParti 67 void ConstructParticle( void ); 68 68 69 void ConstructProce 69 void ConstructProcess( void ); 70 70 71 public: 71 public: 72 CexmcProductionModel * GetProductionM 72 CexmcProductionModel * GetProductionModel( void ); 73 73 74 protected: 74 protected: 75 virtual void ApplyInteractionModel( G 75 virtual void ApplyInteractionModel( G4VProcess * process ); 76 76 77 protected: 77 protected: 78 CexmcPhysicsManager * physicsManager 78 CexmcPhysicsManager * physicsManager; 79 79 80 CexmcProductionModel * productionMode 80 CexmcProductionModel * productionModel; 81 81 82 private: 82 private: 83 G4bool wasActivated; 83 G4bool wasActivated; 84 }; 84 }; 85 85 86 86 87 template < typename Process > 87 template < typename Process > 88 CexmcStudiedPhysics< Process >::CexmcStudiedPh 88 CexmcStudiedPhysics< Process >::CexmcStudiedPhysics( 89 CexmcPhysi << 89 CexmcPhysicsManager * physicsManager ) : 90 G4VPhysicsConstructor( "studiedPhysics" ), << 90 G4VPhysicsConstructor( "studiedPhysics" ), physicsManager( physicsManager ), 91 physicsManager( physicsManager_ ), product << 91 productionModel( NULL ), wasActivated( false ) 92 wasActivated( false ) << 93 { 92 { 94 } 93 } 95 94 96 95 97 template < typename Process > 96 template < typename Process > 98 CexmcStudiedPhysics< Process >::~CexmcStudiedP 97 CexmcStudiedPhysics< Process >::~CexmcStudiedPhysics() 99 { 98 { 100 } 99 } 101 100 102 101 103 template < typename Process > 102 template < typename Process > 104 void CexmcStudiedPhysics< Process >::Construc 103 void CexmcStudiedPhysics< Process >::ConstructParticle( void ) 105 { 104 { 106 if ( productionModel ) 105 if ( productionModel ) 107 productionModel->GetIncidentParticle() 106 productionModel->GetIncidentParticle(); 108 } 107 } 109 108 110 109 111 template < typename Process > 110 template < typename Process > 112 void CexmcStudiedPhysics< Process >::Construc 111 void CexmcStudiedPhysics< Process >::ConstructProcess( void ) 113 { 112 { 114 if ( wasActivated ) 113 if ( wasActivated ) 115 return; 114 return; 116 115 117 wasActivated = true; 116 wasActivated = true; 118 117 119 Process * process( new Process ); 118 Process * process( new Process ); 120 119 121 process->AddDataSet( new CexmcFakeCrossSec 120 process->AddDataSet( new CexmcFakeCrossSectionData ); 122 121 123 CexmcStudiedProcess * studiedProcess( new 122 CexmcStudiedProcess * studiedProcess( new CexmcStudiedProcess( 124 physicsManager 123 physicsManager, process->GetProcessType() ) ); 125 124 126 ApplyInteractionModel( process ); 125 ApplyInteractionModel( process ); 127 126 128 studiedProcess->RegisterProcess( process ) 127 studiedProcess->RegisterProcess( process ); 129 128 130 G4ParticleDefinition * particle( NULL ); 129 G4ParticleDefinition * particle( NULL ); 131 130 132 if ( productionModel ) 131 if ( productionModel ) 133 particle = productionModel->GetInciden 132 particle = productionModel->GetIncidentParticle(); 134 133 135 if ( particle ) 134 if ( particle ) 136 { 135 { 137 G4ProcessManager * processManager( pa 136 G4ProcessManager * processManager( particle->GetProcessManager() ); 138 processManager->AddDiscreteProcess( st 137 processManager->AddDiscreteProcess( studiedProcess ); 139 } 138 } 140 } 139 } 141 140 142 141 143 template < typename Process > 142 template < typename Process > 144 CexmcProductionModel * CexmcStudiedPhysics< P 143 CexmcProductionModel * CexmcStudiedPhysics< Process >::GetProductionModel( 145 144 void ) 146 { 145 { 147 return productionModel; 146 return productionModel; 148 } 147 } 149 148 150 149 151 template < typename Process > 150 template < typename Process > 152 void CexmcStudiedPhysics< Process >::ApplyInt 151 void CexmcStudiedPhysics< Process >::ApplyInteractionModel( G4VProcess * ) 153 { 152 { 154 } 153 } 155 154 156 155 157 #endif 156 #endif 158 157 159 158