00001 #ifndef ENUMS_H00002 #define ENUMS_H00003
00004 // list of possible projections00005 enum Projection { Spherical, Mollweide };
00006 // list of possible display fields00007 enum Field { I, Q, U, P, Nobs };
00008 // displaying Polarization vector either on or off00009 enum PolVectors { Off, On };
00010
00011 #endif