#ifndef FOV_OFFSET_CORRECTION #define FOV_OFFSET_CORRECTION /** @file FOV_Offset.h @author Lance Deaver $Date:$ $Revision:$ @copyright (©) Copyright 2009 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 Corrects the FOV Elevation Offsets in bands 1-16 making them relavie to band 3. */ #include "Event.h" #include "ConfigFile.h" #include "MultiSignal.h" #include "SigEarthLocParam.h" class FOV_Offset { private: std::vector offsets; int mode; public: FOV_Offset(Event& L0, ConfigFile& cf); MultiSignal correct(MultiSignal &inSignal, SigEarthLocParam& earthInfo ); ~FOV_Offset() { }; }; #endif