TYPE, PRIVATE :: TransferLoadListDef ! Derived Type for Transfer Load (Secondary and Cascade) Lists
CHARACTER(len=MaxNameLength) :: Name =' ' ! Name of this TransferLoad List
INTEGER :: NumSecondarys = 0 ! Number of Secondary Loops in this TransferLoad List
INTEGER :: NumCascadeLoads = 0 ! Number of Cascade condenser loads in this TransferLoad List
INTEGER, ALLOCATABLE, DIMENSION(:) :: CascadeLoadItemNum ! List of Item numbers that correspond to the Cascade Condenser
INTEGER, ALLOCATABLE, DIMENSION(:) :: SecondaryItemNum ! List of Item numbers that correspond to the Secondary
END TYPE TransferLoadListDef