Program Listing for File InterpolationQuantities.h

Return to documentation for file (/home/kpenev/projects/git/poet/poet_src/StellarEvolution/InterpolationQuantities.h)

#ifndef __STELLAR_EVOLUTION_QUANTITIES_H
#define __STELLAR_EVOLUTION_QUANTITIES_H

#include <vector>
#include <string>

namespace StellarEvolution {

    enum QuantityID {
        RADIUS = 0,

        ICONV,

        LUM,

        FIRST_CORE_QUANTITY,

        IRAD = FIRST_CORE_QUANTITY,

        MRAD,

        RRAD,

        NUM_QUANTITIES
    };

    static const std::vector<std::string> QUANTITY_NAME {
        "R*",
        "Iconv",
        "L*",
        "Irad",
        "Mrad",
        "Rrad",
    };


}//End StellarEvolution namespace.

#endif