Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:02:03

0001 #ifndef MAD_BEAM_H
0002 #define MAD_BEAM_H
0003 
0004 // types
0005 
0006 struct in_cmd;
0007 struct command;
0008 struct sequence;
0009 
0010 // interface
0011 
0012 void    exec_beam(struct in_cmd* cmd, int flag);        // used by mad_cmd.c
0013 void    save_beam(struct sequence* sequ, FILE* file, int noexpr);   // used by mad_seq.c
0014 void    show_beam(char* tok);                           // used by mad_exec.c
0015 void    update_beam(struct command* comm);              // used by mad_option.c
0016 void    adjust_beam(void);                              // many uses
0017 int     attach_beam(struct sequence* sequ);             // many uses
0018 void    adjust_probe_fp(double dp);                     // fix point, replace adjust_probe + adjust_rfc
0019 void    print_rfc(void);
0020 void    print_probe(void);
0021 
0022 #endif // MAD_BEAM_H
0023