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 // This example is provided by the Geant4-DNA 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained us 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collabo 28 // shall cite the following Geant4-DNA collaboration publication: 29 // Med. Phys. 37 (2010) 4692-4708 29 // Med. Phys. 37 (2010) 4692-4708 30 // J. Comput. Phys. 274 (2014) 841-882 30 // J. Comput. Phys. 274 (2014) 841-882 31 // The Geant4-DNA web site is available at htt 31 // The Geant4-DNA web site is available at http://geant4-dna.org 32 // 32 // 33 // 33 // 34 // $Id$ 34 // $Id$ 35 // 35 // 36 /// \file PrimaryKiller.hh 36 /// \file PrimaryKiller.hh 37 /// \brief Definition of the PrimaryKiller cla 37 /// \brief Definition of the PrimaryKiller class 38 38 >> 39 39 #ifndef CHEM6_PrimaryKiller_h 40 #ifndef CHEM6_PrimaryKiller_h 40 #define CHEM6_PrimaryKiller_h 1 41 #define CHEM6_PrimaryKiller_h 1 41 42 42 #include <G4THitsMap.hh> << 43 #include <G4UImessenger.hh> << 44 #include <G4VPrimitiveScorer.hh> 43 #include <G4VPrimitiveScorer.hh> >> 44 #include <G4UImessenger.hh> >> 45 #include <G4THitsMap.hh> 45 46 46 class G4UIcmdWithADoubleAndUnit; 47 class G4UIcmdWithADoubleAndUnit; 47 class G4UIcmdWith3VectorAndUnit; 48 class G4UIcmdWith3VectorAndUnit; 48 49 49 /** \file PrimaryKiller.hh*/ 50 /** \file PrimaryKiller.hh*/ 50 51 51 // Description: 52 // Description: 52 // Kill the primary particle: 53 // Kill the primary particle: 53 // - either after a given energy loss 54 // - either after a given energy loss 54 // - or after the primary particle has reach 55 // - or after the primary particle has reached a given energy 55 56 56 class PrimaryKiller : public G4VPrimitiveScore << 57 class PrimaryKiller : public G4VPrimitiveScorer, >> 58 public G4UImessenger 57 { 59 { 58 private: << 60 private: 59 double fELoss; // cumulated energy loss b << 61 double fELoss; // cumulated energy loss by the primary 60 << 62 61 double fELossRange_Min; // fELoss from wh << 63 double fELossRange_Min; // fELoss from which the primary is killed 62 double fELossRange_Max; // fELoss from wh << 64 double fELossRange_Max; // fELoss from which the event is aborted 63 double fKineticE_Min; // kinetic energy b << 65 double fKineticE_Min; // kinetic energy below which the primary is killed 64 G4ThreeVector fPhantomSize; << 66 G4ThreeVector fPhantomSize; 65 << 67 66 G4UIcmdWithADoubleAndUnit* fpELossUI; << 68 G4UIcmdWithADoubleAndUnit* fpELossUI; 67 G4UIcmdWithADoubleAndUnit* fpAbortEventIfE << 69 G4UIcmdWithADoubleAndUnit* fpAbortEventIfELossUpperThan; 68 G4UIcmdWithADoubleAndUnit* fpMinKineticE; << 70 G4UIcmdWithADoubleAndUnit* fpMinKineticE; 69 G4UIcmdWith3VectorAndUnit* fpSizeUI; << 71 G4UIcmdWith3VectorAndUnit* fpSizeUI; 70 << 72 71 public: << 73 public: 72 PrimaryKiller(G4String name, G4int depth = << 74 PrimaryKiller(G4String name, G4int depth=0); 73 << 75 74 virtual ~PrimaryKiller(); << 76 virtual ~PrimaryKiller(); 75 << 77 76 /** Set energy under which the particle sh << 78 /** Set energy under which the particle should be 77 killed*/ << 79 killed*/ 78 inline void SetEnergyThreshold(double ener << 80 inline void SetEnergyThreshold(double energy){ 79 << 81 fKineticE_Min = energy; 80 /** Set the energy loss from which the pri << 82 } 81 killed*/ << 83 82 inline void SetMinLossEnergyLimit(double e << 84 /** Set the energy loss from which the primary is 83 << 85 killed*/ 84 /** Set the energy loss from which the eve << 86 inline void SetMinLossEnergyLimit(double energy){ 85 aborted*/ << 87 fELossRange_Min = energy; 86 inline void SetMaxLossEnergyLimit(double e << 88 } 87 << 89 88 /** Method related to G4UImessenger << 90 /** Set the energy loss from which the event is 89 used to control energy cuts through ma << 91 aborted*/ 90 */ << 92 inline void SetMaxLossEnergyLimit(double energy){ 91 virtual void SetNewValue(G4UIcommand* comm << 93 fELossRange_Max = energy; 92 << 94 } 93 protected: << 95 94 virtual G4bool ProcessHits(G4Step*, G4Touc << 96 /** Method related to G4UImessenger 95 << 97 used to control energy cuts through macro file 96 public: << 98 */ 97 virtual void Initialize(G4HCofThisEvent*); << 99 virtual void SetNewValue(G4UIcommand * command, 98 virtual void EndOfEvent(G4HCofThisEvent*); << 100 G4String newValue); 99 virtual void DrawAll(); << 101 100 virtual void PrintAll(); << 102 protected: >> 103 virtual G4bool ProcessHits(G4Step*, >> 104 G4TouchableHistory*); >> 105 >> 106 public: >> 107 virtual void Initialize(G4HCofThisEvent*); >> 108 virtual void EndOfEvent(G4HCofThisEvent*); >> 109 virtual void DrawAll(); >> 110 virtual void PrintAll(); 101 }; 111 }; 102 #endif 112 #endif 103 113