1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
* vegas.h
**************************************************
*** used in VEGAS, the default bin number in original
*** version of VEGAS is 50.
*** a higher bin number might help to derive a more precise
*** grade. subtle point: the value of ncall used in VEGAS
*** should be increased accordingly, otherwise a larger
*** bin number will have no effects or even make the
*** precision lower than before.
*** [more explaination on this subtle point can be
*** found in CPC174,241(2006)]
*************************************************
**************************************************
*** it lies in three folders: generate/, phase/ and system/
*** NVEGBIN is used in files:
*** generate/ evntinit.F genevnt.F initmixgrade.F
*** phase/ vegas.F
*** system/ vegaslogo.F
*** NVEGCALL and NVEGITMX is used in file: parameter.F
***************************************************
*** NVEGBIN ---- bin number
*** these values only for reference.
#ifndef NVEGBIN
#define NVEGBIN 300
#endif
|