]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEANT321/geocad/gspset.F
Test macro to analysis the SPD simulation made with the Dubna model
[u/mrichter/AliRoot.git] / GEANT321 / geocad / gspset.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
d43b40e2 5* Revision 1.1.1.1 1999/05/18 15:55:17 fca
6* AliRoot sources
7*
fe4da5cc 8* Revision 1.1.1.1 1995/10/24 10:20:47 cernlib
9* Geant
10*
11*
12#include "geant321/pilot.h"
13*CMZ : 3.21/02 29/03/94 15.41.32 by S.Giani
14*-- Author :
15 SUBROUTINE GSPSET(PAR)
16C-
17C- Created 12-JUN-1991 Nils Joar Hoimyr
18C- Modified 21.02.1992 Jouko Vuoskoski
19C-
20C- Takes a GEANT SPHE shape, and wites it out as a primitive solid
21C- sphere in SET.
22C----------------------------------------------------------------------
23
24#include "geant321/gcsetf.inc"
25
26C
d43b40e2 27 DIMENSION PAR(100)
fe4da5cc 28C
29 REAL RMIN, RMAX
30C
31C Segments not yet ready:
32C REAL ALPH1, ALPH2, THET1, THET2
33C
34C----------------------------------------------------------------------
35C
36 RMIN= PAR(1)
37 RMAX= PAR(2)
38C
39C IF segment of a sphere THEN (Currently not implemented)
40C *WRITE SET @50,N..#34,RMAX,ALPH1,ALPH2,THET1,THET2,RMIN
41C ELSE
42C *WRITE SET @50,N..#34,RMAX,,,,,RMIN
43C----------------------------------------------------------------------
44C
45 WRITE(BLKSTR,10000)N1,RMAX,RMIN
46 CALL GJWRIT
47C
4810000 FORMAT('@50,',I10,',:5,2#34,',G14.7,',,,,,',G14.7)
49C
50 END