9#ifndef RIVET_PARTICLEIDUTILS_HH
10#define RIVET_PARTICLEIDUTILS_HH
15#include "Rivet/Tools/ParticleName.hh"
16#include "Rivet/Math/MathUtils.hh"
44 inline size_t _pow10(
unsigned int power) {
46 assert(power < 16 &&
"_pow10 only defined for powers < 16");
47 static const size_t POWS10[] = {1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000, 10000000000, 100000000000, 1000000000000, 10000000000000, 100000000000000, 1000000000000000, 10000000000000000};
58 enum Location { nj=1, nq3, nq2, nq1, nl, nr, n, n8, n9, n10 };
65 inline unsigned short _digit(
Location loc,
int pid) {
66 const int div = _pow10(loc-1);
67 return (abs(
pid)/div) % 10;
71 inline int _extraBits(
int pid) {
72 return abs(
pid)/10000000;
77 inline int _fundamentalID(
int pid) {
78 if (_extraBits(
pid) > 0)
return 0;
79 if (_digit(nq2,
pid) == 0 && _digit(nq1,
pid) == 0) {
80 return abs(
pid) % 10000;
81 }
else if (abs(
pid) <= 100) {
108 if (abs(
pid) == 2212)
return true;
110 if (_digit(n10,
pid) == 1 && _digit(n9,
pid) == 0) {
113 if ((abs(
pid)/10) % 1000 >= (abs(
pid)/10000) % 1000)
return true;
122 if (abs(
pid) == 2212) {
137 if (abs(
pid) == 2212) {
152 if (abs(
pid) == 2212) {
187 return pid == PHOTON;
192 return abs(
pid) == ELECTRON;
197 return abs(
pid) == MUON;
202 return abs(
pid) == TAU;
207 const long apid = abs(
pid);
208 return apid == 11 || apid == 13 || apid == 15 || apid == 17;
218 const long apid = abs(
pid);
219 return apid == 12 || apid == 14 || apid == 16 || apid == 18;
225 return pid == WPLUSBOSON;
230 return pid == WMINUSBOSON;
235 return abs(
pid) == WPLUSBOSON;
240 return pid == Z0BOSON;
245 return pid == HIGGSBOSON ||
pid == 26;
253 return pid == GRAVITON;
265 return abs(
pid) == SQUARK;
270 return abs(
pid) == CQUARK;
275 return abs(
pid) == BQUARK;
280 return abs(
pid) == TQUARK;
291 return pid == 110 ||
pid == 990 ||
pid == 9990;
296 if (_extraBits(
pid) > 0)
return false;
298 const int aid = abs(
pid);
299 if (aid == 130 || aid == 310 || aid == 210)
return true;
300 if (aid <= 100)
return false;
301 if (_digit(nq1,
pid) != 0)
return false;
302 if (_digit(nq2,
pid) == 0)
return false;
303 if (_digit(nq3,
pid) == 0)
return false;
304 if (_digit(nq2,
pid) < _digit(nq3,
pid))
return false;
307 if (aid == 150 || aid == 350 || aid == 510 || aid == 530)
return true;
311 if (_digit(nj,
pid) > 0 && _digit(nq3,
pid) > 0 && _digit(nq2,
pid) > 0 && _digit(nq1,
pid) == 0) {
312 return !(_digit(nq3,
pid) == _digit(nq2,
pid) &&
pid < 0);
319 if (_extraBits(
pid) > 0)
return false;
321 if (abs(
pid) <= 100)
return false;
322 if (_fundamentalID(
pid) <= 100 && _fundamentalID(
pid) > 0)
return false;
323 if (abs(
pid) == 2110 || abs(
pid) == 2210)
return true;
324 if (_digit(nj,
pid) == 0)
return false;
325 if (_digit(nq1,
pid) == 0 || _digit(nq2,
pid) == 0 || _digit(nq3,
pid) == 0)
return false;
336 inline bool isDiquark(
int pid) {
337 if (_extraBits(
pid) > 0)
return false;
339 if (abs(
pid) <= 100)
return false;
340 if (_fundamentalID(
pid) <= 100 && _fundamentalID(
pid) > 0)
return false;
341 if (_digit(nq1,
pid) == 0)
return false;
342 if (_digit(nq2,
pid) == 0)
return false;
343 if (_digit(nq3,
pid) != 0)
return false;
344 if (_digit(nq1,
pid) < _digit(nq2,
pid))
return false;
345 if (_digit(nj,
pid) > 0 && _digit(nq3,
pid) == 0 && _digit(nq2,
pid) > 0 && _digit(nq1,
pid) > 0)
return true;
356 return isDiquark(
pid);
363 if (_extraBits(
pid) > 0)
return false;
365 if (_digit(n,
pid) != 9)
return false;
366 if (_digit(nr,
pid) == 9 || _digit(nr,
pid) == 0)
return false;
367 if (_digit(nj,
pid) == 9 || _digit(nl,
pid) == 0)
return false;
368 if (_digit(nq1,
pid) == 0)
return false;
369 if (_digit(nq2,
pid) == 0)
return false;
370 if (_digit(nq3,
pid) == 0)
return false;
371 if (_digit(nj,
pid) == 0)
return false;
373 if (_digit(nq2,
pid) > _digit(nq1,
pid))
return false;
374 if (_digit(nq1,
pid) > _digit(nl,
pid))
return false;
375 if (_digit(nl,
pid) > _digit(nr,
pid))
return false;
386 if (_digit(nq1,
pid) != 0)
return false;
387 const int fq = _digit(nq2,
pid);
388 return (fq > 3 && _digit(nj,
pid) > 0 && _digit(nq3,
pid) == fq);
395 if (_extraBits(
pid) > 0)
return false;
413 if (_extraBits(
pid) > 0)
return false;
415 if (_fundamentalID(
pid) >= 11 && _fundamentalID(
pid) <= 18)
return true;
436 if (_extraBits(
pid) > 0)
return false;
437 if (_digit(n,
pid) != 1 && _digit(n,
pid) != 2)
return false;
438 if (_digit(nr,
pid) != 0)
return false;
440 const int fundId = _fundamentalID(
pid);
441 if (fundId == 0)
return false;
442 if (_digit(n,
pid) == 1) {
444 }
else if (_digit(n,
pid) == 2) {
454 if (_extraBits(
pid) > 0)
return false;
455 if (_digit(n,
pid) != 1)
return false;
456 if (_digit(nr,
pid) != 0)
return false;
460 if (_digit(nq2,
pid) == 0)
return false;
461 if (_digit(nq3,
pid) == 0)
return false;
462 if (_digit(nj,
pid) == 0)
return false;
472 if (_extraBits(
pid) > 0)
return false;
473 return _digit(n,
pid) == 3;
478 if (_extraBits(
pid) > 0)
return false;
479 return _digit(n,
pid) == 4 && _digit(nr,
pid) == 0;
484 if (_extraBits(
pid) > 0)
return false;
485 const int ndigit = _digit(n,
pid);
486 return ndigit == 5 || ndigit == 6;
492 return abs(
pid) == 42;
500 const int ndigit = _digit(n,
pid);
501 const int nrdigit = _digit(nr,
pid);
502 if ((ndigit == 0 && nrdigit == 0) || (ndigit == 5 && nrdigit == 9))
513 return (_digit(n,
pid) == 4 && _digit(nr,
pid) == 9);
526 return abs(
pid) == BPRIME || abs(
pid) == TPRIME || abs(
pid) == LPRIME || abs(
pid) == NUPRIME;
531 if (_digit(n,
pid) != 4)
return false;
532 if (_digit(nr,
pid) != 1)
return false;
533 if (_digit(nl,
pid) != 1 && _digit(nl,
pid) != 2)
return false;
538 if (_digit(nj,
pid) != 0)
return false;
549 if (_extraBits(
pid) != 1)
return false;
550 if (_digit(n,
pid) != 0)
return false;
551 if (_digit(nr,
pid) != 0)
return false;
553 if ((abs(
pid)/10) % 10000 == 0)
return false;
555 if (_digit(nj,
pid) != 0)
return false;
571 if (_digit(n,
pid) != 5 && _digit(n,
pid) != 6)
return false;
572 if (_digit(nl,
pid) != 0)
return false;
573 return _fundamentalID(
pid)==40;
578 if (_digit( n,
pid) != 1)
return false;
579 if (_digit(nr,
pid) != 0)
return false;
580 if (_digit(nl,
pid) != 0)
return false;
581 if (_digit(nj,
pid) != 0)
return false;
595 inline bool _isValid(
int pid) {
597 if (_digit(n,
pid) == 9 && _digit(nr,
pid) == 9)
return true;
603 if (_digit(n,
pid) == 9 && _digit(nr,
pid) == 0)
return false;
604 if (isDiquark(
pid))
return true;
611 return (_fundamentalID(
pid) > 0);
613 inline bool isValid(
int pid) {
614 return _isValid(
pid);
623 inline bool _hasQ(
int pid,
int q) {
624 if (abs(
pid) == q)
return true;
625 if (!_isValid(
pid))
return false;
631 for (
int i = 6; i > 1; --i) {
634 }
else if ( i == iz-1 ) {
642 if (_digit(nq3,
pid) == q || _digit(nq2,
pid) == q || _digit(nq1,
pid) == q )
return true;
644 if (_digit(nl,
pid) == q || _digit(nr,
pid) == q)
return true;
821 const int fund = _fundamentalID(
pid);
824 if (fund > 0 && fund < 7)
return 2;
825 if (fund == 9)
return 3;
826 if (fund > 10 && fund < 17)
return 2;
827 if (fund > 20 && fund < 25)
return 3;
829 }
else if (_extraBits(
pid) > 0) {
832 return abs(
pid) % 10;
839 if (_digit(n,
pid) == 9 && _digit(nr,
pid) == 0)
return 0;
841 const int fund = _fundamentalID(
pid);
842 if (fund == 51 || fund == 54)
return 1;
843 if (fund == 52)
return 2;
844 if (fund == 53 || fund == 55)
return 3;
846 const int inl = _digit(nl,
pid);
847 const int js = _digit(nj,
pid);
848 if (inl == 0 && js >= 3)
return 1;
849 else if (inl == 0 && js == 1)
return 0;
850 else if (inl == 1 && js >= 3)
return 0;
851 else if (inl == 2 && js >= 3)
return 1;
852 else if (inl == 1 && js == 1)
return 1;
853 else if (inl == 3 && js >= 3)
return 1;
862 if (_digit(n,
pid) == 9 && _digit(nr,
pid) == 0)
return 0;
864 const int inl = _digit(nl,
pid);
865 const int js = _digit(nj,
pid);
866 if (inl == 0 && js == 3)
return 0;
867 else if (inl == 0 && js == 5)
return 1;
868 else if (inl == 0 && js == 7)
return 2;
869 else if (inl == 0 && js == 9)
return 3;
870 else if (inl == 0 && js == 1)
return 0;
871 else if (inl == 1 && js == 3)
return 1;
872 else if (inl == 1 && js == 5)
return 2;
873 else if (inl == 1 && js == 7)
return 3;
874 else if (inl == 1 && js == 9)
return 4;
875 else if (inl == 2 && js == 3)
return 1;
876 else if (inl == 2 && js == 5)
return 2;
877 else if (inl == 2 && js == 7)
return 3;
878 else if (inl == 2 && js == 9)
return 4;
879 else if (inl == 1 && js == 1)
return 1;
880 else if (inl == 3 && js == 3)
return 2;
881 else if (inl == 3 && js == 5)
return 3;
882 else if (inl == 3 && js == 7)
return 4;
883 else if (inl == 3 && js == 9)
return 5;
896 static int ch100[100] = { -1, 2, -1, 2, -1, 2, -1, 2, 0, 0,
897 -3, 0, -3, 0, -3, 0, -3, 0, 0, 0,
898 0, 0, 0, 3, 0, 0, 0, 0, 0, 0,
899 0, 0, 0, 3, 0, 0, 3, 0, 0, 0,
900 0, -1, 0, 0, 0, 0, 0, 0, 0, 0,
901 0, 6, 3, 6, 0, 0, 0, 0, 0, 0,
902 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
903 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
904 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
905 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
907 const int ida = abs(
pid);
909 if (
pid == 21 ||
pid == 22)
return 0;
910 if (ida == 211)
return std::signbit(
pid) ? -3 : 3;
911 if (
pid == 111)
return 0;
917 const unsigned short q1 = _digit(nq1,
pid);
918 const unsigned short q2 = _digit(nq2,
pid);
919 const unsigned short q3 = _digit(nq3,
pid);
920 const unsigned short ql = _digit(nl,
pid);
921 const int sid = _fundamentalID(
pid);
923 if (ida == 0 || _extraBits(
pid) > 0) {
925 }
else if (sid > 0 && sid <= 100) {
926 if (ida == 1000017 || ida == 1000018 || ida == 1000034) ch3 = 0;
927 else if (ida > 1000050 && ida <= 1000060) ch3 = 0;
928 else if (ida > 50 && ida <= 60) ch3 = 0;
929 else if (ida == 5100061 || ida == 5100062) ch3 = 6;
930 else ch3 = ch100[sid-1];
931 }
else if (_digit(nj,
pid) == 0) {
934 ch3 = ((q2 == 3 || q2 == 5) ? -1 : 1) * (ch100[q2-1] - ch100[q3-1]);
936 ch3 = ch100[q3-1] + ch100[q2-1] + ch100[q1-1];
938 ch3 = 3*( (ida/10) % 10000);
942 ch3 = 3*( (ida/10) % 1000) * (ql == 2 ? -1 : 1);
945 if (q1 == 0 || q1 == 9) {
946 if (q2 == 3 || q2 == 5) {
947 ch3 = ch100[q3-1] - ch100[q2-1];
949 ch3 = ch100[q2-1] - ch100[q3-1];
951 }
else if (ql == 0) {
952 ch3 = ch100[q3-1] + ch100[q2-1] + ch100[q1-1];
953 }
else if (_digit(nr,
pid) == 0) {
954 ch3 = ch100[q3-1] + ch100[q2-1] + ch100[q1-1] + ch100[ql-1];
957 ch3 = ch100[q2-1] + ch100[q1-1];
961 if (
pid < 0) ch3 *= -1;
1062 inline bool isSameSign(PdgId a, PdgId b) {
return a*b >= 0; }
1063 inline bool isOppSign(PdgId a, PdgId b) {
return !isSameSign(a, b); }
1064 inline bool isSameFlav(PdgId a, PdgId b) {
return abs(a) == abs(b); }
1065 inline bool isOppFlav(PdgId a, PdgId b) {
return !isSameFlav(a, b); }
1067 inline bool isOSSF(PdgId a, PdgId b) {
return isOppSign(a, b) && isSameFlav(a, b); }
1068 inline bool isSSSF(PdgId a, PdgId b) {
return isSameSign(a, b) && isSameFlav(a, b); }
1069 inline bool isOSOF(PdgId a, PdgId b) {
return isOppSign(a, b) && isOppFlav(a, b); }
1070 inline bool isSSOF(PdgId a, PdgId b) {
return isSameSign(a, b) && isOppFlav(a, b); }
int sSpin(int pid)
sSpin returns 2S+1, where S is the spin
Definition ParticleIdUtils.hh:836
int jSpin(int pid)
jSpin returns 2J+1, where J is the total spin
Definition ParticleIdUtils.hh:820
int lSpin(int pid)
lSpin returns 2L+1, where L is the orbital angular momentum
Definition ParticleIdUtils.hh:859
bool isCharged(int pid)
Determine if the particle is electrically charged.
Definition ParticleIdUtils.hh:993
bool isNeutral(int pid)
Determine if the particle is electrically neutral.
Definition ParticleIdUtils.hh:998
int threeCharge(int pid)
Definition ParticleIdUtils.hh:967
int abscharge3(int pid)
Return the absolute value of 3 times the EM charge.
Definition ParticleIdUtils.hh:972
double charge(int pid)
Return the EM charge (as floating point)
Definition ParticleIdUtils.hh:977
double abscharge(int pid)
Return the EM charge (as floating point)
Definition ParticleIdUtils.hh:982
int charge3(int pid)
Three times the EM charge (as integer)
Definition ParticleIdUtils.hh:895
bool isBottom(int pid)
Determine if the PID is that of a b/bbar.
Definition ParticleIdUtils.hh:274
bool isParton(int pid)
Determine if the PID is that of a parton (quark or gluon)
Definition ParticleIdUtils.hh:180
bool isW(int pid)
Determine if the PID is that of a W+-.
Definition ParticleIdUtils.hh:234
bool isWminus(int pid)
Determine if the PID is that of a W-.
Definition ParticleIdUtils.hh:229
bool isZ(int pid)
Determine if the PID is that of a Z0.
Definition ParticleIdUtils.hh:239
bool isMuon(int pid)
Determine if the PID is that of an muon or antimuon.
Definition ParticleIdUtils.hh:196
bool isHiggs(int pid)
Determine if the PID is that of an SM/lightest SUSY Higgs.
Definition ParticleIdUtils.hh:244
bool isCharm(int pid)
Determine if the PID is that of a c/cbar.
Definition ParticleIdUtils.hh:269
bool isGraviton(int pid)
Is this a graviton?
Definition ParticleIdUtils.hh:252
bool isChLepton(int pid)
Definition ParticleIdUtils.hh:212
bool isTau(int pid)
Determine if the PID is that of an tau or antitau.
Definition ParticleIdUtils.hh:201
bool isGluon(int pid)
Determine if the PID is that of a gluon.
Definition ParticleIdUtils.hh:175
bool isWplus(int pid)
Determine if the PID is that of a W+.
Definition ParticleIdUtils.hh:224
bool isPhoton(int pid)
Determine if the PID is that of a photon.
Definition ParticleIdUtils.hh:186
bool isNeutrino(int pid)
Determine if the PID is that of a neutrino.
Definition ParticleIdUtils.hh:217
bool isElectron(int pid)
Determine if the PID is that of an electron or positron.
Definition ParticleIdUtils.hh:191
bool isChargedLepton(int pid)
Determine if the PID is that of a charged lepton.
Definition ParticleIdUtils.hh:206
bool isQuark(int pid)
Determine if the PID is that of a quark.
Definition ParticleIdUtils.hh:170
bool isTop(int pid)
Determine if the PID is that of a t/tbar.
Definition ParticleIdUtils.hh:279
bool isStrange(int pid)
Determine if the PID is that of an s/sbar.
Definition ParticleIdUtils.hh:264
bool isRHadron(int pid)
Is this an R-hadron?
Definition ParticleIdUtils.hh:451
bool isQBall(int pid)
Definition ParticleIdUtils.hh:548
bool isSMFundamental(int pid)
Is this an SM fundamental particle?
Definition ParticleIdUtils.hh:425
bool isMagMonopole(int pid)
Is this from a magnetic monopole or dyon?
Definition ParticleIdUtils.hh:530
bool isLepton(int pid)
Definition ParticleIdUtils.hh:412
bool isSUSY(int pid)
Is this a fundamental SUSY particle?
Definition ParticleIdUtils.hh:434
bool isKK(int pid)
Is this a Kaluza-Klein excitation?
Definition ParticleIdUtils.hh:483
bool isRhadron(int pid)
Alias.
Definition ParticleIdUtils.hh:466
bool isExotic(int pid)
Is this an exotic particle?
Definition ParticleIdUtils.hh:517
bool isTechnicolor(int pid)
Is this a technicolor particle?
Definition ParticleIdUtils.hh:471
bool isLeptoQuark(int pid)
Is this a lepto-quark?
Definition ParticleIdUtils.hh:490
bool isAECO(int pid)
Is this an anomalously electrically charged particle (AECO)?
Definition ParticleIdUtils.hh:577
bool isExcitedLepton(int pid)
Is this an excited lepton?
Definition ParticleIdUtils.hh:564
bool isBSM(int pid)
Is this a BSM particle (including graviton)?
Definition ParticleIdUtils.hh:586
bool isFourthGen(int pid)
Is this a 4th generation particle?
Definition ParticleIdUtils.hh:525
bool isBSMBoson(int pid)
Is this a valid BSM boson (SUSY Higgs, W', Z')?
Definition ParticleIdUtils.hh:420
bool isExcited(int pid)
Is this an excited (composite) quark or lepton?
Definition ParticleIdUtils.hh:477
bool isDM(int pid)
Convenience alias.
Definition ParticleIdUtils.hh:507
bool isBlackHole(int pid)
Is this a black hole?
Definition ParticleIdUtils.hh:570
bool isHiddenValley(int pid)
Is this a Hidden Valley particle?
Definition ParticleIdUtils.hh:512
bool isQball(int pid)
Alias.
Definition ParticleIdUtils.hh:559
bool isDyon(int pid)
Just treat a dyon as an alias for magmonopole for now.
Definition ParticleIdUtils.hh:542
bool isDarkMatter(int pid)
Definition ParticleIdUtils.hh:499
bool isEMInteracting(int pid)
Determine if the PID is that of a electromagnetically interacting particle.
Definition ParticleIdUtils.hh:1014
bool isWeakInteracting(int pid)
Definition ParticleIdUtils.hh:1022
bool isStrongInteracting(int pid)
Determine if the PID is that of a strongly interacting particle.
Definition ParticleIdUtils.hh:1009
int lambda(int pid)
Definition ParticleIdUtils.hh:159
int nuclA(int pid)
Definition ParticleIdUtils.hh:135
int Z(int pid)
Definition ParticleIdUtils.hh:129
int A(int pid)
Definition ParticleIdUtils.hh:144
int nuclNlambda(int pid)
Definition ParticleIdUtils.hh:150
bool isNucleus(int pid)
Is this a nucleus PID?
Definition ParticleIdUtils.hh:106
int nuclZ(int pid)
Definition ParticleIdUtils.hh:120
bool isResonance(int pid)
Definition ParticleIdUtils.hh:1040
bool isGenSpecific(int pid)
Determine if the PID is in the generator-specific range.
Definition ParticleIdUtils.hh:1033
bool isTransportable(int pid)
Definition ParticleIdUtils.hh:1048
bool isLightHadron(int pid)
Determine if the PID is that of a light flavour (not b or c) hadron.
Definition ParticleIdUtils.hh:734
bool isCharmHadron(int pid)
Definition ParticleIdUtils.hh:779
bool isStrangeBaryon(int pid)
Definition ParticleIdUtils.hh:798
bool isHeavyFlavor(int pid)
Determine if the particle is a heavy flavour hadron or parton.
Definition ParticleIdUtils.hh:681
bool isHeavyHadron(int pid)
Determine if the PID is that of a heavy flavour (b or c) hadron.
Definition ParticleIdUtils.hh:719
bool isCharmMeson(int pid)
Determine if the PID is that of a c-meson.
Definition ParticleIdUtils.hh:759
bool isStrangeHadron(int pid)
Definition ParticleIdUtils.hh:807
bool isCharmBaryon(int pid)
Determine if the PID is that of a c-baryon.
Definition ParticleIdUtils.hh:769
bool isHeavyBaryon(int pid)
Determine if the PID is that of a heavy flavour (b or c) baryon.
Definition ParticleIdUtils.hh:714
bool isHeavyMeson(int pid)
Determine if the PID is that of a heavy flavour (b or c) meson.
Definition ParticleIdUtils.hh:709
bool isLightBaryon(int pid)
Determine if the PID is that of a light flavour (not b or c) baryon.
Definition ParticleIdUtils.hh:729
bool isBottomBaryon(int pid)
Determine if the PID is that of a b-baryon.
Definition ParticleIdUtils.hh:745
bool isLightParton(int pid)
Determine if the PID is that of a light parton (u,d,s)
Definition ParticleIdUtils.hh:703
bool isStrangeMeson(int pid)
Definition ParticleIdUtils.hh:789
bool isHeavyParton(int pid)
Determine if the PID is that of a heavy parton (c,b,t)
Definition ParticleIdUtils.hh:698
bool isBottomHadron(int pid)
Determine if the PID is that of a b-hadron.
Definition ParticleIdUtils.hh:750
bool isHeavyFlavour(int pid)
British-spelling alias for isHeavyFlavor.
Definition ParticleIdUtils.hh:686
bool isBottomMeson(int pid)
Determine if the PID is that of a b-meson.
Definition ParticleIdUtils.hh:740
bool isLightMeson(int pid)
Determine if the PID is that of a light flavour (not b or c) meson.
Definition ParticleIdUtils.hh:724
bool hasUp(int pid)
Does this particle contain an up quark?
Definition ParticleIdUtils.hh:654
bool hasTop(int pid)
Does this particle contain a top quark?
Definition ParticleIdUtils.hh:670
bool hasBottom(int pid)
Does this particle contain a bottom quark?
Definition ParticleIdUtils.hh:666
bool hasStrange(int pid)
Does this particle contain a strange quark?
Definition ParticleIdUtils.hh:658
bool hasDown(int pid)
Does this particle contain a down quark?
Definition ParticleIdUtils.hh:650
bool hasCharm(int pid)
Does this particle contain a charm quark?
Definition ParticleIdUtils.hh:662
bool isBaryon(int pid)
Check to see if this is a valid baryon.
Definition ParticleIdUtils.hh:318
bool isDiQuark(int pid)
Definition ParticleIdUtils.hh:355
bool isPentaquark(int pid)
Check to see if this is a valid pentaquark.
Definition ParticleIdUtils.hh:360
bool isMeson(int pid)
Check to see if this is a valid meson.
Definition ParticleIdUtils.hh:295
bool isHadron(int pid)
Definition ParticleIdUtils.hh:394
bool isReggeon(int pid)
Is this a pomeron, odderon, or generic reggeon?
Definition ParticleIdUtils.hh:290
bool isQuarkonium(int pid)
Definition ParticleIdUtils.hh:384
Location
Definition ParticleIdUtils.hh:58
int abspid(int pid)
Definition ParticleIdUtils.hh:28
int pid(const Particle &p)
Unbound function access to PID code.
Definition ParticleUtils.hh:23
Definition MC_CENT_PPB_Projections.hh:10
std::enable_if_t< std::is_arithmetic_v< N1 > &&std::is_arithmetic_v< N2 > &&std::is_arithmetic_v< N3 >, bool > in_range(N1 val, N2 low, N3 high)
Boolean function to determine if value is within the given range.
Definition MathUtils.hh:185
std::enable_if_t< std::is_arithmetic_v< N1 > &&std::is_arithmetic_v< N2 > &&std::is_arithmetic_v< N3 >, bool > in_closed_range(N1 val, N2 low, N3 high)
Boolean function to determine if value is within the given range.
Definition MathUtils.hh:194