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 /// \file exoticphysics/dmparticle/src/TestPar 26 /// \file exoticphysics/dmparticle/src/TestParameters.cc 27 /// \brief Implementation of the TestParameter 27 /// \brief Implementation of the TestParameters class 28 // 28 // 29 // 29 // 30 //-------------------------------------------- 30 //--------------------------------------------------------------------------- 31 // 31 // 32 // ClassName: TestParameters 32 // ClassName: TestParameters 33 // 33 // 34 // Author: V.Ivanchenko 01.09.2010 34 // Author: V.Ivanchenko 01.09.2010 35 // 35 // 36 //-------------------------------------------- 36 //---------------------------------------------------------------------------- 37 // 37 // 38 38 39 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 41 42 #include "TestParameters.hh" 42 #include "TestParameters.hh" 43 << 44 #include "G4SystemOfUnits.hh" << 45 #include "G4UnitsTable.hh" 43 #include "G4UnitsTable.hh" >> 44 #include "G4SystemOfUnits.hh" 46 45 47 //....oooOO0OOooo........oooOO0OOooo........oo 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 47 49 TestParameters* TestParameters::fManager = nul 48 TestParameters* TestParameters::fManager = nullptr; 50 49 51 //....oooOO0OOooo........oooOO0OOooo........oo 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 51 53 TestParameters* TestParameters::GetPointer() 52 TestParameters* TestParameters::GetPointer() 54 { 53 { 55 if (!fManager) { << 54 if(!fManager) { 56 fManager = new TestParameters(); 55 fManager = new TestParameters(); 57 } 56 } 58 return fManager; 57 return fManager; 59 } 58 } 60 59 61 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 62 61 63 TestParameters::TestParameters() 62 TestParameters::TestParameters() 64 { 63 { 65 fMaxEnergy = 100. * GeV; << 64 fMaxEnergy = 100.*GeV; 66 fBinsE = 100; << 65 fBinsE = 100; 67 fPositionZ = 0.0; << 66 fPositionZ = 0.0; 68 fBeamEnergy = 0.0; << 67 fBeamEnergy = 0.0; 69 fEpsilon = 100.0; << 68 fEpsilon = 100.0; 70 69 71 fParticle = nullptr; 70 fParticle = nullptr; 72 } 71 } 73 72 74 //....oooOO0OOooo........oooOO0OOooo........oo 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 74 76 TestParameters::~TestParameters() {} << 75 TestParameters::~TestParameters() >> 76 {} 77 77 78 //....oooOO0OOooo........oooOO0OOooo........oo 78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 79 79 80 void TestParameters::SetMaxEnergy(G4double val 80 void TestParameters::SetMaxEnergy(G4double value) 81 { 81 { 82 fMaxEnergy = value; 82 fMaxEnergy = value; 83 } 83 } 84 84 85 //....oooOO0OOooo........oooOO0OOooo........oo 85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 86 86 87 G4double TestParameters::GetMaxEnergy() const 87 G4double TestParameters::GetMaxEnergy() const 88 { 88 { 89 return fMaxEnergy; 89 return fMaxEnergy; 90 } 90 } 91 91 92 //....oooOO0OOooo........oooOO0OOooo........oo 92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 93 93 94 void TestParameters::SetNumberBins(G4int value 94 void TestParameters::SetNumberBins(G4int value) 95 { 95 { 96 fBinsE = value; 96 fBinsE = value; 97 } 97 } 98 98 99 //....oooOO0OOooo........oooOO0OOooo........oo 99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 100 100 101 G4int TestParameters::GetNumberBins() const 101 G4int TestParameters::GetNumberBins() const 102 { 102 { 103 return fBinsE; 103 return fBinsE; 104 } 104 } 105 105 106 //....oooOO0OOooo........oooOO0OOooo........oo 106 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 107 107 108 void TestParameters::SetPositionZ(G4double val 108 void TestParameters::SetPositionZ(G4double val) 109 { 109 { 110 fPositionZ = val; 110 fPositionZ = val; 111 } 111 } 112 112 113 //....oooOO0OOooo........oooOO0OOooo........oo 113 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 114 114 115 G4double TestParameters::GetPositionZ() const 115 G4double TestParameters::GetPositionZ() const 116 { 116 { 117 return fPositionZ; 117 return fPositionZ; 118 } 118 } 119 119 120 //....oooOO0OOooo........oooOO0OOooo........oo 120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 121 121 122 void TestParameters::SetBeamEnergy(G4double va 122 void TestParameters::SetBeamEnergy(G4double val) 123 { 123 { 124 fBeamEnergy = val; 124 fBeamEnergy = val; 125 } 125 } 126 126 127 //....oooOO0OOooo........oooOO0OOooo........oo 127 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 128 128 129 G4double TestParameters::GetBeamEnergy() const 129 G4double TestParameters::GetBeamEnergy() const 130 { 130 { 131 return fBeamEnergy; 131 return fBeamEnergy; 132 } 132 } 133 133 134 //....oooOO0OOooo........oooOO0OOooo........oo 134 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 135 135 136 void TestParameters::SetAlphaFactor(G4double v 136 void TestParameters::SetAlphaFactor(G4double val) 137 { 137 { 138 fEpsilon = val; 138 fEpsilon = val; 139 } 139 } 140 140 141 //....oooOO0OOooo........oooOO0OOooo........oo 141 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 142 142 143 G4double TestParameters::GetAlphaFactor() cons 143 G4double TestParameters::GetAlphaFactor() const 144 { 144 { 145 return fEpsilon; 145 return fEpsilon; 146 } 146 } 147 147 148 //....oooOO0OOooo........oooOO0OOooo........oo 148 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 149 149 150 void TestParameters::SetBeamParticle(const G4P 150 void TestParameters::SetBeamParticle(const G4ParticleDefinition* ptr) 151 { 151 { 152 fParticle = ptr; 152 fParticle = ptr; 153 } 153 } 154 154 155 //....oooOO0OOooo........oooOO0OOooo........oo 155 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 156 156 157 const G4ParticleDefinition* TestParameters::Ge 157 const G4ParticleDefinition* TestParameters::GetBeamParticle() const 158 { 158 { 159 return fParticle; 159 return fParticle; 160 } 160 } 161 161 162 //....oooOO0OOooo........oooOO0OOooo........oo 162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 163 163