CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Static Public Member Functions
CustomPDGParser Class Reference

#include <CustomPDGParser.h>

Static Public Member Functions

static double s_charge (int pdg)
 
static std::vector< int > s_containedQuarks (int pdg)
 
static int s_containedQuarksCode (int pdg)
 
static bool s_isMesonino (int pdg)
 
static bool s_isRBaryon (int pdg)
 
static bool s_isRGlueball (int pdg)
 
static bool s_isRHadron (int pdg)
 
static bool s_isRMeson (int pdg)
 
static bool s_isSbaryon (int pdg)
 
static bool s_issbottomHadron (int pdg)
 
static bool s_isSLepton (int pdg)
 
static bool s_isstopHadron (int pdg)
 
static double s_spin (int pdg)
 

Detailed Description

Definition at line 7 of file CustomPDGParser.h.

Member Function Documentation

double CustomPDGParser::s_charge ( int  pdg)
static

Definition at line 71 of file CustomPDGParser.cc.

References funct::abs(), lumiQueryAPI::q, s_containedQuarks(), s_containedQuarksCode(), s_isMesonino(), s_isRBaryon(), s_isRMeson(), s_isSbaryon(), s_issbottomHadron(), s_isSLepton(), and jetcorrextractor::sign().

Referenced by CustomParticleFactory::addCustomParticle().

72 {
73  float charge=0,sign=1;
74  int pdgAbs=abs(pdg);
75  if(pdg < 0 ) sign=-1;
76 
77  if(s_isSLepton(pdg)) //Sleptons
78  {
79  if(pdgAbs %2 == 0)
80  return 0;
81  else
82  return -sign;
83  }
84 
85  if(s_isRMeson(pdg))
86  {
87  std::vector<int> quarks = s_containedQuarks(pdg);
88  if((quarks[1] % 2 == 0 && quarks[0] % 2 == 1)||(quarks[1] % 2 == 1 && quarks[0] % 2 == 0 )) charge=1;
89  charge*=sign;
90  return charge;
91  }
92 
93  if(s_isRBaryon(pdg))
94  {
95  int baryon = s_containedQuarksCode(pdg);
96  for(int q=1; q< 1000; q*=10)
97  {
98  if(baryon / q % 2 == 0) charge+=2; else charge -=1;
99  }
100  charge/=3;
101  charge*=sign;
102  return charge;
103  }
104 
105  if(s_isMesonino(pdg))
106  {
107  int quark = s_containedQuarks(pdg)[0];
108  int squark = abs(pdg/100%10);
109  if (squark % 2 == 0 && quark % 2 == 1) charge = 1;
110  if (squark % 2 == 1 && quark % 2 == 0) charge = 1;
111  charge *= sign;
112  if(s_issbottomHadron(pdg)) charge*=-1;
113  return charge;
114  }
115 
116  if(s_isSbaryon(pdg))
117  {
118  int baryon = s_containedQuarksCode(pdg)+100*(abs(pdg/1000%10));//Adding the squark back on
119  for(int q=1; q< 1000; q*=10)
120  {
121  if(baryon / q % 2 == 0) charge+=2; else charge -=1;
122  }
123  charge/=3;
124  charge*=sign;
125  if(s_issbottomHadron(pdg)) charge*=-1;
126  return charge;
127  }
128 
129 return 0;
130 }
static int s_containedQuarksCode(int pdg)
static bool s_isSbaryon(int pdg)
double sign(double x)
static bool s_isRMeson(int pdg)
static bool s_isMesonino(int pdg)
static bool s_isSLepton(int pdg)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
static bool s_isRBaryon(int pdg)
static std::vector< int > s_containedQuarks(int pdg)
static bool s_issbottomHadron(int pdg)
std::vector< int > CustomPDGParser::s_containedQuarks ( int  pdg)
static

Definition at line 138 of file CustomPDGParser.cc.

References i, and s_containedQuarksCode().

Referenced by s_charge().

139 {
140  std::vector<int> quarks;
141  for(int i=s_containedQuarksCode(pdg); i > 0; i /= 10)
142  {
143  quarks.push_back(i % 10);
144  }
145  return quarks;
146 }
static int s_containedQuarksCode(int pdg)
int i
Definition: DBlmapReader.cc:9
int CustomPDGParser::s_containedQuarksCode ( int  pdg)
static

