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 // 26 // G4PhysicsLinearVector class implementation << 27 // 23 // 28 // Authors: << 24 // $Id: G4PhysicsLinearVector.cc,v 1.9 2001/07/11 10:00:57 gunter Exp $ 29 // - 02 Dec. 1995, G.Cosmo: Structure created << 25 // GEANT4 tag $Name: geant4-05-00 $ 30 // - 03 Mar. 1996, K.Amako: Implemented the 1s << 26 // 31 // Revisions: << 27 // 32 // - 11 Nov. 2000, H.Kurashige: Use STL vector << 28 //-------------------------------------------------------------------- 33 // ------------------------------------------- << 29 // GEANT 4 class implementation file >> 30 // >> 31 // G4PhysicsLinearVector.cc >> 32 // >> 33 // History: >> 34 // 02 Dec. 1995, G.Cosmo : Structure created based on object model >> 35 // 15 Feb. 1996, K.Amako : Implemented the 1st version >> 36 // 01 Jul. 1996, K.Amako : Cache mechanism and hidden bin from the >> 37 // user introduced. >> 38 // 26 Sep. 1996, K.Amako : Constructor with only 'bin size' added. >> 39 // 11 Nov. 2000, H.Kurashige : use STL vector for dataVector and binVector >> 40 // 9 Mar. 2001, H.Kurashige : add PhysicsVector type and Retrieve >> 41 // >> 42 //-------------------------------------------------------------------- 34 43 35 #include "G4PhysicsLinearVector.hh" 44 #include "G4PhysicsLinearVector.hh" 36 45 37 // ------------------------------------------- << 46 G4PhysicsLinearVector::G4PhysicsLinearVector() 38 G4PhysicsLinearVector::G4PhysicsLinearVector(G << 39 : G4PhysicsVector(spline) << 40 { 47 { >> 48 edgeMin = 0.0; >> 49 edgeMax = 0.0; >> 50 numberOfBin = 0; 41 type = T_G4PhysicsLinearVector; 51 type = T_G4PhysicsLinearVector; 42 } 52 } 43 53 44 // ------------------------------------------- << 54 G4PhysicsLinearVector::G4PhysicsLinearVector(size_t theNbin) 45 G4PhysicsLinearVector::G4PhysicsLinearVector(G << 46 s << 47 : G4PhysicsVector(spline) << 48 { 55 { 49 numberOfNodes = Nbin + 1; << 50 if (Nbin < 1 || Emin >= Emax) << 51 { << 52 G4ExceptionDescription ed; << 53 ed << "G4PhysicsLinearVector with wrong pa << 54 << " Emin= " << Emin << " Emax= " << Em << 55 G4Exception("G4PhysicsLinearVector::G4Phys << 56 FatalException, ed, "theNbins << 57 } << 58 if (numberOfNodes < 2) << 59 { << 60 numberOfNodes = 2; << 61 } << 62 type = T_G4PhysicsLinearVector; 56 type = T_G4PhysicsLinearVector; 63 57 64 binVector.resize(numberOfNodes); << 58 // Add extra one bin (hidden to user) to handle correctly when 65 dataVector.resize(numberOfNodes, 0.0); << 59 // Energy=theEmax in getValue. 66 binVector[0] = Emin; << 60 dataVector.reserve(theNbin+1); 67 binVector[numberOfNodes - 1] = Emax; << 61 binVector.reserve(theNbin+1); 68 Initialise(); << 62 69 if (2 < numberOfNodes) << 63 numberOfBin = theNbin; 70 { << 64 dBin = 0.; 71 for(std::size_t i = 1; i <= idxmax; ++i) << 65 baseBin = 0.; 72 { << 66 73 binVector[i] = edgeMin + i / invdBin; << 67 edgeMin = 0.; 74 } << 68 edgeMax = 0.; >> 69 >> 70 lastBin = INT_MAX; >> 71 lastEnergy = -DBL_MAX; >> 72 lastValue = DBL_MAX; >> 73 >> 74 for (size_t i=0; i<=numberOfBin; i++) { >> 75 binVector.push_back(0.0); >> 76 dataVector.push_back(0.0); 75 } 77 } 76 } << 78 } 77 79 78 // ------------------------------------------- << 80 G4PhysicsLinearVector::G4PhysicsLinearVector(G4double theEmin, 79 void G4PhysicsLinearVector::Initialise() << 81 G4double theEmax, size_t theNbin) 80 { 82 { 81 idxmax = numberOfNodes - 2; << 83 type = T_G4PhysicsLinearVector; >> 84 >> 85 // Add extra one bin (hidden to user) to handle correctly when >> 86 // Energy=theEmax in getValue. >> 87 dataVector.reserve(theNbin+1); >> 88 binVector.reserve(theNbin+1); >> 89 >> 90 numberOfBin = theNbin; >> 91 dBin = (theEmax-theEmin) / numberOfBin; >> 92 baseBin = theEmin/dBin; >> 93 >> 94 for (size_t i=0; i<numberOfBin+1; i++) { >> 95 binVector.push_back( theEmin + i*dBin ); >> 96 dataVector.push_back(0.0); >> 97 } >> 98 82 edgeMin = binVector[0]; 99 edgeMin = binVector[0]; 83 edgeMax = binVector[numberOfNodes - 1]; << 100 edgeMax = binVector[numberOfBin-1]; 84 invdBin = (idxmax + 1) / (edgeMax - edgeMin) << 101 >> 102 lastBin = INT_MAX; >> 103 lastEnergy = -DBL_MAX; >> 104 lastValue = DBL_MAX; >> 105 } >> 106 >> 107 G4PhysicsLinearVector::~G4PhysicsLinearVector(){} >> 108 >> 109 >> 110 G4bool G4PhysicsLinearVector::Retrieve(G4std::ifstream& fIn, G4bool ascii) >> 111 { >> 112 G4bool success = G4PhysicsVector::Retrieve(fIn, ascii); >> 113 if (success){ >> 114 G4double theEmin = binVector[0]; >> 115 dBin = binVector[1]-theEmin; >> 116 baseBin = theEmin/dBin; >> 117 } >> 118 return success; 85 } 119 } 86 120 87 // ------------------------------------------- << 88 121