]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliLegoGeneratorPhiZ.cxx
The track length added to the reference hit
[u/mrichter/AliRoot.git] / STEER / AliLegoGeneratorPhiZ.cxx
CommitLineData
6872c613 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$
899c7749 18Revision 1.6 2002/05/03 12:18:24 morsch
19Print-out corrected.
20
39974533 21Revision 1.5 2001/05/16 14:57:22 alibrary
22New files for folders and Stack
23
9e1a0ddb 24Revision 1.4 2001/01/12 09:23:17 morsch
25Correct order of phi and z.
26
d55c1573 27Revision 1.3 2000/11/30 07:12:49 alibrary
28Introducing new Rndm and QA classes
29
65fb704d 30Revision 1.2 2000/10/27 11:40:01 morsch
31Error in printouts corrected
32
fa02caa3 33Revision 1.1 2000/10/27 08:13:02 morsch
34Lego generator for phi-z binning.
35
6872c613 36*/
37
38#include "AliLegoGeneratorPhiZ.h"
39#include "AliRun.h"
40
41ClassImp(AliLegoGeneratorPhiZ)
42
43
44//___________________________________________
45void AliLegoGeneratorPhiZ::Generate()
46{
47// Create a geantino with kinematics corresponding to the current bins
48// Here: Coor1 = Z
49// Coor2 = phi.
50
51 //
52 // Rootinos are 0
53 const Int_t kMpart = 0;
54 Float_t orig[3], pmom[3];
55 Float_t t, cosp, sinp;
56 if (fCoor1Bin==-1) fCoor1Bin=fNCoor1;
57 // Prepare for next step
58 if(fCoor1Bin>=fNCoor1-1)
59 if(fCoor2Bin>=fNCoor2-1) {
60 Warning("Generate","End of Lego Generation");
61 return;
62 } else {
63 fCoor2Bin++;
39974533 64 printf("Generating rays in Phi-bin:%d\n",fCoor2Bin);
6872c613 65 fCoor1Bin=0;
66 } else fCoor1Bin++;
6872c613 67 fCurCoor1 = (fCoor1Min+(fCoor1Bin+0.5)*(fCoor1Max-fCoor1Min)/fNCoor1);
68 fCurCoor2 = (fCoor2Min+(fCoor2Bin+0.5)*(fCoor2Max-fCoor2Min)/fNCoor2);
69
d55c1573 70 Float_t phi = fCurCoor2*TMath::Pi()/180.;
6872c613 71
72 cosp = TMath::Cos(phi);
73 sinp = TMath::Sin(phi);
74
75 pmom[0] = cosp;
76 pmom[1] = sinp;
77 pmom[2] = 0.;
78
79 // --- Where to start
80 orig[0] = orig[1] = orig[2] = 0;
d55c1573 81 orig[2] = fCurCoor1;
6872c613 82
83 Float_t dalicz = 3000;
84 if (fRadMin > 0) {
85 t = PropagateCylinder(orig,pmom,fRadMin,dalicz);
899c7749 86 orig[0] += pmom[0]*t;
87 orig[1] += pmom[1]*t;
88 orig[2] += pmom[2]*t;
6872c613 89 if (TMath::Abs(orig[2]) > fZMax) return;
90 }
91
92 Float_t polar[3]={0.,0.,0.};
93 Int_t ntr;
9e1a0ddb 94 gAlice->SetTrack(1, -1, kMpart, pmom, orig, polar, 0, kPPrimary, ntr);
6872c613 95
96}