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 // 23 // >> 24 // $Id: G4XPDGElastic.hh,v 1.1 2003/10/07 12:37:32 hpw Exp $ // 27 // ------------------------------------------- 25 // --------------------------------------------------------------- 28 // GEANT4 Class file 26 // GEANT4 Class file 29 // 27 // 30 // 28 // 31 // File name: G4XPDGElastic 29 // File name: G4XPDGElastic 32 // 30 // 33 // Author: Maria Grazia Pia (Maria 31 // Author: Maria Grazia Pia (MariaGrazia.Pia@genova.infn.it) 34 // 32 // 35 // Creation date: 15 April 1999 33 // Creation date: 15 April 1999 36 // 34 // 37 // Modifications: 35 // Modifications: 38 // 36 // 39 // ------------------------------------------- 37 // ------------------------------------------------------------------- 40 38 41 #ifndef G4XPDGELASTIC_HH 39 #ifndef G4XPDGELASTIC_HH 42 #define G4XPDGELASTIC_HH 40 #define G4XPDGELASTIC_HH 43 41 44 #include "globals.hh" 42 #include "globals.hh" 45 #include "G4VCrossSectionSource.hh" 43 #include "G4VCrossSectionSource.hh" 46 #include <algorithm> 44 #include <algorithm> 47 #include <map> 45 #include <map> 48 46 >> 47 typedef std::pair<G4String,G4String> G4StringPair; >> 48 49 class G4KineticTrack; 49 class G4KineticTrack; 50 class G4ParticleDefinition; 50 class G4ParticleDefinition; 51 51 52 typedef std::pair<const G4ParticleDefinition * << 53 << 54 class G4XPDGElastic : public G4VCrossSectionSo 52 class G4XPDGElastic : public G4VCrossSectionSource 55 { 53 { 56 54 57 public: 55 public: 58 56 59 G4XPDGElastic(); 57 G4XPDGElastic(); 60 58 61 virtual ~G4XPDGElastic(); 59 virtual ~G4XPDGElastic(); 62 60 63 G4bool operator==(const G4XPDGElastic &right 61 G4bool operator==(const G4XPDGElastic &right) const; 64 G4bool operator!=(const G4XPDGElastic &right 62 G4bool operator!=(const G4XPDGElastic &right) const; 65 63 66 virtual G4double CrossSection(const G4Kineti 64 virtual G4double CrossSection(const G4KineticTrack& trk1, const G4KineticTrack& trk2) const; 67 65 68 virtual const G4CrossSectionVector* GetCompo 66 virtual const G4CrossSectionVector* GetComponents() const { return 0; } 69 67 70 virtual G4String Name() const; 68 virtual G4String Name() const; 71 69 72 virtual G4bool IsValid(G4double e) const; 70 virtual G4bool IsValid(G4double e) const; 73 71 74 virtual G4double LowLimit() const { return _ 72 virtual G4double LowLimit() const { return _lowLimit; } 75 73 76 74 77 protected: 75 protected: 78 76 79 77 80 private: 78 private: 81 79 82 G4XPDGElastic(const G4XPDGElastic &right); 80 G4XPDGElastic(const G4XPDGElastic &right); 83 const G4XPDGElastic& operator=(const G4XPDGE 81 const G4XPDGElastic& operator=(const G4XPDGElastic &right); 84 82 85 static const G4double _lowLimit; 83 static const G4double _lowLimit; 86 static const G4double _highLimit; 84 static const G4double _highLimit; 87 85 88 static const G4int nPar; 86 static const G4int nPar; 89 static const G4double pPiPlusPDGFit[7]; 87 static const G4double pPiPlusPDGFit[7]; 90 static const G4double pPiMinusPDGFit[7]; 88 static const G4double pPiMinusPDGFit[7]; 91 static const G4double pKPlusPDGFit[7]; 89 static const G4double pKPlusPDGFit[7]; 92 static const G4double pKMinusPDGFit[7]; 90 static const G4double pKMinusPDGFit[7]; 93 static const G4double ppPDGFit[7]; 91 static const G4double ppPDGFit[7]; 94 static const G4double ppbarPDGFit[7]; 92 static const G4double ppbarPDGFit[7]; 95 static const G4double npbarPDGFit[7]; 93 static const G4double npbarPDGFit[7]; 96 94 97 std::map <G4pDefPair, std::vector<G4double>, << 95 std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > xMap; 98 96 99 typedef std::map <G4pDefPair, std::vector<G4 << 97 typedef std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > PairDoubleMap; 100 98 101 // G4double pMinFit; 99 // G4double pMinFit; 102 // G4double pMaxFit; 100 // G4double pMaxFit; 103 // G4double aFit; 101 // G4double aFit; 104 // G4double bFit; 102 // G4double bFit; 105 // G4double nFit; 103 // G4double nFit; 106 // G4double cFit; 104 // G4double cFit; 107 // G4double dFit; 105 // G4double dFit; 108 106 109 }; 107 }; 110 108 111 #endif 109 #endif 112 110