Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pythia6_common_address.c
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file pythia6_common_address.c
1 #include <string.h>
2 // declaration of PYTHIA6 common clocks
3 #ifndef WIN32
4 # define pyjets pyjets_
5 # define pydat1 pydat1_
6 # define pydat2 pydat2_
7 # define pydat3 pydat3_
8 # define pydat4 pydat4_
9 # define pydatr pydatr_
10 # define pysubs pysubs_
11 # define pypars pypars_
12 # define pyint1 pyint1_
13 # define pyint2 pyint2_
14 # define pyint3 pyint3_
15 # define pyint4 pyint4_
16 # define pyint5 pyint5_
17 # define pyint6 pyint6_
18 # define pyint7 pyint7_
19 # define pyint8 pyint8_
20 # define pyint9 pyint9_
21 # define pyuppr pyuppr_
22 # define pymssm pymssm_
23 # define pyssmt pyssmt_
24 # define pyints pyints_
25 # define pybins pybins_
26 #else
27 # define pyjets PYJETS
28 # define pydat1 PYDAT1
29 # define pydat2 PYDAT2
30 # define pydat3 PYDAT3
31 # define pydat4 PYDAT4
32 # define pydatr PYDATR
33 # define pysubs PYSUBS
34 # define pypars PYPARS
35 # define pyint1 PYINT1
36 # define pyint2 PYINT2
37 # define pyint3 PYINT3
38 # define pyint4 PYINT4
39 # define pyint5 PYINT5
40 # define pyint6 PYINT6
41 # define pyint7 PYINT7
42 # define pyint8 PYINT8
43 # define pyint9 PYINT9
44 # define pyuppr PYUPPR
45 # define pymssm PYMSSM
46 # define pyssmt PYSSMT
47 # define pyints PYINTS
48 # define pybins PYBINS
49 #endif
50 
51 int pyjets[2+5*4000+2*2*5*4000];
52 int pydat1[200+2*200+200+2*200];
53 int pydat2[4*500+2*4*500+2*2000+2*4*4];
54 int pydat3[3*500+2*8000+2*8000+5*8000]; /* KNDCAY=8000 */
55 char pydat4[2*500*16];
56 int pydatr[6+2*100];
57 int pysubs[2+500+81*2+2*200];
58 int pypars[200+2*200+200+2*200];
59 int pyint1[400+2*400];
60 int pyint2[500+2*500+2*20*500+2*4*40];
61 int pyint3[2*81*2+3*1000+2*1000];
62 int pyint4[500+2*5*500];
63 int pyint5[1+3*501+2*3*501];
64 char pyint6[501*28];
65 int pyint7[2*6*7*7];
66 int pyint8[2*5*13];
67 int pyint9[2*4*13];
68 int pyuppr[1+7*20+1+2*10+2*5*20+2*11]; /* PYUPPR DOES NOT EXIST IN PYTHIA6 AT ALL!!! */
69 int pymssm[100+2*100];
70 int pyssmt[2*4*4+2*2*2+2*2*2+2*4+2*2+2*4*16+2*4*4+2*2*2+2*2*2];
71 int pyints[2*20];
72 int pybins[4+1000+2*20000];
73 
74 void *pythia6_common_address(const char* name) {
75  if (!strcmp(name,"PYJETS")) return pyjets;
76  else if (!strcmp(name,"PYDAT1")) return pydat1;
77  else if (!strcmp(name,"PYDAT2")) return pydat2;
78  else if (!strcmp(name,"PYDAT3")) return pydat3;
79  else if (!strcmp(name,"PYDAT4")) return pydat4;
80  else if (!strcmp(name,"PYDATR")) return pydatr;
81  else if (!strcmp(name,"PYSUBS")) return pysubs;
82  else if (!strcmp(name,"PYPARS")) return pypars;
83  else if (!strcmp(name,"PYINT1")) return pyint1;
84  else if (!strcmp(name,"PYINT2")) return pyint2;
85  else if (!strcmp(name,"PYINT3")) return pyint3;
86  else if (!strcmp(name,"PYINT4")) return pyint4;
87  else if (!strcmp(name,"PYINT5")) return pyint5;
88  else if (!strcmp(name,"PYINT6")) return pyint6;
89  else if (!strcmp(name,"PYINT7")) return pyint7;
90  else if (!strcmp(name,"PYINT8")) return pyint8;
91  else if (!strcmp(name,"PYINT9")) return pyint9;
92  else if (!strcmp(name,"PYUPPR")) return pyuppr;
93  else if (!strcmp(name,"PYMSSM")) return pymssm;
94  else if (!strcmp(name,"PYSSMT")) return pyssmt;
95  else if (!strcmp(name,"PYINTS")) return pyints;
96  else if (!strcmp(name,"PYBINS")) return pybins;
97  return 0;
98 }
99