]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ISAJET/code/sigtc2.F
Merging the VirtualMC branch to the main development branch (HEAD)
[u/mrichter/AliRoot.git] / ISAJET / code / sigtc2.F
CommitLineData
0795afa3 1#include "isajet/pilot.h"
2 SUBROUTINE SIGTC2
3C
4C Compute the techni-rho decay distribution cross section
5C D(SIGMA)/D(QMW**2)D(YW)D(OMEGA)
6C for the specified jet types. This is trivial but done for
7C compatibility with Drell-Yan and Higgs.
8C
9#if defined(CERNLIB_IMPNONE)
10 IMPLICIT NONE
11#endif
12#include "isajet/itapes.inc"
13#include "isajet/const.inc"
14#include "isajet/jetpar.inc"
15#include "isajet/jetsig.inc"
16#include "isajet/pjets.inc"
17#include "isajet/wsig.inc"
18#include "isajet/tcpar.inc"
19C
20 REAL AM12,AM22,ANGFAC,S,T,U
21 EQUIVALENCE (S,SHAT),(T,THAT),(U,UHAT)
22C
23C Angfac is (1-z**2), and is determined in terms of S,T,U.
24C Note that both rho+- and rho0 are always elastic.
25 AM12=PJETS(5,1)**2
26 AM22=PJETS(5,2)**2
27 ANGFAC=4.*(T*U-AM12*AM22)/((S-AM12-AM22)**2-4.*AM12*AM22)
28C Differential cross section
29 SIGLLQ=SIGEVT*ANGFAC*3./(8.*PI)
30 RETURN
31 END