]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenThetaSlice.cxx
Additional initialization. Do not remove fHeader, it is done in AliRunLoader
[u/mrichter/AliRoot.git] / EVGEN / AliGenThetaSlice.cxx
CommitLineData
56b2bd7e 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
803d1ab0 16/* $Id$ */
88cb7938 17
0af12c00 18
19// Generates n particles with in the same phi angle, varies theta
56b2bd7e 20// in equidistant intervals
21// This class is intended to use for studies of TPC response
22// via merging with background event.
56b2bd7e 23// Note that for a given theta pt and p are not independent
24// Range for only one variable (pt or p) should be given.
25// Based on the AliGenBox class written by andreas.morsch@cern.ch
26//
27// Comments and suggestions: Jiri.Chudoba@cern.ch
0af12c00 28
56b2bd7e 29
116cbefd 30#include <TPDGCode.h>
31
32#include "AliConst.h"
56b2bd7e 33#include "AliGenThetaSlice.h"
34#include "AliRun.h"
56b2bd7e 35
36ClassImp(AliGenThetaSlice)
37
38//_____________________________________________________________________________
39AliGenThetaSlice::AliGenThetaSlice()
40 :AliGenerator()
41{
42 //
43 // Default constructor
44 //
45 fIpart=0;
46}
47
48//_____________________________________________________________________________
49AliGenThetaSlice::AliGenThetaSlice(Int_t npart)
50 :AliGenerator(npart)
51{
52 //
53 // Standard constructor
54 //
55 fName = "ThetaSlice";
56 fTitle = "Particle generator - const. phi, slices in theta";
57 // Generate Proton by default
58 fIpart=kProton;
59}
60
61//_____________________________________________________________________________
62
63void AliGenThetaSlice::Generate()
64{
65 //
66 // Generate one trigger
67 //
68
69 Float_t polar[3]= {0,0,0};
70 Float_t origin[3];
71 Float_t p[3];
72 Int_t i, j, nt;
73 Double_t pmom, theta, phi, pt;
74 Float_t random[6];
75
76 if (fNpart == 0) return;
77
78 for (j=0;j<3;j++) origin[j]=fOrigin[j];
79 if(fVertexSmear==kPerEvent) {
80 Rndm(random,6);
81 for (j=0;j<3;j++) {
82 origin[j]+=fOsigma[j]*TMath::Cos(2*random[2*j]*TMath::Pi())*
83 TMath::Sqrt(-2*TMath::Log(random[2*j+1]));
84 }
85 }
86 Float_t thetaInterval = 0.;
87 if (fNpart > 1) {
88 thetaInterval = (fThetaMax-fThetaMin)/(fNpart-1);
89 }
90 Rndm(random,1);
91 phi=fPhiMin+random[0]*(fPhiMax-fPhiMin);
92 for(i=0;i<fNpart;i++) {
93 Rndm(random,1);
94 theta=fThetaMin+i*thetaInterval;
95 if(TestBit(kMomentumRange)) {
96 pmom=fPMin+random[0]*(fPMax-fPMin);
97 pt=pmom*TMath::Sin(theta);
98 } else {
99 pt=fPtMin+random[0]*(fPtMax-fPtMin);
100 pmom=pt/TMath::Sin(theta);
101 }
102 p[0] = pt*TMath::Cos(phi);
103 p[1] = pt*TMath::Sin(phi);
104 p[2] = pmom*TMath::Cos(theta);
105
106 if(fVertexSmear==kPerTrack) {
107 Rndm(random,6);
108 for (j=0;j<3;j++) {
109 origin[j]=fOrigin[j]+fOsigma[j]*TMath::Cos(2*random[2*j]*TMath::Pi())*
110 TMath::Sqrt(-2*TMath::Log(random[2*j+1]));
111 }
112 }
642f15cf 113 PushTrack(fTrackIt,-1,fIpart,p,origin,polar,0,kPPrimary,nt);
56b2bd7e 114 }
115}
116
117//_____________________________________________________________________________
118
119void AliGenThetaSlice::Init()
120{
121// Initialisation, check consistency of selected ranges
122 if(TestBit(kPtRange)&&TestBit(kMomentumRange))
123 Fatal("Init","You should not set the momentum range and the pt range!\n");
124 if((!TestBit(kPtRange))&&(!TestBit(kMomentumRange)))
125 Fatal("Init","You should set either the momentum or the pt range!\n");
126}
127