!-------------------------------------- LICENCE BEGIN ------------------------------------
!Environment Canada - Atmospheric Science and Technology License/Disclaimer, 
!                     version 3; Last Modified: May 7, 2008.
!This is free but copyrighted software; you can use/redistribute/modify it under the terms 
!of the Environment Canada - Atmospheric Science and Technology License/Disclaimer 
!version 3 or (at your option) any later version that should be found at: 
!http://collaboration.cmc.ec.gc.ca/science/rpn.comm/license.html 
!
!This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
!without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
!See the above mentioned License/Disclaimer for more details.
!You should have received a copy of the License/Disclaimer along with this software; 
!if not, you can write to: EC-RPN COMM Group, 2121 TransCanada, suite 500, Dorval (Quebec), 
!CANADA, H9P 1J3; or send e-mail to service.rpn@ec.gc.ca
!-------------------------------------- LICENCE END --------------------------------------
***s/r  v4d_scalpro0 - Interface between minimization algorithm
*                      and inner product in canonical space
*

      subroutine v4d_scalpro0 (Ndim,F_px,F_py,F_psc_8,F_izs,F_rzs,F_dzs_8),1
*
#include "impnone.cdk"
*
      integer Ndim
      real F_px(Ndim),F_py(Ndim)
      real*8 F_psc_8
*
      integer F_izs(1)
      real F_rzs(1)
      real*8 F_dzs_8(1)
*
*author
*     M.Tanguay
*
*revision
* v2_10 - Tanguay M.        - initial MPI version
*
*object
*     see id section
*	
*arguments
*  Name        I/O                 Description
*----------------------------------------------------------------
* Ndim         I                   Dimension
* F_px         I                   Control variable 1
* F_py         I                   Control variable 2
* F_psc_8      O                   Inner product
* F_izs        -                   M1QN3 parameter (not used)
* F_rzs        -                   M1QN3 parameter (not used)
* F_dzs_8      -                   M1QN3 parameter (not used)
*----------------------------------------------------------------
*
      call v4d_scalpro (Ndim,F_px,F_py,F_psc_8)
*
      return
      end