#ifndef NO_THERMAL_CORRECTION #define NO_THERMAL_CORRECTION /** @file NO_Thermal.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 NO thermal signature. */ #include "Event.h" #include "ConfigFile.h" #include "MultiSignal.h" #include "SigEarthLocParam.h" class NO_Thermal { private: double BalanceStartTime, BalanceStopTime; double maxChi; public: NO_Thermal(Event& L0, ConfigFile& cf); MultiSignal correctNO(MultiSignal &inSignal, SigEarthLocParam& earthInfo, double* ChiSq ); ~NO_Thermal() { }; }; #endif