// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4QProbability.cc,v 1.3 2009/09/04 16:13:19 mkossov Exp $ // GEANT4 tag $Name: hadr-chips-V09-03-08 $ // // ------------------------------------------------------------ // GEANT 4 class implementation file // // ---------------- G4QProbability ---------------- // by Mikhail Kossov Oct, 2006 // class for Pomeron & Reggeon amplitudes used by CHIPS // For comparison mirror member functions are taken from G4 class: // G4PomeronCrossSection // ------------------------------------------------------------------ // Short description: Pomeron is one of the possible vacuum pole (the // second is Oderon, but they are identical in the present model), by // which particle exchang in the ellastic scattering process. Others // are Reggeons and, possibly Instantons (for spin-flip reactions). // Strings are cuts of Pomerons and Reggeons (optic theorem connects // the amplitude of scattering at zero angle with the total inelastic // cross-section). They describe inelastic processes at high energies. // ------------------------------------------------------------------ #include "G4QProbability.hh" G4QProbability::G4QProbability(G4int PDG) { S0 = 1.*GeV*GeV; // Must be a constant (just GeV^2 unit !) pom_Alpha = 1.0808; // Must be the same for all hadrons pom_Alphaprime = 0.25/GeV/GeV; qex_Gamma = 9./GeV/GeV; qex_R2 = 27./GeV/GeV; qex_Alphaprime = 1.5/GeV/GeV; G4int aP = std::abs(PDG); if (PDG==2212 || PDG==2112) InitForNucleon(); else if(PDG==111 || aP==211) InitForPion(); else if(PDG==130 || PDG==310 || aP==311 || aP==321) InitForKaon(); else if(PDG==22) InitForGamma(); else if(PDG > 3000) InitForHyperon(); else if(PDG <-2000) InitForAntiBaryon(); else { G4cout<<"-Warning-G4QProbability is initialized for PDGCode="<