1 | #ifndef _D_CONSTANTS_H_
|
---|
2 | #define _D_CONSTANTS_H_
|
---|
3 |
|
---|
4 | /*
|
---|
5 | ---- Delphes ----
|
---|
6 | A Fast Simulator for general purpose LHC detector
|
---|
7 | S. Ovyn ~~~~ severine.ovyn@uclouvain.be
|
---|
8 |
|
---|
9 | Center for Particle Physics and Phenomenology (CP3)
|
---|
10 | Universite Catholique de Louvain (UCL)
|
---|
11 | Louvain-la-Neuve, Belgium
|
---|
12 | */
|
---|
13 |
|
---|
14 | /// \file D_Constants.h
|
---|
15 | /// \brief List of constants
|
---|
16 | #ifndef __PI__
|
---|
17 | #define __PI__
|
---|
18 | const float pi = 3.14159265358979312;
|
---|
19 | #endif
|
---|
20 |
|
---|
21 | // particles PID (PDG ID)
|
---|
22 | const int pU = 1; // c quark
|
---|
23 | const int pD = 2; // b quark
|
---|
24 | const int pS = 3; // s quark
|
---|
25 | const int pC = 4; // c quark
|
---|
26 | const int pB = 5; // b quark
|
---|
27 | const int pE = 11; // e
|
---|
28 | const int pNU1 = 12; // nu_e
|
---|
29 | const int pMU = 13; // mu
|
---|
30 | const int pNU2 = 14; // nu_mu
|
---|
31 | const int pTAU = 15; // tau
|
---|
32 | const int pNU3 = 16; // nu_tau
|
---|
33 | const int pGLUON = 21; // gluon
|
---|
34 | const int pGAMMA = 22; // gamma
|
---|
35 | const int pW = 24; // W
|
---|
36 | const int pP = 2212; // proton
|
---|
37 | const int pN = 2112; // neutron
|
---|
38 | const int pPI0 = 111; // pi_0
|
---|
39 | const int pK0L = 130; // K^0_L
|
---|
40 | const int pK0S = 310; // K^0_S
|
---|
41 | const int pLAMBDA = 3122; // Lambda
|
---|
42 | const int pSIGMA0 = 3212; // Sigma^0
|
---|
43 | const int pDELTA0 = 2114; // Delta^0
|
---|
44 |
|
---|
45 | const double speed_of_light = 299792458; // m/s
|
---|
46 | const float UNDEFINED=-9999.;
|
---|
47 | const int iUNDEFINED=-9999;
|
---|
48 |
|
---|
49 | #endif
|
---|