Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:04:42

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 electromagnetic/TestEm8/src/TestParameters.cc
0027 /// \brief Implementation of the TestParameters class
0028 //
0029 //
0030 //---------------------------------------------------------------------------
0031 //
0032 // ClassName:   TestParameters
0033 //
0034 // Author:      V.Ivanchenko 01.09.2010
0035 //
0036 //----------------------------------------------------------------------------
0037 //
0038 
0039 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0040 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0041 
0042 #include "TestParameters.hh"
0043 
0044 #include "G4SystemOfUnits.hh"
0045 #include "G4UnitsTable.hh"
0046 
0047 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0048 
0049 TestParameters* TestParameters::fManager = nullptr;
0050 
0051 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0052 
0053 TestParameters* TestParameters::GetPointer()
0054 {
0055   if (!fManager) {
0056     fManager = new TestParameters();
0057   }
0058   return fManager;
0059 }
0060 
0061 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0062 
0063 TestParameters::TestParameters()
0064 {
0065   fMaxEnergy = 100. * CLHEP::keV;
0066 
0067   // normalisation to PAI
0068   // fFactorALICE = 325;
0069 
0070   // normalisation to Opt0
0071   // fFactorALICE = 275;
0072 }
0073 
0074 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0075 
0076 void TestParameters::SetMaxEnergy(G4double value)
0077 {
0078   fMaxEnergy = value;
0079 }
0080 
0081 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0082 
0083 G4double TestParameters::GetMaxEnergy() const
0084 {
0085   return fMaxEnergy;
0086 }
0087 
0088 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0089 
0090 void TestParameters::SetNumberBins(G4int value)
0091 {
0092   fBinsE = value;
0093 }
0094 
0095 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0096 
0097 G4int TestParameters::GetNumberBins() const
0098 {
0099   return fBinsE;
0100 }
0101 
0102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0103 
0104 void TestParameters::SetNumberBinsCluster(G4int value)
0105 {
0106   fBinsCluster = value;
0107 }
0108 
0109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0110 
0111 G4int TestParameters::GetNumberBinsCluster() const
0112 {
0113   return fBinsCluster;
0114 }
0115 
0116 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0117 
0118 void TestParameters::SetMaxCluster(G4int value)
0119 {
0120   fMaxCluster = value;
0121 }
0122 
0123 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0124 
0125 G4int TestParameters::GetMaxCluster() const
0126 {
0127   return fMaxCluster;
0128 }
0129 
0130 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0131 
0132 void TestParameters::SetEnergyPerChannel(G4double value)
0133 {
0134   if (value > 0.0) {
0135     fFactorALICE = 1. / value;
0136   }
0137 }
0138 
0139 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0140 
0141 G4double TestParameters::GetFactorALICE() const
0142 {
0143   return fFactorALICE;
0144 }
0145 
0146 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0147 
0148 void TestParameters::SetNormFactor(G4double value)
0149 {
0150   fNormFactor = value;
0151 }
0152 
0153 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0154 
0155 G4double TestParameters::GetNormFactor() const
0156 {
0157   return fNormFactor;
0158 }
0159 
0160 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0161 
0162 void TestParameters::SetEnergySmear(G4double value)
0163 {
0164   fEnergySmear = value;
0165 }
0166 
0167 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0168 
0169 G4double TestParameters::GetEnergySmear() const
0170 {
0171   return fEnergySmear;
0172 }
0173 
0174 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0175 
0176 void TestParameters::SetPositionZ(G4double val)
0177 {
0178   fPositionZ = val;
0179 }
0180 
0181 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0182 
0183 G4double TestParameters::GetPositionZ() const
0184 {
0185   return fPositionZ;
0186 }
0187 
0188 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0189 
0190 void TestParameters::SetBeamEnergy(G4double val)
0191 {
0192   fBeamEnergy = val;
0193 }
0194 
0195 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0196 
0197 G4double TestParameters::GetBeamEnergy() const
0198 {
0199   return fBeamEnergy;
0200 }
0201 
0202 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0203 
0204 void TestParameters::SetBeamParticle(const G4ParticleDefinition* ptr)
0205 {
0206   fParticle = ptr;
0207 }
0208 
0209 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0210 
0211 const G4ParticleDefinition* TestParameters::GetBeamParticle() const
0212 {
0213   return fParticle;
0214 }
0215 
0216 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......