~madteam/mg5amcnlo/series2.0

« back to all changes in this revision

Viewing changes to tests/input_files/IOTestsComparison/short_ML_SMQCD_default/gg_ttx/born_matrix.f

  • Committer: olivier Mattelaer
  • Date: 2016-05-12 11:00:18 UTC
  • mfrom: (262.1.150 2.3.4)
  • Revision ID: olivier.mattelaer@uclouvain.be-20160512110018-sevb79f0wm4g8mpp
pass to 2.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
C     and helicities
43
43
C     for the point in phase space P(0:3,NEXTERNAL)
44
44
C     
45
 
C     Process: g g > t t~ QED=0 QCD=2 [ virt = QCD ]
 
45
C     Process: g g > t t~ QED=0 QCD<=2 [ virt = QCD ]
46
46
C     
47
47
      IMPLICIT NONE
48
48
C     
103
103
      DO IHEL=1,NEXTERNAL
104
104
        JC(IHEL) = +1
105
105
      ENDDO
 
106
C     When spin-2 particles are involved, the Helicity filtering is
 
107
C      dangerous for the 2->1 topology.
 
108
C     This is because depending on the MC setup the initial PS points
 
109
C      have back-to-back initial states
 
110
C     for which some of the spin-2 helicity configurations are zero.
 
111
C      But they are no longer zero
 
112
C     if the point is boosted on the z-axis. Remember that HELAS
 
113
C      helicity amplitudes are no longer
 
114
C     lorentz invariant with expternal spin-2 particles (only the
 
115
C      helicity sum is).
 
116
C     For this reason, we simply remove the filterin when there is
 
117
C      only three external particles.
 
118
      IF (NEXTERNAL.LE.3) THEN
 
119
        DO IHEL=1,NCOMB
 
120
          GOODHEL(IHEL)=.TRUE.
 
121
        ENDDO
 
122
      ENDIF
106
123
      ANS = 0D0
107
124
      DO IHEL=1,NCOMB
108
125
        IF (USERHEL.EQ.-1.OR.USERHEL.EQ.IHEL) THEN
131
148
C     Returns amplitude squared summed/avg over colors
132
149
C     for the point with external lines W(0:6,NEXTERNAL)
133
150
C     
134
 
C     Process: g g > t t~ QED=0 QCD=2 [ virt = QCD ]
 
151
C     Process: g g > t t~ QED=0 QCD<=2 [ virt = QCD ]
135
152
C     
136
153
      IMPLICIT NONE
137
154
C     
248
265
      RETURN
249
266
      END
250
267
 
 
268