File indexing completed on 2025-01-18 10:02:04
0001 #ifndef MAD_TWISS_H
0002 #define MAD_TWISS_H
0003
0004
0005
0006 struct node;
0007 struct table;
0008 struct command;
0009
0010
0011
0012 void pro_twiss(void);
0013 void store_beta0(struct in_cmd*);
0014 void store_savebeta(struct in_cmd*);
0015 int twiss_input(struct command*);
0016
0017 void get_disp0(double* disp);
0018 void copy_twiss_data(double* twiss_data, int* offset, int* nval, int* interp_index);
0019 void complete_twiss_table(struct table*);
0020 int embedded_twiss(void);
0021 void print_eigenvectors_(double *eigenvectors);
0022 #endif
0023