ATLAS Offline Software
IReadCards.h
Go to the documentation of this file.
1 /* emacs: this is -*- c++ -*- */
21 #ifndef READCARDS_IREADCARDS_H
22 #define READCARDS_IREADCARDS_H
23 
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28  void initcards_(const char* );
29  void deletecards_(void);
30  void isdefined_(const char* , int& );
31  void getstring_(const char* , char* );
32  void getdvalue_(const char* , double& );
33  void getfvalue_(const char* , float& );
34  void getivalue_(const char* , int& );
35  void getbvalue_(const char* , bool& );
36  void getdvector_(const char* , double* );
37  void getivector_(const char* , int* );
38  void printcards_();
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 
44 
45 #endif /* READCARDS_IREADCARDS_H */
46 
47 
48 
49 
50 
51 
52 
53 
54 
55 
getivalue_
void getivalue_(const char *, int &)
Definition: IReadCards.cxx:63
getfvalue_
void getfvalue_(const char *, float &)
Definition: IReadCards.cxx:58
getbvalue_
void getbvalue_(const char *, bool &)
Definition: IReadCards.cxx:67
isdefined_
void isdefined_(const char *, int &)
Definition: IReadCards.cxx:49
deletecards_
void deletecards_(void)
Definition: IReadCards.cxx:33
initcards_
void initcards_(const char *)
Definition: IReadCards.cxx:29
getivector_
void getivector_(const char *, int *)
Definition: IReadCards.cxx:77
getdvalue_
void getdvalue_(const char *, double &)
Definition: IReadCards.cxx:54
getdvector_
void getdvector_(const char *, double *)
Definition: IReadCards.cxx:72
printcards_
void printcards_()
Definition: IReadCards.cxx:82
getstring_
void getstring_(const char *, char *)
Definition: IReadCards.cxx:39