Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/madX/mad_main.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #ifndef MAD_MAIN_H
0002 #define MAD_MAIN_H
0003 
0004 // readonly information about program's command line arguments and stack base
0005 extern int                const mad_argc;
0006 extern const char* const* const mad_argv;
0007 extern const void* const        mad_stck;
0008 
0009 // public interface to run MADX as a library
0010 void mad_init(int argc, char *argv[]);
0011 void mad_fini(void);
0012 void mad_run (void);
0013 
0014 #endif // MAD_MAIN_H
0015