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 // G4ProductionCuts << 27 // 26 // 28 // Class description: << 27 // $Id: G4ProductionCuts.hh,v 1.4 2006/06/29 19:29:48 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-02 $ 29 // 29 // 30 // A G4ProductionCuts object must be created a << 30 // 31 // value desired for a given geometrical regio << 31 // ------------------------------------------------------------ 32 // Production cyts are applicable for gamma, p << 32 // GEANT 4 class header file 33 << 33 // 34 // Author: H.Kurashige, 17 September 2002 - Fi << 34 // 35 // ------------------------------------------- << 35 // Class Description 36 #ifndef G4ProductionCuts_hh << 36 // This class is 37 #define G4ProductionCuts_hh 1 << 37 // >> 38 // ------------------------------------------------------------ >> 39 // First Implementation 17 Sep. 2002 H.Kurahige >> 40 // ------------------------------------------------------------ 38 41 39 #include <vector> << 42 #ifndef G4ProductionCuts_h >> 43 #define G4ProductionCuts_h 1 40 44 41 #include "globals.hh" 45 #include "globals.hh" 42 #include "G4ios.hh" 46 #include "G4ios.hh" >> 47 #include <vector> 43 #include "G4ParticleDefinition.hh" 48 #include "G4ParticleDefinition.hh" 44 49 45 enum G4ProductionCutsIndex 50 enum G4ProductionCutsIndex 46 { 51 { 47 idxG4GammaCut = 0, << 52 idxG4GammaCut =0, 48 idxG4ElectronCut, 53 idxG4ElectronCut, 49 idxG4PositronCut, 54 idxG4PositronCut, 50 idxG4ProtonCut, // for proton << 51 55 52 NumberOfG4CutIndex 56 NumberOfG4CutIndex 53 }; 57 }; 54 58 55 class G4ProductionCuts 59 class G4ProductionCuts 56 { 60 { >> 61 public: // with description >> 62 // constructor >> 63 G4ProductionCuts(); >> 64 >> 65 // copy constructor >> 66 G4ProductionCuts(const G4ProductionCuts &right); >> 67 >> 68 G4ProductionCuts & operator=(const G4ProductionCuts &right); >> 69 >> 70 public: >> 71 // destructor >> 72 virtual ~G4ProductionCuts(); >> 73 >> 74 // equal opperators >> 75 G4int operator==(const G4ProductionCuts &right) const; >> 76 G4int operator!=(const G4ProductionCuts &right) const; >> 77 >> 78 public: // with description >> 79 // Set Cuts methods >> 80 void SetProductionCut(G4double cut, G4int index = -1); >> 81 void SetProductionCut(G4double cut, G4ParticleDefinition* ptcl); >> 82 void SetProductionCut(G4double cut, const G4String& pName); >> 83 // Set the productionCut in range with an index to particle type >> 84 // if index is omitted, the value is applied to all particles >> 85 >> 86 G4double GetProductionCut(G4int index) const; >> 87 // Get the productionCut in range with an index to particle type >> 88 >> 89 G4double GetProductionCut(const G4String& name) const; >> 90 // Get the productionCut in range with a name of particle type >> 91 >> 92 void SetProductionCuts(std::vector<G4double>&); >> 93 // Set the vector of production cuts in range for all particles >> 94 >> 95 const std::vector<G4double>& GetProductionCuts() const; >> 96 // Get the vector of production cuts in range for all particles >> 97 >> 98 G4bool IsModified() const; >> 99 // return true if any cut value has been modified >> 100 // after last calculation of PhysicsTable >> 101 >> 102 void PhysicsTableUpdated(); >> 103 // inform end of calculation of PhysicsTable to ProductionCut >> 104 57 public: 105 public: >> 106 static G4int GetIndex(const G4String& name); >> 107 static G4int GetIndex(const G4ParticleDefinition* ptcl); 58 108 59 G4ProductionCuts(); << 109 protected: 60 // Constructor << 110 std::vector<G4double> fRangeCuts; >> 111 G4bool isModified; 61 112 62 G4ProductionCuts(const G4ProductionCuts& r << 113 private: 63 // Copy constructor << 114 static const G4ParticleDefinition* gammaDef; >> 115 static const G4ParticleDefinition* electDef; >> 116 static const G4ParticleDefinition* positDef; >> 117 }; 64 118 65 virtual ~G4ProductionCuts(); << 66 // Destructor << 67 119 68 G4ProductionCuts& operator=(const G4Produc << 120 inline 69 // Assignment operator << 121 void G4ProductionCuts::SetProductionCut(G4double cut, G4int index) 70 << 122 { 71 G4bool operator==(const G4ProductionCuts& << 123 if (index<0) { 72 G4bool operator!=(const G4ProductionCuts& << 124 for(G4int i = 0; i < NumberOfG4CutIndex; i++) { 73 // Equality operators << 125 fRangeCuts[i] = cut; 74 << 126 } 75 void SetProductionCut(G4double cut, G4int << 127 isModified = true; 76 void SetProductionCut(G4double cut, G4Part << 128 77 void SetProductionCut(G4double cut, const << 129 } else if (index < NumberOfG4CutIndex) { 78 // Set the production cut in range for a << 130 fRangeCuts[index] = cut; 79 // and index, G4ParticleDefinition* or p << 131 isModified = true; 80 // particle is not a photon, e-, e+ or p << 132 } 81 // no effect. << 133 } 82 void SetProductionCut(G4double cut); << 83 // Set the production cut in range for p << 84 134 85 G4double GetProductionCut(G4int index) con << 135 inline 86 // Get the production cut in range with << 136 void G4ProductionCuts::SetProductionCut(G4double cut, G4ParticleDefinition* ptcl) >> 137 { >> 138 G4int idx = -1; >> 139 if(ptcl) idx = GetIndex(ptcl); >> 140 if(idx>=0) SetProductionCut(cut,idx); >> 141 } 87 142 88 G4double GetProductionCut(const G4String& << 143 inline 89 // Get the production cut in range with << 144 void G4ProductionCuts::SetProductionCut(G4double cut, const G4String& pName) 90 << 145 { 91 void SetProductionCuts(std::vector<G4doubl << 146 G4int idx = GetIndex(pName); 92 // Set the vector of production cuts in << 147 if(idx>=0) SetProductionCut(cut,idx); >> 148 } 93 149 94 const std::vector<G4double>& GetProduction << 150 inline 95 // Get the vector of production cuts in << 151 G4double G4ProductionCuts::GetProductionCut(G4int index) const >> 152 { >> 153 G4double cut=-1.0; >> 154 if ( (index>=0) && (index<NumberOfG4CutIndex) ) { >> 155 cut = fRangeCuts[index]; >> 156 } >> 157 return cut; >> 158 } 96 159 97 G4bool IsModified() const; << 160 inline 98 // Return true if any cut value has been << 161 G4double G4ProductionCuts::GetProductionCut(const G4String& name) const 99 // after last calculation of Physics Tab << 162 { >> 163 return GetProductionCut(GetIndex(name)); >> 164 } 100 165 101 void PhysicsTableUpdated(); << 166 inline 102 // Inform end of calculation of Physics << 167 void G4ProductionCuts::SetProductionCuts(std::vector<G4double>& cut) 103 << 168 { 104 static G4int GetIndex(const G4String& name << 169 for(G4int i = 0; (i<NumberOfG4CutIndex); i++) { 105 static G4int GetIndex(const G4ParticleDefi << 170 fRangeCuts[i] = cut[i]; >> 171 } >> 172 isModified = true; >> 173 } 106 174 107 protected: << 175 inline >> 176 const std::vector<G4double>& G4ProductionCuts::GetProductionCuts() const >> 177 { >> 178 return fRangeCuts; >> 179 } 108 180 109 std::vector<G4double> fRangeCuts; << 181 inline 110 G4bool isModified = true; << 182 G4bool G4ProductionCuts::IsModified() const 111 }; << 183 { >> 184 return isModified; >> 185 } >> 186 >> 187 inline >> 188 void G4ProductionCuts::PhysicsTableUpdated() >> 189 { >> 190 isModified = false; >> 191 } 112 192 113 #endif 193 #endif >> 194 >> 195 >> 196 >> 197 >> 198 >> 199 >> 200 >> 201 >> 202 >> 203 >> 204 114 205