AFF --- A container for numbers (array) by Friederich and Forbriger.
f77proto.h
Go to the documentation of this file.
1 
40 // include guard
41 #ifndef AFF_F77PROTO_H_VERSION
42 
43 #define AFF_F77PROTO_H_VERSION \
44  "AFF_F77PROTO_H V1.1"
45 
46 #include<aff/array.h>
47 
48 #include<complex>
49 
56 namespace f77interface {
57 
60 
67 int fill(const aff::Array<int>& fa);
68 
78 int fillarray(const aff::Array<float>& v1,
79  const aff::Array<float>& v2);
80 
89 Tcarray sums();
90 
101 
102 } // namespace f77interface
103 
104 
105 #endif // AFF_F77PROTO_H_VERSION (includeguard)
106 
107 /* ----- END OF f77proto.h ----- */
full template array class headers (prototypes)
int fillarray(const aff::Array< float > &v1, const aff::Array< float > &v2)
fill common block through Fortran subroutine
aff::Array< std::complex< double > > Tzarray
Definition: f77proto.h:59
Full multi-dimensional array functionality.This is the full array class template. It adds no addition...
Definition: array.h:151
aff::Array< std::complex< float > > Tcarray
Definition: f77proto.h:58
Tzarray viewcommon()
create view from common
int fill(const aff::Array< int > &a)
interface function to Fortran77 subroutine fill
Definition: f77interface.cc:89
Tcarray sums()
read from common block through Fortran subroutine
This namespace collects all test functions for interfacing Fortran 77.
Definition: f77interface.cc:86