Definition at line 148 of file CustomPDGParser.cc.

References funct::abs(), s_isMesonino(), s_isRBaryon(), s_isRMeson(), and s_isSbaryon().

Referenced by s_charge(), and s_containedQuarks().

149 {
150  int pdgAbs=abs(pdg);
151  if(s_isRBaryon(pdg))
152  return pdgAbs / 10 % 1000;
153 
154  if(s_isRMeson(pdg))
155  return pdgAbs / 10 % 100;
156 
157  if(s_isMesonino(pdg))
158  return pdgAbs / 10 % 1000 % 10;
159 
160  if(s_isSbaryon(pdg))
161  return pdgAbs / 10 % 1000 % 100;
162 
163 
164 return 0;
165 }
static bool s_isSbaryon(int pdg)
static bool s_isRMeson(int pdg)
static bool s_isMesonino(int pdg)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
static bool s_isRBaryon(int pdg)
bool CustomPDGParser::s_isMesonino ( int  pdg)
static

Definition at line 55 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle(), s_charge(), and s_containedQuarksCode().

56 {
57  int pdgAbs=abs(pdg);
58  return ((pdgAbs % 10000 / 100 == 6 ) || (pdgAbs % 10000 / 100 == 5));
59 
60 
61 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isRBaryon ( int  pdg)
static

Definition at line 34 of file CustomPDGParser.cc.

References funct::abs().

Referenced by s_charge(), and s_containedQuarksCode().

35 {
36  int pdgAbs=abs(pdg);
37  return (pdgAbs % 100000 / 10000 == 9);
38 
39 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isRGlueball ( int  pdg)
static

Definition at line 41 of file CustomPDGParser.cc.

References funct::abs().

Referenced by s_isRHadron().

42 {
43  int pdgAbs=abs(pdg);
44  return (pdgAbs % 100000 / 10 == 99);
45 
46 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isRHadron ( int  pdg)
static

Definition at line 10 of file CustomPDGParser.cc.

References funct::abs(), and s_isRGlueball().

Referenced by CustomParticleFactory::addCustomParticle(), and CustomParticleFactory::getMassTable().

11 {
12  int pdgAbs=abs(pdg);
13  return ( (pdgAbs % 100000 / 10000 == 9) || (pdgAbs % 10000 / 1000 == 9) || s_isRGlueball(pdg) );
14 }
static bool s_isRGlueball(int pdg)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isRMeson ( int  pdg)
static

Definition at line 48 of file CustomPDGParser.cc.

References funct::abs().

Referenced by s_charge(), and s_containedQuarksCode().

49 {
50  int pdgAbs=abs(pdg);
51  return (pdgAbs % 10000 / 1000 == 9);
52 
53 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isSbaryon ( int  pdg)
static

Definition at line 63 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle(), s_charge(), and s_containedQuarksCode().

64 {
65  int pdgAbs=abs(pdg);
66  return ((pdgAbs % 10000 / 1000 == 6) || (pdgAbs % 10000 / 1000 == 5));
67 
68 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_issbottomHadron ( int  pdg)
static

Definition at line 22 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle(), and s_charge().

23 {
24  int pdgAbs=abs(pdg);
25  return ( (pdgAbs % 10000 / 1000 == 5) || (pdgAbs % 10000 / 100 == 5) );
26 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isSLepton ( int  pdg)
static

Definition at line 28 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle(), and s_charge().

29 {
30  int pdgAbs=abs(pdg);
31  return (pdgAbs / 100 % 10000 == 0 && pdgAbs / 10 % 10 == 1);
32 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool CustomPDGParser::s_isstopHadron ( int  pdg)
static

Definition at line 16 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle(), and CustomParticleFactory::getMassTable().

17 {
18  int pdgAbs=abs(pdg);
19  return ( (pdgAbs % 10000 / 1000 == 6) || (pdgAbs % 1000 / 100 == 6) );
20 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double CustomPDGParser::s_spin ( int  pdg)
static

Definition at line 132 of file CustomPDGParser.cc.

References funct::abs().

Referenced by CustomParticleFactory::addCustomParticle().

133 {
134  int pdgAbs=abs(pdg);
135  return pdgAbs % 10;
136 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22