]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliLegoGenerator.cxx
Minor changes (R.Barbera)
[u/mrichter/AliRoot.git] / STEER / AliLegoGenerator.cxx
CommitLineData
8918e700 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/*
17$Log$
65fb704d 18Revision 1.3 2000/10/26 14:15:54 morsch
19- Base class now
20- Change from theta, phi to general coordinates Coor1, Coor2
21- PropagateCylinder: bug in calculation of distance to limiting radius corrected.
22
34915916 23Revision 1.2 2000/07/13 16:19:09 fca
24Mainly coding conventions + some small bug fixes
25
ef42d733 26Revision 1.1 2000/07/12 08:56:25 fca
27Coding convention correction and warning removal
28
8918e700 29Revision 1.16 2000/05/26 08:35:03 fca
30Move the check on z after z has been retrieved
31
32Revision 1.15 2000/05/16 13:10:40 fca
33New method IsNewTrack and fix for a problem in Father-Daughter relations
34
35Revision 1.14 2000/04/27 10:38:21 fca
36Correct termination of Lego Run and introduce Lego getter in AliRun
37
38Revision 1.13 2000/04/26 10:17:31 fca
39Changes in Lego for G4 compatibility
40
41Revision 1.12 2000/04/07 11:12:33 fca
42G4 compatibility changes
43
44Revision 1.11 2000/03/22 13:42:26 fca
45SetGenerator does not replace an existing generator, ResetGenerator does
46
47Revision 1.10 2000/02/23 16:25:22 fca
48AliVMC and AliGeant3 classes introduced
49ReadEuclid moved from AliRun to AliModule
50
51Revision 1.9 1999/12/03 10:54:01 fca
52Fix lego summary
53
54Revision 1.8 1999/10/01 09:54:33 fca
55Correct logics for Lego StepManager
56
57Revision 1.7 1999/09/29 09:24:29 fca
58Introduction of the Copyright and cvs Log
8918e700 59*/
60
61#include "AliLegoGenerator.h"
62#include "AliRun.h"
63
64ClassImp(AliLegoGenerator)
65
66//___________________________________________
34915916 67
68AliLegoGenerator::AliLegoGenerator()
69{
70 //
71 // Default Constructor
72 //
73 SetName("Lego");
74
75 fCoor1Bin = fCoor2Bin = -1;
76 fCurCoor1 = fCurCoor2 = 0;
77}
78
79AliLegoGenerator::AliLegoGenerator(Int_t nc1, Float_t c1min,
80 Float_t c1max, Int_t nc2,
81 Float_t c2min, Float_t c2max,
8918e700 82 Float_t rmin, Float_t rmax, Float_t zmax) :
34915916 83 AliGenerator(0), fRadMin(rmin), fRadMax(rmax), fZMax(zmax), fNCoor1(nc1),
84 fNCoor2(nc2), fCoor1Bin(nc1), fCoor2Bin(-1), fCurCoor1(0), fCurCoor2(0)
8918e700 85
86{
ef42d733 87 //
88 // Standard generator for Lego rays
89 //
34915916 90 SetCoor1Range(nc1, c1min, c1max);
91 SetCoor2Range(nc2, c2min, c2max);
8918e700 92 SetName("Lego");
93}
94
8918e700 95//___________________________________________
96void AliLegoGenerator::Generate()
97{
34915916 98// Create a geantino with kinematics corresponding to the current bins
99// Here: Coor1 = theta
100// Coor2 = phi.
8918e700 101
102 //
103 // Rootinos are 0
104 const Int_t kMpart = 0;
105 Float_t orig[3], pmom[3];
106 Float_t t, cost, sint, cosp, sinp;
34915916 107 if (fCoor1Bin==-1) fCoor1Bin=fNCoor1;
8918e700 108 // Prepare for next step
34915916 109 if(fCoor1Bin>=fNCoor1-1)
110 if(fCoor2Bin>=fNCoor2-1) {
8918e700 111 Warning("Generate","End of Lego Generation");
112 return;
113 } else {
34915916 114 fCoor2Bin++;
115 printf("Generating rays in phi bin:%d\n",fCoor2Bin);
116 fCoor1Bin=0;
117 } else fCoor1Bin++;
118
119 fCurCoor1 = (fCoor1Min+(fCoor1Bin+0.5)*(fCoor1Max-fCoor1Min)/fNCoor1);
120 fCurCoor2 = (fCoor2Min+(fCoor2Bin+0.5)*(fCoor2Max-fCoor2Min)/fNCoor2);
121 cost = TMath::Cos(fCurCoor1 * TMath::Pi()/180.);
122 sint = TMath::Sin(fCurCoor1 * TMath::Pi()/180.);
123 cosp = TMath::Cos(fCurCoor2 * TMath::Pi()/180.);
124 sinp = TMath::Sin(fCurCoor2 * TMath::Pi()/180.);
8918e700 125
126 pmom[0] = cosp*sint;
127 pmom[1] = sinp*sint;
128 pmom[2] = cost;
129
130 // --- Where to start
131 orig[0] = orig[1] = orig[2] = 0;
132 Float_t dalicz = 3000;
133 if (fRadMin > 0) {
34915916 134 t = PropagateCylinder(orig,pmom,fRadMin,dalicz);
135 orig[0] = pmom[0]*t;
136 orig[1] = pmom[1]*t;
137 orig[2] = pmom[2]*t;
138 if (TMath::Abs(orig[2]) > fZMax) return;
8918e700 139 }
140
141 Float_t polar[3]={0.,0.,0.};
142 Int_t ntr;
65fb704d 143 gAlice->SetTrack(1, 0, kMpart, pmom, orig, polar, 0, kPPrimary, ntr);
34915916 144
8918e700 145}
146
147//___________________________________________
148Float_t AliLegoGenerator::PropagateCylinder(Float_t *x, Float_t *v, Float_t r, Float_t z)
149{
150// Propagate to cylinder from inside
151
152 Double_t hnorm, sz, t, t1, t2, t3, sr;
153 Double_t d[3];
154 const Float_t kSmall = 1e-8;
155 const Float_t kSmall2 = kSmall*kSmall;
156
157// ---> Find intesection with Z planes
158 d[0] = v[0];
159 d[1] = v[1];
160 d[2] = v[2];
161 hnorm = TMath::Sqrt(1/(d[0]*d[0]+d[1]*d[1]+d[2]*d[2]));
162 d[0] *= hnorm;
163 d[1] *= hnorm;
164 d[2] *= hnorm;
165 if (d[2] > kSmall) sz = (z-x[2])/d[2];
166 else if (d[2] < -kSmall) sz = -(z+x[2])/d[2];
167 else sz = 1.e10; // ---> Direction parallel to X-Y, no intersection
168
169// ---> Intersection with cylinders
170// Intersection point (x,y,z)
171// (x,y,z) is on track : x=X(1)+t*D(1)
172// y=X(2)+t*D(2)
173// z=X(3)+t*D(3)
174// (x,y,z) is on cylinder : x**2 + y**2 = R**2
175//
176// (D(1)**2+D(2)**2)*t**2
177// +2.*(X(1)*D(1)+X(2)*D(2))*t
178// +X(1)**2+X(2)**2-R**2=0
179// ---> Solve second degree equation
180 t1 = d[0]*d[0] + d[1]*d[1];
181 if (t1 <= kSmall2) {
182 t = sz; // ---> Track parallel to the z-axis, take distance to planes
183 } else {
184 t2 = x[0]*d[0] + x[1]*d[1];
185 t3 = x[0]*x[0] + x[1]*x[1];
186 // ---> It should be positive, but there may be numerical problems
34915916 187 sr = (-t2 +TMath::Sqrt(TMath::Max(t2*t2-(t3-r*r)*t1,0.)))/t1;
8918e700 188 // ---> Find minimum distance between planes and cylinder
189 t = TMath::Min(sz,sr);
190 }
191 return t;
192}
193
34915916 194