10 #ifndef Pythia8_PartonSystems_H
11 #define Pythia8_PartonSystems_H
13 #include "PythiaStdlib.h"
27 PartonSystem() : iInA(0), iInB(0), sHat(0.) {iOut.reserve(10);}
48 void clear() {systems.resize(0);}
52 return systems.size() - 1;}
53 int sizeSys()
const {
return systems.size();}
56 void setInA(
int iSys,
int iPos) {systems[iSys].iInA = iPos;}
57 void setInB(
int iSys,
int iPos) {systems[iSys].iInB = iPos;}
58 void addOut(
int iSys,
int iPos) {systems[iSys].iOut.push_back(iPos);}
59 void setOut(
int iSys,
int iMem,
int iPos) {systems[iSys].iOut[iMem] = iPos;}
60 void replace(
int iSys,
int iPosOld,
int iPosNew);
61 void setSHat(
int iSys,
double sHatIn) {systems[iSys].sHat = sHatIn;}
64 bool hasInAB(
int iSys)
const {
return ( (systems[iSys].iInA > 0)
65 || (systems[iSys].iInB > 0) ) ;}
66 int getInA(
int iSys)
const {
return systems[iSys].iInA;}
67 int getInB(
int iSys)
const {
return systems[iSys].iInB;}
68 int sizeOut(
int iSys)
const {
return systems[iSys].iOut.size();}
69 int getOut(
int iSys,
int iMem)
const {
return systems[iSys].iOut[iMem];}
70 int sizeAll(
int iSys)
const {
return (hasInAB(iSys))
71 ? systems[iSys].iOut.size() + 2 : systems[iSys].iOut.size();}
72 int getAll(
int iSys,
int iMem)
const;
73 double getSHat(
int iSys)
const {
return systems[iSys].sHat;}
76 int getSystemOf(
int iPos,
bool alsoIn =
false)
const;
79 int getIndexOfOut(
int iSys,
int iPos)
const;
82 void list(ostream& os = cout)
const;
87 vector<PartonSystem> systems;
95 #endif // Pythia8_PartonSystems_H