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