#ifndef MSIS_DENSITIES_2006_08_05 #define MSIS_DENSITIES_2006_08_05 /** @file MSISDensities @author Brian Magill @creationdate 8/5/2008 $Date:$ $Revision:$ @copyright (©) Copyright 2006 by GATS Inc. 11864 Canon Blvd., Suite 101, Newport News, VA 23606 All Rights Reserved. No part of this software or publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise without the prior written permission of GATS Inc. @brief Contains the densities of the gases calculated by MSIS */ class MSISDensities { private: float He_value; float O_value; float N2_value; float O2_value; float Ar_value; float H_value; float N_value; bool hasData; public: MSISDensities():He_value(0.), O_value(0.), N2_value(0.), O2_value(0.), Ar_value(0.), H_value(0.), N_value(0.), hasData(false) {} MSISDensities(): hasData(true){} MSISDensities(MSISDensities const & rhs) { idate = rhs.idate; solarFlux = rhs.solarFlux; ephemeris = rhs.ephemeris; hasData = rhs.hasData; } MSISDensities & operator = (MSISDensities const & rhs) { if(&rhs == this) return *this; idate = rhs.idate; solarFlux = rhs.solarFlux; ephemeris = rhs.ephemeris; hasData = rhs.hasData; return *this; } ~MSISDensities() {}; bool HasData() {return hasData;}; }; #endif