#include "HepTuple/hbook/pawsize.h"
      subroutine hbfinig(gsect)

C     Initialize the PAWC common block to a know size and tell HBook
C     about it. Used by the HBookFile class. I would do this in C++, but
C     I don''t know how to create the correct style storage for the
C     common block.
C
C     Paul Rensing July 1994

      implicit none
      character*4 gsect
      integer lpaw, pawc
      parameter (lpaw = LQPAW)
      common /pawc/ pawc(lpaw)

      call hlimap (lpaw,gsect)
      return 
      end
