Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // >> 23 // $Id: GFlashParticleBounds.cc,v 1.3 2005/10/04 09:08:33 gcosmo Exp $ >> 24 // GEANT4 tag $Name: geant4-08-00-patch-01 $ 26 // 25 // 27 // 26 // 28 // ------------------------------------------- 27 // ------------------------------------------------------------ 29 // GEANT 4 class implementation 28 // GEANT 4 class implementation 30 // 29 // 31 // ---------------- GFlashParticleBounds 30 // ---------------- GFlashParticleBounds ---------------- 32 // 31 // 33 // Author: Joanna Weng - 9.11.2004 32 // Author: Joanna Weng - 9.11.2004 34 // ------------------------------------------- 33 // ------------------------------------------------------------ 35 34 36 #include "GFlashParticleBounds.hh" << 37 << 38 #include "G4SystemOfUnits.hh" << 39 #include "G4Electron.hh" 35 #include "G4Electron.hh" 40 #include "G4Positron.hh" 36 #include "G4Positron.hh" 41 37 >> 38 #include "GFlashParticleBounds.hh" >> 39 42 GFlashParticleBounds::GFlashParticleBounds() 40 GFlashParticleBounds::GFlashParticleBounds() 43 { << 41 { 44 // e+e- defaults 42 // e+e- defaults 45 EMinEneToParametrise = 0.10 * GeV; << 43 EMinEneToParametrise = 0.10*GeV; 46 EMaxEneToParametrise = 10000.00 * GeV; << 44 EMaxEneToParametrise = 10000.00*GeV; 47 EEneToKill = 0.1 * GeV; // Energie at which << 45 EEneToKill = 0.1*GeV; // Energie at which electrons are killed 48 } 46 } 49 47 50 GFlashParticleBounds::~GFlashParticleBounds() 48 GFlashParticleBounds::~GFlashParticleBounds() 51 { 49 { 52 } 50 } 53 51 54 void GFlashParticleBounds::SetMinEneToParametr << 52 void GFlashParticleBounds:: 55 << 53 SetMinEneToParametrise(G4ParticleDefinition &particleType, G4double enemin) 56 { << 54 { 57 if (&particleType == G4Electron::ElectronDef << 55 if( &particleType == G4Electron::ElectronDefinition()|| 58 || &particleType == G4Positron::Positron << 56 &particleType == G4Positron::PositronDefinition()) 59 EMinEneToParametrise = enemin; << 57 EMinEneToParametrise = enemin; 60 } 58 } 61 59 62 void GFlashParticleBounds::SetMaxEneToParametr << 60 void GFlashParticleBounds:: 63 << 61 SetMaxEneToParametrise(G4ParticleDefinition &particleType, G4double enemax) 64 { 62 { 65 if (&particleType == G4Electron::ElectronDef << 63 if( &particleType == G4Electron::ElectronDefinition()|| 66 || &particleType == G4Positron::Positron << 64 &particleType == G4Positron::PositronDefinition()) 67 EMaxEneToParametrise = enemax; << 65 EMaxEneToParametrise = enemax; 68 } 66 } 69 67 70 void GFlashParticleBounds::SetEneToKill(G4Part << 68 void GFlashParticleBounds:: >> 69 SetEneToKill(G4ParticleDefinition &particleType, G4double enekill) 71 { 70 { 72 if (&particleType == G4Electron::ElectronDef << 71 if( &particleType == G4Electron::ElectronDefinition()|| 73 || &particleType == G4Positron::Positron << 72 &particleType == G4Positron::PositronDefinition()) 74 EEneToKill = enekill; << 73 EEneToKill = enekill; 75 } 74 } 76 75 77 G4double GFlashParticleBounds::GetMinEneToPara << 76 G4double GFlashParticleBounds:: 78 { << 77 GetMinEneToParametrise(G4ParticleDefinition &particleType) >> 78 { 79 G4double result = DBL_MAX; 79 G4double result = DBL_MAX; 80 if (&particleType == G4Electron::ElectronDef << 80 if( &particleType == G4Electron::ElectronDefinition()|| 81 || &particleType == G4Positron::Positron << 81 &particleType == G4Positron::PositronDefinition()) 82 { 82 { 83 result = EMinEneToParametrise; 83 result = EMinEneToParametrise; 84 } << 84 } 85 return result; 85 return result; 86 } 86 } 87 87 88 G4double GFlashParticleBounds::GetMaxEneToPara << 88 G4double GFlashParticleBounds:: 89 { << 89 GetMaxEneToParametrise(G4ParticleDefinition &particleType) >> 90 { 90 G4double result = 0; 91 G4double result = 0; 91 if (&particleType == G4Electron::ElectronDef << 92 if( &particleType == G4Electron::ElectronDefinition()|| 92 || &particleType == G4Positron::Positron << 93 &particleType == G4Positron::PositronDefinition()) 93 { 94 { 94 result = EMaxEneToParametrise; << 95 result = EMaxEneToParametrise; 95 } 96 } 96 return result; 97 return result; 97 } 98 } 98 99 99 G4double GFlashParticleBounds::GetEneToKill(G4 << 100 G4double GFlashParticleBounds:: >> 101 GetEneToKill(G4ParticleDefinition & particleType) 100 { 102 { 101 if (&particleType == G4Electron::ElectronDef << 103 if (&particleType == G4Electron::ElectronDefinition() || 102 || &particleType == G4Positron::Positron << 104 &particleType == G4Positron::PositronDefinition()) 103 return EEneToKill; << 105 return EEneToKill; 104 else << 106 else return (-DBL_MAX); 105 return (-DBL_MAX); << 106 } 107 } 107 108