|
|
|||
File indexing completed on 2026-04-08 07:53:11
0001 // 0002 // ******************************************************************** 0003 // * License and Disclaimer * 0004 // * * 0005 // * The Geant4 software is copyright of the Copyright Holders of * 0006 // * the Geant4 Collaboration. It is provided under the terms and * 0007 // * conditions of the Geant4 Software License, included in the file * 0008 // * LICENSE and available at http://cern.ch/geant4/license . These * 0009 // * include a list of copyright holders. * 0010 // * * 0011 // * Neither the authors of this software system, nor their employing * 0012 // * institutes,nor the agencies providing financial support for this * 0013 // * work make any representation or warranty, express or implied, * 0014 // * regarding this software system or assume any liability for its * 0015 // * use. Please see the license in the file LICENSE and URL above * 0016 // * for the full disclaimer and the limitation of liability. * 0017 // * * 0018 // * This code implementation is the result of the scientific and * 0019 // * technical work of the GEANT4 collaboration. * 0020 // * By using, copying, modifying or distributing the software (or * 0021 // * any work based on the software) you agree to acknowledge its * 0022 // * use in resulting scientific publications, and indicate your * 0023 // * acceptance of all terms of the Geant4 Software license. * 0024 // ******************************************************************** 0025 // 0026 /// \file TestParameters.cc 0027 /// \brief Implementation of the TestParameters class 0028 0029 //--------------------------------------------------------------------------- 0030 // 0031 // ClassName: TestParameters 0032 // 0033 // Author: V.Ivanchenko 01.09.2010 0034 // 0035 //---------------------------------------------------------------------------- 0036 // 0037 0038 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0039 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0040 0041 #include "TestParameters.hh" 0042 0043 #include "G4SystemOfUnits.hh" 0044 #include "G4UnitsTable.hh" 0045 0046 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0047 0048 TestParameters* TestParameters::fManager = nullptr; 0049 0050 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0051 0052 TestParameters* TestParameters::GetPointer() 0053 { 0054 if (!fManager) { 0055 fManager = new TestParameters(); 0056 } 0057 return fManager; 0058 } 0059 0060 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0061 0062 TestParameters::TestParameters() 0063 { 0064 fMaxEnergy = 100. * GeV; 0065 fBinsE = 100; 0066 fPositionZ = 0.0; 0067 fBeamEnergy = 0.0; 0068 fEpsilon = 100.0; 0069 0070 fParticle = nullptr; 0071 } 0072 0073 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0074 0075 TestParameters::~TestParameters() {} 0076 0077 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0078 0079 void TestParameters::SetMaxEnergy(G4double value) 0080 { 0081 fMaxEnergy = value; 0082 } 0083 0084 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0085 0086 G4double TestParameters::GetMaxEnergy() const 0087 { 0088 return fMaxEnergy; 0089 } 0090 0091 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0092 0093 void TestParameters::SetNumberBins(G4int value) 0094 { 0095 fBinsE = value; 0096 } 0097 0098 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0099 0100 G4int TestParameters::GetNumberBins() const 0101 { 0102 return fBinsE; 0103 } 0104 0105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0106 0107 void TestParameters::SetPositionZ(G4double val) 0108 { 0109 fPositionZ = val; 0110 } 0111 0112 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0113 0114 G4double TestParameters::GetPositionZ() const 0115 { 0116 return fPositionZ; 0117 } 0118 0119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0120 0121 void TestParameters::SetBeamEnergy(G4double val) 0122 { 0123 fBeamEnergy = val; 0124 } 0125 0126 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0127 0128 G4double TestParameters::GetBeamEnergy() const 0129 { 0130 return fBeamEnergy; 0131 } 0132 0133 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0134 0135 void TestParameters::SetAlphaFactor(G4double val) 0136 { 0137 fEpsilon = val; 0138 } 0139 0140 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0141 0142 G4double TestParameters::GetAlphaFactor() const 0143 { 0144 return fEpsilon; 0145 } 0146 0147 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0148 0149 void TestParameters::SetBeamParticle(const G4ParticleDefinition* ptr) 0150 { 0151 fParticle = ptr; 0152 } 0153 0154 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0155 0156 const G4ParticleDefinition* TestParameters::GetBeamParticle() const 0157 { 0158 return fParticle; 0159 } 0160 0161 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|