BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
getaddr.cxx
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2// Routine meant to be called from FORTRAN which simply returns the
3// address of the (FORTRAN) argument. This should be 64bit-safe.
4//
5// 1999/01/08 Chris Green (Purdue University)
6// 1999/04/29 CG * altered to use void* from long*
7////////////////////////////////////////////////////////////////////////
8
9extern "C" {
10
11 void* getaddr_(void* arg);
12
13}
14
15void* getaddr_(void* arg) {
16
17 return(arg);
18
19}
double arg(const EvtComplex &c)
Definition: EvtComplex.hh:227
void * getaddr_(void *arg)
Definition: getaddr.cxx:15