// // ******************************************************************** // * 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. * // ******************************************************************** // // // G4 Tools program: NuMu DIS(Q2) fixed step integration // ..................................................... // Created: M.V. Kossov, CERN/ITEP(Moscow), 20-Dec-2005 // //===================================================================== #include "globals.hh" #include #include #include #include "G4ios.hh" //#include // All calculations have been done for C12 nucleus double nuQ2(double Q2) // (Q2 is in GeV^2) { // x * * * * * * * * * * // -1- -2- -3- -4- -5- -6- -7- -8- -9- -10- -11- // 2.068 2.634 4.333 3.000 10.59 .0011 18.74 1.484 134950 .0755 4.5 G4double y=Q2/3; G4double z=std::pow((Q2/2.634),4.333); // The first (1.+Q2)**4.5 fuctor is just normalization, which payed back by 1/(1+Q2)^3.5 G4double f=std::pow((1.+Q2),4.5)* (1.+z*(1.+18.74*std::exp(-Q2/1.484)-134950*std::exp(-Q2/.0755)))/std::pow((1.+y+.0011*y*y),10.59); //G4cout<<"Q2="<