1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
////PythiaInterface.h
#ifndef PYTHIA_RECORD_HH
#define PYTHIA_RECORD_HH
#define py1ent py1ent_
extern "C" {
void py1ent(int&, int&, double&, double&, double&);
}
#define pyexec pyexec_
extern "C" {
void pyexec();
}
#define pyinre pyinre_
extern "C" {
void pyinre();
}
#define pyjoin pyjoin_
extern "C" {
void pyjoin(int&, int[2]);
}
#define pyshow pyshow_
extern "C" {
void pyshow(int&, int&, double&);
}
#endif
|