#ifndef SIGNAL_CORRECTION_ADAPTOR_CLASS_11_13_2006 #define SIGNAL_CORRECTION_ADAPTOR_CLASS_11_13_2006 /** @file SigCorrectInput.h @author Brian Magill @date 11/13/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 Class converting an Event object into the data objects used in the Signal Corrections Module. Only exposes the portions the Event object used by Signal Correction classes */ #include "Event.h" #include "MultiSignal.h" #include "SigEarthLocParam.h" #include "BalanceTimes.h" #include "CalibrationTimes.h" class SigCorrectInput { private: Event *inLevelZero; Event *inLevelOne; /// /// @note There is not reason for objects of this class to be copied or assigned /// SigCorrectInput(SigCorrectInput &rhs); SigCorrectInput & operator = (SigCorrectInput &rhs); public: /// /// @param in - Input Event object /// SigCorrectInput(Event &l_zero, Event &l_one):inLevelZero(&l_zero), inLevelOne(&l_one) { } /// /// @return detector signals from input Event /// MultiSignal getMultiSignal(); /// /// @return Earth location information from input Event /// SigEarthLocParam getEarthLocInfo(); /// /// @return times of balance maneuver from input Event /// BalanceTimes getBalanceTimes(); /// /// @return starting and ending times for calibration section of input Event /// CalibrationTimes getCalibrationTimes(); }; #endif