gibuu is hosted by Hepforge, IPPP Durham
GiBUU

TABLE OF CONTENTS


/EccAndFlow [ Modules ]

[ Top ] [ Modules ]

NAME

module EccAndFlow

PURPOSE

Encapsulate all routines and datas for calculation off eccentricity and flow according the Q- and R-vector method

INPUTS

...(This module needs no input)


EccAndFlow/tQRvector [ Types ]

[ Top ] [ EccAndFlow ] [ Types ]

NAME

type tQRvector

PURPOSE

Type definition to store all information of a Q- or R-vector

R = r^m exp(i n phi_r) Q = p^m exp(i n phi_p)

SOURCE

  type, public :: tQRvector
     integer :: n = 1
     integer :: m = 1
     real, dimension(1:2) :: Q = 0  ! the vector
     real :: sumW = 0.      ! sum of weights
     real :: sumN = 0.      ! sum of entries = sum of perweights
  end type tQRvector