! !$Author: joelevin $ !$Date: 2011-03-24 11:33:26 -0500 (Thu, 24 Mar 2011) $ !$Revision: 11724 $ !$HeadURL: https://svn.weru.ksu.edu/weru/weps1/trunk/weps.src/src/lib_reports/pd_dates_vars.f95 $ ! ! The purpose of the derived-type "dates" variables is to ! to keep track of the time period (duration) that a variable ! is actively being tracked (summed, averaged, etc.) MODULE pd_dates_vars USE pd_dates_type_def ! "pd_dates" structures used by "pd_update" structures TYPE (pd_dates_type),DIMENSION(:), TARGET, ALLOCATABLE :: yrly_dates TYPE (pd_dates_type),DIMENSION(:,:),TARGET, ALLOCATABLE :: monthly_dates TYPE (pd_dates_type),DIMENSION(:,:), TARGET, ALLOCATABLE :: hmonth_dates TYPE (pd_dates_type),DIMENSION(:), TARGET, ALLOCATABLE :: period_dates TYPE (pd_dates_type),DIMENSION(:), TARGET, ALLOCATABLE :: yr_dates END MODULE pd_dates_vars