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 // $Id: G4FastSimulationManagerProcess.hh,v 1.16 2007-11-30 18:05:14 mverderi Exp $ >> 28 // GEANT4 tag $Name: not supported by cvs2svn $ 27 // 29 // 28 // << 30 // 29 //-------------------------------------------- 31 //--------------------------------------------------------------- 30 // 32 // 31 // G4FastSimulationManagerProcess.hh 33 // G4FastSimulationManagerProcess.hh 32 // 34 // 33 // Description: 35 // Description: 34 // The process that triggers parameterised 36 // The process that triggers parameterised simulations if any. 35 // 37 // 36 // History: 38 // History: 37 // Feb 98: Parallel geometry sensitivity. Mor 39 // Feb 98: Parallel geometry sensitivity. MoraDeFreitas. 38 // Oct 97: "Fast" replaces "Parameterisation" << 40 // Oct 97: "Fast" replaces "Parameterisation" in class/method names. 39 // (release B.00 for parameterisation 41 // (release B.00 for parameterisation). MoraDeFreitas. 40 // Aug 97: First implementation. Verderi && M 42 // Aug 97: First implementation. Verderi && MoraDeFreitas. 41 // Apr 98: modified for new particle change. 43 // Apr 98: modified for new particle change. H.Kurashige 42 // Oct 06: Move to parallel geometry scheme. 44 // Oct 06: Move to parallel geometry scheme. M. Verderi 43 // Nov 06: name xxx81 is given for this relea 45 // Nov 06: name xxx81 is given for this release. "81" will be 44 // removed @ next maj. rel. so that t 46 // removed @ next maj. rel. so that this process becomes 45 // the standard one. 47 // the standard one. 46 // May 07: remove "81" tags, to migrate to 9. 48 // May 07: remove "81" tags, to migrate to 9.0. 47 // 49 // 48 //-------------------------------------------- 50 //--------------------------------------------------------------- 49 51 >> 52 50 #ifndef G4FastSimulationManagerProcess_hh 53 #ifndef G4FastSimulationManagerProcess_hh 51 #define G4FastSimulationManagerProcess_hh 54 #define G4FastSimulationManagerProcess_hh 52 55 >> 56 #include "globals.hh" >> 57 #include "G4VProcess.hh" 53 #include "G4FastSimulationManager.hh" 58 #include "G4FastSimulationManager.hh" 54 #include "G4FastSimulationProcessType.hh" 59 #include "G4FastSimulationProcessType.hh" 55 #include "G4FieldTrack.hh" << 56 #include "G4Navigator.hh" << 57 #include "G4Step.hh" 60 #include "G4Step.hh" 58 #include "G4VParticleChange.hh" << 61 #include "G4Navigator.hh" 59 #include "G4VPhysicalVolume.hh" 62 #include "G4VPhysicalVolume.hh" 60 #include "G4VProcess.hh" << 63 #include "G4VParticleChange.hh" 61 #include "globals.hh" << 64 #include "G4FieldTrack.hh" 62 class G4PathFinder; 65 class G4PathFinder; 63 class G4TransportationManager; 66 class G4TransportationManager; 64 67 65 // ------------------------------------------- 68 // --------------------------------------------------------------------- 66 // 69 // 67 // G4FastSimulationManagerProcess class 70 // G4FastSimulationManagerProcess class 68 // 71 // 69 // ------------------------------------------- 72 // --------------------------------------------------------------------- 70 73 >> 74 71 // Class Description: 75 // Class Description: 72 // -- G4VProcess providing the interface betwe 76 // -- G4VProcess providing the interface between the tracking and the fast simulation. 73 // 77 // 74 78 75 class G4FastSimulationManagerProcess : public 79 class G4FastSimulationManagerProcess : public G4VProcess 76 { 80 { 77 public: << 81 public: 78 // Constructor for parameterisation in mas << 82 79 G4FastSimulationManagerProcess(const G4Str << 83 // ------------------------- 80 G4ProcessTy << 84 // Constructor/Destructor: 81 << 85 // ------------------------- 82 // -- Contructors for parameterisation att << 86 // -- Constructor for parameterisation in mass geometry 83 // -- Can also be used for the mass geomet << 87 G4FastSimulationManagerProcess(const G4String& processName = "G4FastSimulationManagerProcess", 84 // -- World volume specified by name or po << 88 G4ProcessType theType = fParameterisation); 85 G4FastSimulationManagerProcess(const G4Str << 89 86 G4ProcessTy << 90 // -- Contructors for parameterisation attached a parallel geometry. 87 G4FastSimulationManagerProcess(const G4Str << 91 // -- Can also be used for the mass geometry, providing world volume name. 88 G4ProcessTy << 92 // -- World volume specified by name or pointer. 89 << 93 G4FastSimulationManagerProcess(const G4String& processName, 90 ~G4FastSimulationManagerProcess() override << 94 const G4String& worldVolumeName, 91 << 95 G4ProcessType theType = fParameterisation); 92 // ----------------------- << 96 G4FastSimulationManagerProcess(const G4String& processName, 93 // User access methods: << 97 G4VPhysicalVolume* worldVolume, 94 // ----------------------- << 98 G4ProcessType theType = fParameterisation); 95 G4VPhysicalVolume* GetWorldVolume() const << 99 96 << 100 virtual ~G4FastSimulationManagerProcess(); 97 // -- Set new world volume to the process << 101 98 void SetWorldVolume(G4String); << 102 // ----------------------- 99 void SetWorldVolume(G4VPhysicalVolume*); << 103 // User access methods: 100 << 104 // ----------------------- 101 // --------------------------------------- << 105 G4VPhysicalVolume* GetWorldVolume() const {return fWorldVolume;} 102 // Process interface << 106 103 // --------------------------------------- << 107 // -- Set new world volume to the process 104 << 108 void SetWorldVolume(G4String ); 105 // -- Start/End tracking: << 109 void SetWorldVolume(G4VPhysicalVolume*); 106 void StartTracking(G4Track*) override; << 110 107 void EndTracking() override; << 111 108 << 112 // -------------------------------------------------------------- 109 // -- PostStep methods: << 113 // Process interface 110 G4double PostStepGetPhysicalInteractionLen << 114 // -------------------------------------------------------------- 111 << 115 112 << 116 // -- Start/End tracking: 113 G4VParticleChange* PostStepDoIt(const G4Tr << 117 void StartTracking(G4Track*); 114 << 118 void EndTracking(); 115 // -- Responsible for limiting the step on << 119 116 G4double AlongStepGetPhysicalInteractionLe << 120 117 << 121 // -- PostStep methods: 118 << 122 G4double PostStepGetPhysicalInteractionLength(const G4Track& track, 119 << 123 G4double previousStepSize, 120 G4VParticleChange* AlongStepDoIt(const G4T << 124 G4ForceCondition* condition); 121 << 125 122 // -- AtRest methods (still there after ma << 126 G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step& ); 123 G4double AtRestGetPhysicalInteractionLengt << 127 124 << 128 // -- Responsible for limiting the step on ghost boundaries: 125 G4VParticleChange* AtRestDoIt(const G4Trac << 129 G4double AlongStepGetPhysicalInteractionLength(const G4Track& track, 126 << 130 G4double previousStepSize, 127 // -- debug: << 131 G4double currentMinimumStep, 128 [[deprecated("obsolete: will be remove in << 132 G4double& proposedSafety, 129 << 133 G4GPILSelection* selection); 130 private: << 134 G4VParticleChange* AlongStepDoIt(const G4Track& track, 131 //-- would be better to my taste to have " << 135 const G4Step& step); 132 // at compilation << 136 133 G4VPhysicalVolume* fWorldVolume; << 137 134 << 138 135 G4bool fIsTrackingTime; << 139 // -- AtRest methods (still there after many years of no use...): 136 G4bool fIsFirstStep; << 140 G4double AtRestGetPhysicalInteractionLength(const G4Track&, 137 G4Navigator* fGhostNavigator; << 141 G4ForceCondition*); 138 G4int fGhostNavigatorIndex; << 142 139 G4bool fIsGhostGeometry; << 143 G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&); 140 G4double fGhostSafety; << 144 141 G4FieldTrack fFieldTrack; << 145 142 << 146 143 G4FastSimulationManager* fFastSimulationMa << 147 144 G4bool fFastSimulationTrigger; << 148 145 G4VParticleChange fDummyParticleChange; << 149 // -- debug: 146 G4PathFinder* fPathFinder; << 150 void Verbose() const; 147 G4TransportationManager* fTransportationMa << 151 >> 152 >> 153 private: >> 154 //-- would be better to my taste to have "const G4VPhysicalVolume* fWorldVolume;", but clashes at compilation >> 155 G4VPhysicalVolume* fWorldVolume; >> 156 >> 157 G4bool fIsTrackingTime; >> 158 G4bool fIsFirstStep; >> 159 G4Navigator* fGhostNavigator; >> 160 G4int fGhostNavigatorIndex; >> 161 G4bool fIsGhostGeometry; >> 162 G4double fGhostSafety; >> 163 G4bool fOnBoundary; >> 164 G4FieldTrack fFieldTrack; >> 165 >> 166 >> 167 G4FastSimulationManager* fFastSimulationManager; >> 168 G4bool fFastSimulationTrigger; >> 169 G4VParticleChange fDummyParticleChange; >> 170 G4PathFinder* fPathFinder; >> 171 G4TransportationManager* fTransportationManager; 148 }; 172 }; 149 173 150 #endif 174 #endif 151 175