/** @file NoOpAlgorithm.cpp @author Brian Magill @date 11/21/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 A signal algorithm that does not alter the signal */ #include "NoOpAlgorithm.h" #include using namespace std; NoOpAlgorithm const & NoOpAlgorithm::operator = (NoOpAlgorithm const &rhs) { if(&rhs == this) return *this; processName = rhs.processName; return *this; }; void NoOpAlgorithm::applyCorrection(valarray const &time, ChannelSignals const & inChannel, ChannelSignals & outChannel, string & comments) const { comments = ""; outChannel = inChannel; }; void NoOpAlgorithm::dump() const { cout << "Algorithm: " << processName << endl; }