#ifndef APPLY_DRIFT_SIGNAL_CORRECTION_1_01_2007 #define APPLY_DRIFT_SIGNAL_CORRECTION_1_01_2007 /** @class ApplyDrift.h @author Brian Magill @creation date 1/1/2007 $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 Applies the drift signal correction for a given channel */ #include #include "ChannelSignals.h" #include "DriftParam.h" class ApplyDrift { public: ApplyDrift() { }; ~ApplyDrift() { }; ChannelSignals operator()(std::valarray const &time, ChannelSignals const &in, DriftParam const ¶m) const; }; #endif