#ifndef SOFIE_SOLAR_TRACKER_SIGNAL_03_04_2006 #define SOFIE_SOLAR_TRACKER_SIGNAL_03_04_2006 /** @file STrackerSignal.h @author Brian Magill @datecreated 3/07/2006 $Date: 2006/04/06 18:25:15 $ $Revision: 1.3 $ @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 Class which contains the solar tracking information for a sequence of times. Command elevation and azimuth are the the commands the onboard controller feedback circuit sends to the mirror positioners */ //---------------------------------------------------------------------- // #include "SOFIE_namespace.h" #include "SolarTracking.h" #include #include class STrackerSignal { protected: std::vector TrackingInfo; public: STrackerSignal( ): TrackingInfo(0) { }; STrackerSignal(std::vector const & soltrack):TrackingInfo(soltrack) { }; STrackerSignal(STrackerSignal const& rhs ):TrackingInfo(rhs.TrackingInfo) { }; STrackerSignal& operator = (STrackerSignal const& rhs ); ~STrackerSignal() { }; std::valarray getTime() const; std::valarray getXLow() const; std::valarray getXHigh() const; std::valarray getYLow() const; std::valarray getYHigh() const; std::valarray getElev() const; std::valarray getAzim() const; std::valarray getXSolarExtent() const; std::valarray getYSolarExtent() const; std::valarray getStatus() const; // std::valarray getLockdown() ; // Possibly add this later (involves dependences.) unsigned long size() const {return TrackingInfo.size(); }; void dump() const; }; #endif