EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ltimex.F
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ltimex.F
1 C ********************************************************
2 C * *
3 C * P E P S I 2 *
4 C * *
5 C * MONTE CARLO PROGRAM FOR POLARIZED LEPTOPRODUCTION *
6 C * october 1991 *
7 C ********************************************************
8 C
9 C PEPSI2 is a modification of the LEPTO6.5 code written
10 C by G. Ingelman. The authors have modified LEPTO to the extent
11 C necessary to simulate scattering off a polarized target.
12 C
13 C PEPSI code is written by:
14 C
15 C L. Mankiewicz Institut fuer Theoretische Physik
16 C der Universitaet Heidelberg
17 C Philosephenweg 16, W-6900 Heidelberg, Germany
18 C
19 C A. Schaefer Institut fuer Theoretische Physik
20 C Universitaet Frankfurt
21 C PO Box 111932 60054 Frankfurt, Germany
22 C
23 C M. Veltri Max-Planck Institut fuer Kernphysik
24 C PO Box 103980 W-6900 Heidelberg, Germany
25 C vlt@dxnhd1.mpi-hd.mpg.de - 13616::VLT
26 C
27 C H. Ihssen HERMES group, DESY, Notkestrasse 85,
28 C D-22603 Hamburg 52, Germany
29 C
30 C M. Maul Institut fuer Theoretische Physik
31 C Universitaet Frankfurt
32 C
33 C
34 C***************************************************************
35 C
36 C SUBROUTINES FROM LEPTO
37 C ltimex
38 C leptod
39 C linit
40 C lepto
41 C leptox
42 C lkinem
43 C lqcdpr
44 C lqev
45 C lqgev
46 C lqqbev
47 C lxp
48 C lzp
49 C lqmcut
50 C lazimu
51 C dsigma
52 C dsigm2
53 C dqcd
54 C dqcdi
55 C lflav
56 C lremh
57 C lprikt
58 C lframe
59 C lwbb
60 C lweits
61 C lprwts
62 C lsigmx
63 C lxsect
64 C riwibd
65 C dvnopt
66 C dfun
67 C riwfun
68 C dcross
69 C dlower
70 C dupper
71 C fltabl
72 C flipol
73 C flintg
74 C flqint
75 C flgint
76 C fltint
77 C lsci
78 C leaswi
79 C lecswi
80 C lsmall
81 C lshowr
82 C lmeps
83 C lscale
84 C lysspa
85 C lyremn
86 C lyspli
87 C lmcmnd
88 C lminto
89 C lmidat
90 C lminew
91 C lmprin
92 C lmpint
93 C lmrazz
94 C lmsimp
95 C gadap
96 C gadap2
97 C gadapf
98 C lnstrf
99 C lystfu
100 C
101 C SUBROUTINES UNIQUE IN PEPSI
102 C
103 C poldqcd
104 C poldqcdi
105 C pollazimu
106 C pollzp
107 C poldsigma
108 C polleptox
109 C pollinit
110 C dstfu
111 C dnstrf
112 C parton
113 C polpar
114 C rdarry
115 C polini
116 C grv94lo
117 C grv94ho
118 C grv94di
119 C fv
120 C fw
121 C fws
122 C parpol
123 C dfint
124 C polnlo
125 C rdarrynlo
126 C nloini
127 c inideflo
128 
129 C######################################################################C
130 C C
131 C L E P T O C
132 C C
133 C A Monte Carlo Generator for C
134 C Deep Inelastic Lepton-Nucleon Scattering C
135 C C
136 C version 6.5, April 20, 1996 C
137 C C
138 C Authors: C
139 C Gunnar Ingelman, DESY theory group Dept. of Radiation Sciences C
140 C (room 202 bldg 2a) Uppsala University C
141 C D-22603 Hamburg, FRG S-751 21 Uppsala, Sweden C
142 C phone: +49(40)8998-2795 +46(18)18-3884 C
143 C fax: -2777 -3833 C
144 C e-mail: ingelman@desy.de (ingelman@tsl.uu.se) C
145 C Anders Edin, Dept. of Radiation Sciences, edin@tsl.uu.se C
146 C Johan Rathsman, Dept. of Radiation Sciences, rathsman@tsl.uu.se C
147 C C
148 C Contributions on parton cascades: M. Bengtsson, T. Sjostrand C
149 C C
150 C Home page: http:
151 C C
152 C Manual: G.Ingelman, A.Edin, J.Rathsman, DESY 96-057 C
153 C C
154 C Please report any problems or suggestions for improvements. C
155 C C
156 C######################################################################C
157 
158 
159 
160 
161  SUBROUTINE ltimex(TIME)
162 
163  IMPLICIT NONE
164  REAL time
165 C...Interface routine to transfer a call to some machine-dependent
166 C...routine to get the execution time used since job started.
167 C...Nice, but not necessary information. Can also be called by user.
168 
169  time=0.
170 C...Use of CERN library routine Z007, replace/delete if not available.
171 C CALL TIMEX(TIME)
172  RETURN
173  END