Changeset 1183
- Timestamp:
- 06/23/17 15:01:52 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/src/filter/temporal_filter.hpp
r1124 r1183 48 48 49 49 private: 50 // Warning the declaration order matters here, double-check the constructor before changing it 51 CArray<double, 1> tmpData; //!< The array of data used for temporary storage 50 52 const boost::scoped_ptr<func::CFunctor> functor; //!< The functor corresponding to the temporal operation 51 CArray<double, 1> tmpData; //!< The array of data used for temporary storage 53 const bool isOnceOperation; //!< True if the operation should be computed just once 54 const bool isInstantOperation; //!< True if the operation is instant 52 55 const CDuration samplingFreq; //!< The sampling frequency, i.e. the frequency at which the input data will be used 53 56 const CDuration samplingOffset; //!< The sampling offset, i.e. the offset after which the input data will be used … … 56 59 CDate nextOperationDate; //!< The date of the next operation 57 60 bool isFirstOperation; //!< True before the first operation was been computed 58 const bool isOnceOperation; //!< True if the operation should be computed just once59 const bool isInstantOperation; //!< True if the operation is instant60 61 }; // class CTemporalFilter 61 62 } // namespace xios
Note: See TracChangeset
for help on using the changeset viewer.