]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/sim/AliL3Generator.cxx
Added entry for runtracker. Also some changes in order to use this
[u/mrichter/AliRoot.git] / HLT / sim / AliL3Generator.cxx
1 #include "AliL3Generator.h"
2
3
4 ClassImp(AliL3Generator)
5
6 AliL3Generator::AliL3Generator()
7 {
8
9 }
10
11 AliL3Generator::~AliL3Generator()
12 {
13
14 }
15
16 void AliL3Generator::Generate()
17 {
18   Float_t pt[3];
19   for(Int_t i=0; i<fNpart; i++)
20     {
21       TParticle *p = part[i];
22       gAlice->SetTrack(fTrackIt,-1,p->GetPdgCode(),fP,fOrigin.GetArray(),polar,0,kPPrimary,nt);
23       
24     }
25
26 }