-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgdrelp.F
44 lines (44 loc) · 1.67 KB
/
gdrelp.F
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
32
33
34
35
36
37
38
39
40
41
42
43
44
*
* $Id$
*
* $Log: gdrelp.F,v $
* Revision 1.1.1.1 2002/07/24 15:56:25 rdm
* initial import into CVS
*
* Revision 1.1.1.1 2002/06/16 15:18:40 hristov
* Separate distribution of Geant3
*
* Revision 1.1.1.1 1999/05/18 15:55:20 fca
* AliRoot sources
*
* Revision 1.1.1.1 1995/10/24 10:21:24 cernlib
* Geant
*
*
#include "geant321/pilot.h"
*CMZ : 3.21/02 29/03/94 15.41.21 by S.Giani
*-- Author :
SUBROUTINE G3DRELP(A,Z,DENS,T,DEDX)
C.
C. ******************************************************************
C. * *
C. * Calculates the mean 1/DENS*dE/dx of a MUON with kinetic *
C. * energy T in an element of atomic number Z, atomic weight A *
C. * and density DENS ( the density is just used for the *
C. * calculation of the density effect in the case of high T). *
C. * *
C. * ------------------------------------------------------ *
C. * It calls GDRELP with the substitution EMMU -- > PMASS ! *
C. * ( and put back the right value of PMASS after) ! *
C. * ----------------------------------------------------- *
C. * *
C. * ==>Called by : G3DRELA *
C. * Author L.Urban ********* *
C. * *
C. ******************************************************************
C.
#include "geant321/gconsp.inc"
*
CALL G3DRELX(A,Z,DENS,T,REAL(PMASS),DEDX)
*
END