| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | #include "G4AnnihilationCrossSection.hh"
|
|---|
| 27 | #include "G4ASCCrossSection.hh"
|
|---|
| 28 | #include "G4GammaAnnCrossSection.hh"
|
|---|
| 29 |
|
|---|
| 30 | G4AnnihilationCrossSection::
|
|---|
| 31 | G4AnnihilationCrossSection()
|
|---|
| 32 | {
|
|---|
| 33 | // pi+ p
|
|---|
| 34 | theDataSets.push_back(new G4ASCCrossSection(211, 2212, 13.7, 27.8, 0.45, 0.079));
|
|---|
| 35 | // pi+ n
|
|---|
| 36 | theDataSets.push_back(new G4ASCCrossSection(211, 2112, 13.7, 27.8, 0.45, 0.079));
|
|---|
| 37 | // pi- p
|
|---|
| 38 | theDataSets.push_back(new G4ASCCrossSection(-211, 2212, 13.7, 35.9, 0.45, 0.079));
|
|---|
| 39 | // pi- n
|
|---|
| 40 | theDataSets.push_back(new G4ASCCrossSection(-211, 2112, 13.7, 35.9, 0.45, 0.079));
|
|---|
| 41 | // pi0 p
|
|---|
| 42 | theDataSets.push_back(new G4ASCCrossSection(111, 2212, 13.7, 35.9, 0.45, 0.079));
|
|---|
| 43 | // pi0 n
|
|---|
| 44 | theDataSets.push_back(new G4ASCCrossSection(111, 2112, 13.7, 35.9, 0.45, 0.079));
|
|---|
| 45 | // K- p
|
|---|
| 46 | theDataSets.push_back(new G4ASCCrossSection(-321, 2212, 12.2, 26.4, 0.50, 0.079));
|
|---|
| 47 | // K- n
|
|---|
| 48 | theDataSets.push_back(new G4ASCCrossSection(-321, 2112, 12.2, 26.4, 0.50, 0.079));
|
|---|
| 49 | // K0 p
|
|---|
| 50 | theDataSets.push_back(new G4ASCCrossSection(-311, 2212, 12.2, 26.4, 0.50, 0.079));
|
|---|
| 51 | // K0 n
|
|---|
| 52 | theDataSets.push_back(new G4ASCCrossSection(-311, 2112, 12.2, 26.4, 0.50, 0.079));
|
|---|
| 53 | // p- p
|
|---|
| 54 | theDataSets.push_back(new G4ASCCrossSection(-2212, 2212, 22.0, 98.2, 0.46, 0.079));
|
|---|
| 55 | // p- n
|
|---|
| 56 | theDataSets.push_back(new G4ASCCrossSection(-2212, 2112, 22.3, 92.7, 0.46, 0.079));
|
|---|
| 57 | // n- n
|
|---|
| 58 | theDataSets.push_back(new G4ASCCrossSection(-2112, 2112, 22.0, 98.2, 0.46, 0.079));
|
|---|
| 59 | // n- p
|
|---|
| 60 | theDataSets.push_back(new G4ASCCrossSection(-2112, 2212, 22.3, 92.7, 0.46, 0.079));
|
|---|
| 61 | // gamma+n and gamma+p
|
|---|
| 62 | theDataSets.push_back(new G4GammaAnnCrossSection);
|
|---|
| 63 | }
|
|---|