]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HBTAN/AliHBTReaderITSv1.cxx
Moving lib*.pkg
[u/mrichter/AliRoot.git] / HBTAN / AliHBTReaderITSv1.cxx
CommitLineData
16f9289f 1//____________________________________________________________________
2//////////////////////////////////////////////////////////////////////
3// //
4// class AliHBTReaderITSv1 //
5// //
6// Reader for ITSv1 tracks. Not maintained since v1 is not //
7// supposed to be used //
8// //
9//////////////////////////////////////////////////////////////////////
1b446896 10
d0c23b58 11#include <Riostream.h>
64e553ff 12#include <TBranch.h>
024a7e64 13#include <TFile.h>
64e553ff 14#include <TObjArray.h>
15#include <TParticle.h>
16#include <TString.h>
024a7e64 17#include <TTree.h>
64e553ff 18
024a7e64 19#include "AliHBTParticle.h"
20#include "AliHBTParticleCut.h"
21#include "AliHBTReaderITSv1.h"
22#include "AliHBTRun.h"
23#include "AliITSIOTrack.h"
24#include "AliKalmanTrack.h"
25#include "AliMagF.h"
26#include "AliRun.h"
27#include "AliStack.h"
1b446896 28
64e553ff 29ClassImp(AliHBTReaderITSv1)
30/********************************************************************/
1b446896 31
a8a66f34 32AliHBTReaderITSv1::AliHBTReaderITSv1(const Char_t* tracksfilename,const Char_t* galicefilename):
33 fITSTracksFileName(tracksfilename),
34 fGAliceFileName(galicefilename)
35{
36 //ctor
37}
64e553ff 38/********************************************************************/
39
a8a66f34 40AliHBTReaderITSv1::AliHBTReaderITSv1(TObjArray* dirs, const Char_t* tracksfilename,const Char_t* galicefilename):
41 AliHBTReader(dirs),
42 fITSTracksFileName(tracksfilename),
43 fGAliceFileName(galicefilename)
44{
45//ctor
46}
64e553ff 47/********************************************************************/
48
49AliHBTReaderITSv1::~AliHBTReaderITSv1()
1b446896 50{
a8a66f34 51//dtor
1b446896 52}
64e553ff 53/********************************************************************/
54
1b446896 55
56Int_t AliHBTReaderITSv1::Read(AliHBTRun* particles, AliHBTRun *tracks)
64e553ff 57{
a8a66f34 58//Reads data
59 Int_t nevents = 0;
64e553ff 60 AliITSIOTrack *iotrack=new AliITSIOTrack;
61 Int_t currentdir = 0;
a8a66f34 62 Int_t ndirs;
63 Int_t totalnevents = 0;
b0d56759 64
64e553ff 65 if (fDirs)
66 {
a8a66f34 67 ndirs = fDirs->GetEntries();
64e553ff 68 }
69 else
70 {
a8a66f34 71 ndirs = 0;
64e553ff 72 }
73
74 do //do while is good even if
75 {
76 TFile* gAliceFile = OpenGAliceFile(currentdir);
77 if(gAliceFile == 0x0)
1b446896 78 {
64e553ff 79 Error("Read","Can not open the file with gAlice");
80 delete iotrack;
81 return 1;
1b446896 82 }
64e553ff 83 if (gAlice->TreeE())//check if tree E exists
84 {
a8a66f34 85 nevents = (Int_t)gAlice->TreeE()->GetEntries();//if yes get number of events in gAlice
64e553ff 86 cout<<"________________________________________________________\n";
a8a66f34 87 cout<<"Found "<<nevents<<" event(s) in directory "<<GetDirName(currentdir)<<endl;
64e553ff 88 cout<<"Setting Magnetic Field. Factor is "<<gAlice->Field()->Factor()<<endl;
89 AliKalmanTrack::SetConvConst(100/0.299792458/0.2/gAlice->Field()->Factor());
90 }
91 else
92 {//if not return an error
93 Error("Read","Can not find Header tree (TreeE) in gAlice");
94 delete iotrack;
95 return 4;
96 }
0f14cc3e 97
98 TFile *file = OpenTrackFile(currentdir);
99 if(file == 0x0)
100 {
101 Error("Read","Can not open the file with ITS tracks V1");
102 delete iotrack;
103 return 2;
104 }
b0d56759 105
106 Int_t naccepted = 0;
64e553ff 107 char tname[30];
b0d56759 108
a8a66f34 109 for (Int_t currentEvent = 0; currentEvent < nevents; currentEvent++)
64e553ff 110 {
b0d56759 111 cout<<"Reading Event "<<currentEvent;
64e553ff 112
113 sprintf(tname,"TreeT%d",currentEvent);
114 file->cd();
115 TTree *tracktree=(TTree*)file->Get(tname);
116 TBranch *tbranch=tracktree->GetBranch("ITStracks");
117 tbranch->SetAddress(&iotrack);
118
119 gAliceFile->cd();
120 gAlice->GetEvent(currentEvent);
16f9289f 121 gAlice->Stack()->Particles();
1b446896 122
64e553ff 123 Int_t nentr=(Int_t)tracktree->GetEntries();
b0d56759 124
125 cout<<". Found "<<nentr<<" tracks.";
126 fflush(0);
127
64e553ff 128 for (Int_t i=0; i<nentr; i++)
129 {
1b446896 130
64e553ff 131 tracktree->GetEvent(i);
132 if(!iotrack) continue;
133 Int_t label = iotrack->GetLabel();
134 if (label < 0)
135 {
6440fe71 136 continue;
64e553ff 137 }
0f14cc3e 138
16f9289f 139 TParticle *p = (TParticle*)gAlice->Stack()->Particle(label);
64e553ff 140 if(!p)
141 {
142 Warning("Read","Can not get particle with label &d",label);
143 continue;
144 }
145 if(Pass(p->GetPdgCode())) continue; //check if we are intersted with particles of this type
146 //if not take next partilce
1b446896 147
8089a083 148 AliHBTParticle* part = new AliHBTParticle(*p,i);
64e553ff 149 if(Pass(part)) { delete part; continue;}//check if meets all criteria of any of our cuts
150 //if it does not delete it and take next good track
151
152 Double_t px=iotrack->GetPx();
153 Double_t py=iotrack->GetPy();
154 Double_t pz=iotrack->GetPz();
155 Double_t mass = p->GetMass();
156 Double_t tEtot = TMath::Sqrt(px*px + py*py + pz*pz + mass*mass);//total energy of the track
157
158 Double_t x= iotrack->GetX();
159 Double_t y= iotrack->GetY();
160 Double_t z= iotrack->GetZ();
161
88cb7938 162 AliHBTParticle* track = new AliHBTParticle(p->GetPdgCode(), i, px, py , pz, tEtot, x, y, z, 0.);
64e553ff 163 if(Pass(track)) { delete track;continue;}//check if meets all criteria of any of our cuts
164 //if it does not delete it and take next good track
1b446896 165
a8a66f34 166 particles->AddParticle(totalnevents,part);//put track and particle on the run
167 tracks->AddParticle(totalnevents,track);
b0d56759 168 naccepted++;
64e553ff 169 }//end loop over tracks in the event
1b446896 170
a8a66f34 171 totalnevents++;
b0d56759 172 cout<<" Accepted "<<naccepted<<" tracks"<<endl;
64e553ff 173 }//end of loop over events in current directory
174
175 gAliceFile->Close();
176 delete gAliceFile;
177 gAliceFile = 0;
178
179 file->Close();
180 delete file;
181 file = 0;
429f368c 182 currentdir++;
a8a66f34 183 }while(currentdir < ndirs);//end of loop over directories specified in fDirs Obj Array
1b446896 184
1b446896 185
64e553ff 186 delete iotrack;
187 fIsRead = kTRUE;
188 return 0;
189
1b446896 190 }
64e553ff 191/********************************************************************/
1b446896 192
64e553ff 193TFile* AliHBTReaderITSv1::OpenTrackFile(Int_t ndir)
194{
195//opens files to be read for given directoru nomber in fDirs Array
196 const TString& dirname = GetDirName(ndir);
197 if (dirname == "")
198 {
199 Error("OpenGAliceFile","Can not get directory name");
200 return 0x0;
201 }
202 TString filename = dirname + "/" + fITSTracksFileName;
f20bcaaa 203
204 TFile *file = TFile::Open(filename.Data());
64e553ff 205 if (!file)
206 {
207 Error("Read","Can not open file %s",filename.Data());
208 return 0x0;
209 }
210 if (!file->IsOpen())
211 {
212 Error("Read","Can not open file %s",filename.Data());
213 return 0x0;
214 }
215
216 return file;
217}
1b446896 218
219
64e553ff 220/********************************************************************/
221TFile* AliHBTReaderITSv1::OpenGAliceFile(Int_t ndir)
222{
a8a66f34 223//Opens galice.root file
64e553ff 224 const TString& dirname = GetDirName(ndir);
225 if (dirname == "")
226 {
227 Error("OpenGAliceFile","Can not get directory name");
228 return 0x0;
229 }
1b446896 230
64e553ff 231 TString filename = dirname + "/" + fGAliceFileName;
232
233 TFile* gAliceFile = TFile::Open(filename.Data());
234 if ( gAliceFile== 0x0)
1b446896 235 {
64e553ff 236 Error("OpenFiles","Can't open file named %s",filename.Data());
237 return 0x0;
1b446896 238 }
64e553ff 239 if (!gAliceFile->IsOpen())
1b446896 240 {
64e553ff 241 Error("OpenFiles","Can't open file named %s",filename.Data());
242 return 0x0;
1b446896 243 }
1b446896 244
64e553ff 245 if (!(gAlice=(AliRun*)gAliceFile->Get("gAlice")))
246 {
247 Error("OpenFiles","gAlice have not been found on %s !\n",filename.Data());
248 gAliceFile->Close();
249 delete gAliceFile;
250 return 0x0;
251 }
252
253 return gAliceFile;
254}
255
256/********************************************************************/
257/********************************************************************/
258
259