/** @class DetectorTSample.cpp @author Brian Magill @datecreated 6/20/2007 $Date:$ $Revision:$ @copyright (©) Copyright 2007 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 Detector temperatures for a given instant */ //---------------------------------------------------------------------- // #include #include "DetectorTSample.h" using namespace std; DetectorTSample& DetectorTSample::operator = (const DetectorTSample& rhs ) { if (this == &rhs) return *this; time = rhs.time; Temperatures= rhs.Temperatures; return *this; } void DetectorTSample::dump() const { cout << "time: " << time << ", Detector T's: "; for(int i = 0; i < Temperatures.size(); i++) cout << Temperatures[i] << " "; cout << endl; }