G4ChipsPionPlusInelasticXS.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // The lust update: M.V. Kossov, CERN/ITEP(Moscow) 17-June-02
00028 // GEANT4 tag $Name: not supported by cvs2svn $
00029 //
00030 //
00031 // G4 Physics class: G4ChipsPionPlusInelasticXS for gamma+A cross sections
00032 // Created: M.V. Kossov, CERN/ITEP(Moscow), 20-Dec-03
00033 // The last update: M.V. Kossov, CERN/ITEP (Moscow) 15-Feb-04
00034 //
00035 // -------------------------------------------------------------------------------------
00036 // Short description: Cross-sections extracted (by W.Pokorski) from the CHIPS package for 
00037 // pion interactions. Original author: M. Kossov
00038 // -------------------------------------------------------------------------------------
00039 //
00040 
00041 #include "G4ChipsPionPlusInelasticXS.hh"
00042 #include "G4SystemOfUnits.hh"
00043 #include "G4DynamicParticle.hh"
00044 #include "G4ParticleDefinition.hh"
00045 #include "G4PionPlus.hh"
00046 
00047 // factory
00048 #include "G4CrossSectionFactory.hh"
00049 //
00050 G4_DECLARE_XS_FACTORY(G4ChipsPionPlusInelasticXS);
00051 
00052 G4ChipsPionPlusInelasticXS::G4ChipsPionPlusInelasticXS():G4VCrossSectionDataSet(Default_Name())
00053 {
00054   // Initialization of the
00055   lastLEN=0; // Pointer to lastArray of LowEn CS
00056   lastHEN=0; // Pointer to lastArray of HighEn CS
00057   lastN=0;   // The last N of calculated nucleus
00058   lastZ=0;   // The last Z of calculated nucleus
00059   lastP=0.;  // Last used in cross section Momentum
00060   lastTH=0.; // Last threshold momentum
00061   lastCS=0.; // Last value of the Cross Section
00062   lastI=0;   // The last position in the DAMDB
00063   LEN = new std::vector<G4double*>;
00064   HEN = new std::vector<G4double*>;
00065 }
00066 
00067 
00068 G4ChipsPionPlusInelasticXS::~G4ChipsPionPlusInelasticXS()
00069 {
00070   G4int lens=LEN->size();
00071   for(G4int i=0; i<lens; ++i) delete[] (*LEN)[i];
00072   delete LEN;
00073   G4int hens=HEN->size();
00074   for(G4int i=0; i<hens; ++i) delete[] (*HEN)[i];
00075   delete HEN;
00076 }
00077 
00078 G4bool G4ChipsPionPlusInelasticXS::IsIsoApplicable(const G4DynamicParticle* Pt, G4int, G4int,    
00079                                  const G4Element*,
00080                                  const G4Material*)
00081 {
00082   G4ParticleDefinition* particle = Pt->GetDefinition();
00083   if (particle == G4PionPlus::PionPlus()      ) return true;
00084   return false;
00085 }
00086 
00087 // The main member function giving the collision cross section (P is in IU, CS is in mb)
00088 // Make pMom in independent units ! (Now it is MeV)
00089 G4double G4ChipsPionPlusInelasticXS::GetIsoCrossSection(const G4DynamicParticle* Pt, G4int tgZ, G4int A,  
00090                                                         const G4Isotope*,
00091                                                         const G4Element*,
00092                                                         const G4Material*)
00093 {
00094   G4double pMom=Pt->GetTotalMomentum();
00095   G4int tgN = A - tgZ;
00096   
00097   return GetChipsCrossSection(pMom, tgZ, tgN, 211);
00098 }
00099 
00100 
00101 G4double G4ChipsPionPlusInelasticXS::GetChipsCrossSection(G4double pMom, G4int tgZ, G4int tgN, G4int)
00102 {
00103   static G4int j;                      // A#0f Z/N-records already tested in AMDB
00104   static std::vector <G4int>    colN;  // Vector of N for calculated nuclei (isotops)
00105   static std::vector <G4int>    colZ;  // Vector of Z for calculated nuclei (isotops)
00106   static std::vector <G4double> colP;  // Vector of last momenta for the reaction
00107   static std::vector <G4double> colTH; // Vector of energy thresholds for the reaction
00108   static std::vector <G4double> colCS; // Vector of last cross sections for the reaction
00109   // ***---*** End of the mandatory Static Definitions of the Associative Memory ***---***
00110 
00111   G4bool in=false;                     // By default the isotope must be found in the AMDB
00112   if(tgN!=lastN || tgZ!=lastZ)         // The nucleus was not the last used isotope
00113   {
00114     in = false;                        // By default the isotope haven't be found in AMDB  
00115     lastP   = 0.;                      // New momentum history (nothing to compare with)
00116     lastN   = tgN;                     // The last N of the calculated nucleus
00117     lastZ   = tgZ;                     // The last Z of the calculated nucleus
00118     lastI   = colN.size();             // Size of the Associative Memory DB in the heap
00119     j  = 0;                            // A#0f records found in DB for this projectile
00120     if(lastI) for(G4int i=0; i<lastI; i++) // AMDB exists, try to find the (Z,N) isotope
00121     {
00122       if(colN[i]==tgN && colZ[i]==tgZ) // Try the record "i" in the AMDB
00123       {
00124         lastI=i;                       // Remember the index for future fast/last use
00125         lastTH =colTH[i];              // The last THreshold (A-dependent)
00126         if(pMom<=lastTH)
00127         {
00128           return 0.;                   // Energy is below the Threshold value
00129         }
00130         lastP  =colP [i];              // Last Momentum  (A-dependent)
00131         lastCS =colCS[i];              // Last CrossSect (A-dependent)
00132         in = true;                     // This is the case when the isotop is found in DB
00133         // Momentum pMom is in IU ! @@ Units
00134         lastCS=CalculateCrossSection(-1,j,211,lastZ,lastN,pMom); // read & update
00135         if(lastCS<=0. && pMom>lastTH)  // Correct the threshold (@@ No intermediate Zeros)
00136         {
00137           lastCS=0.;
00138           lastTH=pMom;
00139         }
00140         break;                         // Go out of the LOOP
00141       }
00142       j++;                             // Increment a#0f records found in DB
00143     }
00144     if(!in)                            // This isotope has not been calculated previously
00145     {
00147       lastCS=CalculateCrossSection(0,j,211,lastZ,lastN,pMom); //calculate & create
00148       //if(lastCS>0.)                   // It means that the AMBD was initialized
00149       //{
00150 
00151       lastTH = 0; //ThresholdEnergy(tgZ, tgN); // The Threshold Energy which is now the last
00152         colN.push_back(tgN);
00153         colZ.push_back(tgZ);
00154         colP.push_back(pMom);
00155         colTH.push_back(lastTH);
00156         colCS.push_back(lastCS);
00157       //} // M.K. Presence of H1 with high threshold breaks the syncronization
00158       return lastCS*millibarn;
00159     } // End of creation of the new set of parameters
00160     else
00161     {
00162       colP[lastI]=pMom;
00163       colCS[lastI]=lastCS;
00164     }
00165   } // End of parameters udate
00166   else if(pMom<=lastTH)
00167   {
00168     return 0.;                         // Momentum is below the Threshold Value -> CS=0
00169   }
00170   else                                 // It is the last used -> use the current tables
00171   {
00172     lastCS=CalculateCrossSection(1,j,211,lastZ,lastN,pMom); // Only read and UpdateDB
00173     lastP=pMom;
00174   }
00175   return lastCS*millibarn;
00176 }
00177 
00178 // The main member function giving the gamma-A cross section (E in GeV, CS in mb)
00179 G4double G4ChipsPionPlusInelasticXS::CalculateCrossSection(G4int F, G4int I,
00180                                         G4int, G4int targZ, G4int targN, G4double Momentum)
00181 {
00182   static const G4double THmin=27.;     // default minimum Momentum (MeV/c) Threshold
00183   static const G4double THmiG=THmin*.001; // minimum Momentum (GeV/c) Threshold
00184   static const G4double dP=10.;        // step for the LEN (Low ENergy) table MeV/c
00185   static const G4double dPG=dP*.001;   // step for the LEN (Low ENergy) table GeV/c
00186   static const G4int    nL=105;        // A#of LEN points in E (step 10 MeV/c)
00187   static const G4double Pmin=THmin+(nL-1)*dP; // minP for the HighE part with safety
00188   static const G4double Pmax=227000.;  // maxP for the HEN (High ENergy) part 227 GeV
00189   static const G4int    nH=224;        // A#of HEN points in lnE
00190   static const G4double milP=std::log(Pmin);// Low logarithm energy for the HEN part
00191   static const G4double malP=std::log(Pmax);// High logarithm energy (each 2.75 percent)
00192   static const G4double dlP=(malP-milP)/(nH-1); // Step in log energy in the HEN part
00193   static const G4double milPG=std::log(.001*Pmin);// Low logarithmEnergy for HEN part GeV/c
00194   G4double sigma=0.;
00195   if(F&&I) sigma=0.;                   // @@ *!* Fake line *!* to use F & I !!!Temporary!!!
00196   //G4double A=targN+targZ;              // A of the target
00197   if(F<=0)                             // This isotope was not the last used isotop
00198   {
00199     if(F<0)                            // This isotope was found in DAMDB =-----=> RETRIEVE
00200     {
00201       G4int sync=LEN->size();
00202       if(sync<=I) G4cerr<<"*!*G4ChipsPiMinusNuclCS::CalcCrosSect:Sync="<<sync<<"<="<<I<<G4endl;
00203       lastLEN=(*LEN)[I];               // Pointer to prepared LowEnergy cross sections
00204       lastHEN=(*HEN)[I];               // Pointer to prepared High Energy cross sections
00205     }
00206     else                               // This isotope wasn't calculated before => CREATE
00207     {
00208       lastLEN = new G4double[nL];      // Allocate memory for the new LEN cross sections
00209       lastHEN = new G4double[nH];      // Allocate memory for the new HEN cross sections
00210       // --- Instead of making a separate function ---
00211       G4double P=THmiG;                // Table threshold in GeV/c
00212       for(G4int k=0; k<nL; k++)
00213       {
00214         lastLEN[k] = CrossSectionLin(targZ, targN, P);
00215         P+=dPG;
00216       }
00217       G4double lP=milPG;
00218       for(G4int n=0; n<nH; n++)
00219       {
00220         lastHEN[n] = CrossSectionLog(targZ, targN, lP);
00221         lP+=dlP;
00222       }
00223       // --- End of possible separate function
00224       // *** The synchronization check ***
00225       G4int sync=LEN->size();
00226       if(sync!=I)
00227       {
00228         G4cerr<<"***G4ChipsPiMinusNuclCS::CalcCrossSect: Sinc="<<sync<<"#"<<I<<", Z=" <<targZ
00229               <<", N="<<targN<<", F="<<F<<G4endl;
00230         //G4Exception("G4PiMinusNuclearCS::CalculateCS:","39",FatalException,"DBoverflow");
00231       }
00232       LEN->push_back(lastLEN);         // remember the Low Energy Table
00233       HEN->push_back(lastHEN);         // remember the High Energy Table
00234     } // End of creation of the new set of parameters
00235   } // End of parameters udate
00236   // =-----------------= NOW the Magic Formula =-------------------------=
00237   if (Momentum<lastTH) return 0.;      // It must be already checked in the interface class
00238   else if (Momentum<Pmin)              // High Energy region
00239   {
00240     sigma=EquLinearFit(Momentum,nL,THmin,dP,lastLEN);
00241   }
00242   else if (Momentum<Pmax)              // High Energy region
00243   {
00244     G4double lP=std::log(Momentum);
00245     sigma=EquLinearFit(lP,nH,milP,dlP,lastHEN);
00246   }
00247   else                                 // UHE region (calculation, not frequent)
00248   {
00249     G4double P=0.001*Momentum;         // Approximation formula is for P in GeV/c
00250     sigma=CrossSectionFormula(targZ, targN, P, std::log(P));
00251   }
00252   if(sigma<0.) return 0.;
00253   return sigma;
00254 }
00255 
00256 // Electromagnetic momentum-threshold (in MeV/c) 
00257 G4double G4ChipsPionPlusInelasticXS::ThresholdMomentum(G4int tZ, G4int tN)
00258 {
00259   static const G4double third=1./3.;
00260   static const G4double pM = G4PionPlus::PionPlus()->Definition()->GetPDGMass(); // Projectile mass in MeV
00261   static const G4double tpM= pM+pM;       // Doubled projectile mass (MeV)
00262   G4double tA=tZ+tN;
00263   if(tZ<.99 || tN<0.) return 0.;
00264   else if(tZ==1 && tN==0) return 300.;    // A threshold on the free proton
00265   //G4double dE=1.263*tZ/(1.+std::pow(tA,third));
00266   G4double dE=tZ/(1.+std::pow(tA,third)); // Safety for diffused edge of the nucleus (QE)
00267   G4double tM=931.5*tA;
00268   G4double T=dE+dE*(dE/2+pM)/tM;
00269   return std::sqrt(T*(tpM+T));
00270 }
00271 
00272 // Calculation formula for piMinus-nuclear inelastic cross-section (mb) (P in GeV/c)
00273 G4double G4ChipsPionPlusInelasticXS::CrossSectionLin(G4int tZ, G4int tN, G4double P)
00274 {
00275   G4double lP=std::log(P);
00276   return CrossSectionFormula(tZ, tN, P, lP);
00277 }
00278 
00279 // Calculation formula for piMinus-nuclear inelastic cross-section (mb) log(P in GeV/c)
00280 G4double G4ChipsPionPlusInelasticXS::CrossSectionLog(G4int tZ, G4int tN, G4double lP)
00281 {
00282   G4double P=std::exp(lP);
00283   return CrossSectionFormula(tZ, tN, P, lP);
00284 }
00285 // Calculation formula for piMinus-nuclear inelastic cross-section (mb) log(P in GeV/c)
00286 G4double G4ChipsPionPlusInelasticXS::CrossSectionFormula(G4int tZ, G4int tN,
00287                                                               G4double P, G4double lP)
00288 {
00289   G4double sigma=0.;
00290   if(tZ==1 && !tN)                        // PiPlus-Proton interaction from G4QuasiElRatios
00291   {
00292     G4double ld=lP-3.5;
00293     G4double ld2=ld*ld;
00294     G4double p2=P*P;
00295     G4double p4=p2*p2;
00296     G4double sp=std::sqrt(P);
00297     G4double lm=lP-.32;
00298     G4double md=lm*lm+.04;
00299     G4double El=(.0557*ld2+2.4+6./sp)/(1.+3./p4);
00300     G4double To=(.3*ld2+22.3+5./sp)/(1.+1./p4);
00301     sigma=(To-El)+.1/md;
00302   }
00303   else if(tZ==1 && tN==1)                 // pimp_tot
00304   {
00305     G4double p2=P*P;
00306     G4double d=lP-2.7;
00307     G4double f=lP+1.25;
00308     G4double gg=lP-.017;
00309     sigma=(.55*d*d+38.+23./std::sqrt(P))/(1.+.3/p2/p2)+18./(f*f+.1089)+.02/(gg*gg+.0025);
00310   }
00311   else if(tZ<97 && tN<152)                // General solution
00312   {
00313     G4double d=lP-4.2;
00314     G4double p2=P*P;
00315     G4double p4=p2*p2;
00316     G4double a=tN+tZ;                     // A of the target
00317     G4double al=std::log(a);
00318     G4double sa=std::sqrt(a);
00319     G4double ssa=std::sqrt(sa);
00320     G4double a2=a*a;
00321     G4double c=41.*std::exp(al*.68)*(1.+44./a2)/(1.+8./a)/(1.+200./a2/a2);
00322     G4double f=290.*ssa/(1.+34./a/ssa);
00323     G4double gg=-1.32-al*.043;
00324     G4double u=lP-gg;
00325     G4double h=al*(.4-.055*al);
00326     G4double r=.01+a2*5.E-8;
00327     sigma=(c+d*d)/(1.+(.2-.009*sa)/p4)+f/(u*u+h*h)/(1.+r/p2);
00328   }
00329   else
00330   {
00331     G4cerr<<"-Warning-G4ChipsPiPlusNuclearCroSect::CSForm:*Bad A* Z="<<tZ<<", N="<<tN<<G4endl;
00332     sigma=0.;
00333   }
00334   if(sigma<0.) return 0.;
00335   return sigma;  
00336 }
00337 
00338 G4double G4ChipsPionPlusInelasticXS::EquLinearFit(G4double X, G4int N, G4double X0, G4double DX, G4double* Y)
00339 {
00340   if(DX<=0. || N<2)
00341     {
00342       G4cerr<<"***G4ChipsPionPlusInelasticXS::EquLinearFit: DX="<<DX<<", N="<<N<<G4endl;
00343       return Y[0];
00344     }
00345   
00346   G4int    N2=N-2;
00347   G4double d=(X-X0)/DX;
00348   G4int         j=static_cast<int>(d);
00349   if     (j<0)  j=0;
00350   else if(j>N2) j=N2;
00351   d-=j; // excess
00352   G4double yi=Y[j];
00353   G4double sigma=yi+(Y[j+1]-yi)*d;
00354   
00355   return sigma;
00356 }

Generated on Mon May 27 17:47:53 2013 for Geant4 by  doxygen 1.4.7