00001 #ifndef ENUMS_H 00002 #define ENUMS_H 00003 00004 // list of possible projections 00005 enum Projection { Spherical, Mollweide }; 00006 // list of possible display fields 00007 enum Field { I, Q, U, P, Nobs }; 00008 // displaying Polarization vector either on or off 00009 enum PolVectors { Off, On }; 00010 00011 #endif