95 std::vector<G4double> nnData;
96 std::vector<G4double> ppData;
97 std::vector<G4double> pnData;
98 std::vector<G4double> pipData;
99 std::vector<G4double> KpData;
100 std::vector<G4double> KnData;
101 std::vector<G4double> gpData;
102 std::vector<G4double> ggData;
108 ppData.push_back(
ppPDGFit[i] * GeV);
109 pnData.push_back(
npPDGFit[i] * GeV);
111 KpData.push_back(
KpPDGFit[i] * GeV);
112 KnData.push_back(
KnPDGFit[i] * GeV);
116 for (i=2; i<
nFit; i++)
130 xMap[piPlusp] = pipData;
131 xMap[piMinusp] = pipData;
132 xMap[KPlusp] = KpData;
133 xMap[KPlusn] = KnData;
134 xMap[KMinusp] = KpData;
135 xMap[KMinusn] = KnData;
171 if ( (enc1 < 0 && enc2 >0) || (enc2 < 0 && enc1 >0) ) coeff = 1.;
174 std::pair<const G4ParticleDefinition *,const G4ParticleDefinition *> trkPair(def1,def2);
177 trkPair = std::pair<const G4ParticleDefinition *,const G4ParticleDefinition *>(def2,def1);
179 std::vector<G4double>
data;
181 if (
xMap.find(trkPair) !=
xMap.end())
184 PairDoubleMap::const_iterator iter;
185 for (iter =
xMap.begin(); iter !=
xMap.end(); ++iter)
187 std::pair<const G4ParticleDefinition *,const G4ParticleDefinition *> thePair = (*iter).first;
188 if (thePair == trkPair)
190 data = (*iter).second;
205 if (sqrtS < eMinFit || sqrtS > eMaxFit)
207 G4cout <<
"WARNING! G4XPDGTotal::PDGTotal extrapolating cross section at "
209 <<
" GeV outside the PDG fit range "
210 << eMinFit /
GeV <<
" - " << eMaxFit /
GeV <<
" GeV " <<
G4endl;
223 G4cout <<
"WARNING! G4XPDGTotal::PDGTotal "
224 << name1 <<
"-" << name2
225 <<
" total cross section: Ecm "
226 << sqrtS / GeV <<
" GeV, negative cross section "