| struct Bproject { | |
| Bproject* next; | // Pointer to the next structure in the list |
| Bstring filename; | // Parameter file name |
| Bstring comment; | // Variable length comment field |
| int split; | // Split code, 0=no split, 1-4=number of digits in file name, 9=use mg id's |
| Bstring* reference; | // Linked list of reference map file names |
| int select; | // Selects micrographs (0) or reconstructions (1) |
| int euler_flag; | // Set if Euler angles are used |
| int omega_flag; | // Set if omega is used in stead of psi |
| FOMType fom_tag[NFOM]; | // STAR tags for up to 5 FOM values |
| Bfield* field; | // First field-of-view in list |
| Breconstruction* rec; | // First reconstruction in list |
| } ; |