~maddevelopers/mg5amcnlo/2.9.4

« back to all changes in this revision

Viewing changes to Template/NLO/Source/run.inc

pass to v2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
c**************************************************************
 
2
c    run.inc 
 
3
c**************************************************************
 
4
c
 
5
c     Scales
 
6
c
 
7
      real*8          scale,scalefact,ellissextonfact,alpsfact
 
8
      logical         fixed_ren_scale,fixed_fac_scale,fixed_couplings,hmult
 
9
      integer         ickkw,nhmult
 
10
      common/to_scale/scale,scalefact,ellissextonfact,alpsfact,fixed_ren_scale,
 
11
     $                fixed_fac_scale,fixed_couplings,ickkw,nhmult,hmult
 
12
 
 
13
c
 
14
c New stuff for scales (NLO)
 
15
c
 
16
 
 
17
c Same as fixed_ren_scale and fixed_fac_scale, for Ellis-Sexton scale
 
18
      logical fixed_QES_scale
 
19
      common/cfxQES/fixed_QES_scale
 
20
 
 
21
c Ratios of current values of scales over their reference values. The
 
22
c latter may be fixed or dynamic
 
23
      double precision muR_over_ref,muF1_over_ref,muF2_over_ref,
 
24
     #                 QES_over_ref
 
25
      common/cscales_fact/muR_over_ref,muF1_over_ref,muF2_over_ref,
 
26
     #                    QES_over_ref
 
27
 
 
28
c Values of fixed reference scales, to be given in input
 
29
      double precision muR_ref_fixed,muF1_ref_fixed,
 
30
     #                 muF2_ref_fixed,QES_ref_fixed
 
31
      common/cscales_fixed_values/muR_ref_fixed,muF1_ref_fixed,
 
32
     #                            muF2_ref_fixed,QES_ref_fixed
 
33
 
 
34
c Values of the current scales squared. The information is partly
 
35
c redundant with that of common block /to_scale/
 
36
      double precision muR2_current,muF12_current,
 
37
     #                 muF22_current,QES2_current
 
38
      common/cscales_current_values/muR2_current,muF12_current,
 
39
     #                              muF22_current,QES2_current
 
40
 
 
41
c
 
42
c     Collider
 
43
c
 
44
      integer                                        lpp(2)
 
45
      double precision    ebeam(2), xbk(2),q2fact(2)
 
46
      common/to_collider/ ebeam   , xbk   ,q2fact,   lpp
 
47
c
 
48
c     BW treatment
 
49
c      
 
50
      double precision bwcutoff
 
51
      common/to_bwcutoff/ bwcutoff
 
52
c
 
53
c     Sudakov grid file name
 
54
c
 
55
      character*130 issgridfile
 
56
      common/to_sgridfile/issgridfile
 
57
c
 
58
c     kT/pT scheme for xqcut, clustering according to channel
 
59
c
 
60
      integer ktscheme
 
61
      logical chcluster,pdfwgt
 
62
      common/to_cluster/ktscheme,chcluster,pdfwgt
 
63
 
 
64
c
 
65
c     Shower MonteCarlo
 
66
c     
 
67
      character*10 shower_mc
 
68
      common /cMonteCarloType/shower_mc
 
69
c
 
70
c     Reweight info
 
71
c
 
72
      logical do_rwgt_scale, do_rwgt_pdf
 
73
      integer pdf_set_min, pdf_set_max
 
74
      double precision rw_Fscale_down, rw_Fscale_up, rw_Rscale_down, rw_Rscale_up
 
75
      common/to_rwgt/ do_rwgt_scale, rw_Fscale_down, rw_Fscale_up, rw_Rscale_down, rw_Rscale_up,
 
76
     # do_rwgt_pdf, pdf_set_min, pdf_set_max 
 
77