#ifndef __SOFIE_FILTER_TEMPERATURE_SAMPLE_03_24_06__ #define __SOFIE_FILTER_TEMPERATURE_SAMPLE_03_24_06__ /** @file FilterTSample.h @author Brian Magill @datecreated 3/24/2006 $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 Temperatures of SCM filter holders for a given instant */ //---------------------------------------------------------------------- // #include "SOFIE_namespace.h" //#include #include class FilterTSample { protected: double time; // time of sample std::valarray Temperatures; // channel values public: FilterTSample( ) {Temperatures.resize(SOFIE::Num_of_SCMF); }; FilterTSample(double tim, std::valarray tem ); FilterTSample(FilterTSample const& rhs ); FilterTSample& operator = (FilterTSample const& rhs ); ~FilterTSample() { }; bool operator < (FilterTSample const& rhs ); bool operator > (FilterTSample const& rhs ); double getTime() { return time; }; double getTemperature(int holder); void setTime(double tim ) {time = tim; }; void setTemperature(int holder_no, double value); void dump(); }; #endif