TimeSeriesIntegrator.hGo to the documentation of this file.00001 /* ****************************************************************** ** 00002 ** OpenSees - Open System for Earthquake Engineering Simulation ** 00003 ** Pacific Earthquake Engineering Research Center ** 00004 ** ** 00005 ** ** 00006 ** (C) Copyright 1999, The Regents of the University of California ** 00007 ** All Rights Reserved. ** 00008 ** ** 00009 ** Commercial use of this program without express permission of the ** 00010 ** University of California, Berkeley, is strictly prohibited. See ** 00011 ** file 'COPYRIGHT' in main directory for information on usage and ** 00012 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. ** 00013 ** ** 00014 ** Developed by: ** 00015 ** Frank McKenna (fmckenna@ce.berkeley.edu) ** 00016 ** Gregory L. Fenves (fenves@ce.berkeley.edu) ** 00017 ** Filip C. Filippou (filippou@ce.berkeley.edu) ** 00018 ** ** 00019 ** ****************************************************************** */ 00020 00021 // $Revision: 1.2 $ 00022 // $Date: 2003/03/04 00:48:12 $ 00023 // $Source: /usr/local/cvs/OpenSees/SRC/domain/pattern/TimeSeriesIntegrator.h,v $ 00024 00025 // Written: MHS 00026 // Created: 10/99 00027 // Revision: A 00028 // 00029 // Description: This file contains the class definition for TimeSeriesIntegrator. 00030 // TimeSeriesIntegrator is an abstract base class, i.e. no objects of it's 00031 // type can be created. A TimeSeriesIntegrator describes the numerical integration 00032 // of a ground motion record used in a dynamic analysis. 00033 // 00034 // What: "@(#) TimeSeries.h, revA" 00035 00036 #ifndef TimeSeriesIntegrator_h 00037 #define TimeSeriesIntegrator_h 00038 00039 #include <MovableObject.h> 00040 #include <TimeSeries.h> 00041 00042 class TimeSeries; 00043 00044 class TimeSeriesIntegrator : public MovableObject 00045 { 00046 public: 00047 TimeSeriesIntegrator(int classTag); 00048 00049 virtual ~TimeSeriesIntegrator(); 00050 00051 virtual TimeSeries* integrate(TimeSeries *theSeries, double delta) = 0; 00052 00053 protected: 00054 00055 private: 00056 }; 00057 00058 #endif 00059 |