1 #include "AliHBTReaderTPC.h"
11 #include <AliTPCtrack.h>
12 #include <AliTPCParam.h>
13 #include <AliTPCtracker.h>
15 #include "AliHBTRun.h"
16 #include "AliHBTEvent.h"
17 #include "AliHBTParticle.h"
18 #include "AliHBTParticleCut.h"
21 ClassImp(AliHBTReaderTPC)
22 //reader for TPC tracking
23 //needs galice.root, AliTPCtracks.root, AliTPCclusters.root, good_tracks_tpc
25 //more info: http://alisoft.cern.ch/people/skowron/analyzer/index.html
26 //Piotr.Skowronski@cern.ch
29 AliHBTReaderTPC(const Char_t* trackfilename,const Char_t* clusterfilename,
30 const Char_t* galicefilename):
31 fTrackFileName(trackfilename),fClusterFileName(clusterfilename),
32 fGAliceFileName(galicefilename)
36 // trackfilename = "AliTPCtracks.root"
37 // clusterfilename = "AliTPCclusters.root"
38 // galicefilename = "" - this means: Do not open gAlice file -
39 // just leave the global pointer untached
41 fParticles = new AliHBTRun();
42 fTracks = new AliHBTRun();
45 /********************************************************************/
47 AliHBTReaderTPC(TObjArray* dirs,
48 const Char_t* trackfilename, const Char_t* clusterfilename,
49 const Char_t* galicefilename):
50 AliHBTReader(dirs), fTrackFileName(trackfilename),
51 fClusterFileName(clusterfilename),fGAliceFileName(galicefilename)
56 // trackfilename = "AliTPCtracks.root"
57 // clusterfilename = "AliTPCclusters.root"
58 // galicefilename = "" - this means: Do not open gAlice file -
59 // just leave the global pointer untached
61 fParticles = new AliHBTRun();
62 fTracks = new AliHBTRun();
66 /********************************************************************/
68 AliHBTReaderTPC::~AliHBTReaderTPC()
74 /********************************************************************/
76 AliHBTEvent* AliHBTReaderTPC::GetParticleEvent(Int_t n)
78 //returns Nth event with simulated particles
80 if(Read(fParticles,fTracks))
82 Error("GetParticleEvent","Error in reading");
85 return fParticles->GetEvent(n);
87 /********************************************************************/
88 AliHBTEvent* AliHBTReaderTPC::GetTrackEvent(Int_t n)
90 //returns Nth event with reconstructed tracks
92 if(Read(fParticles,fTracks))
94 Error("GetTrackEvent","Error in reading");
97 return fTracks->GetEvent(n);
99 /********************************************************************/
101 Int_t AliHBTReaderTPC::GetNumberOfPartEvents()
103 //returns number of events of particles
105 if ( Read(fParticles,fTracks))
107 Error("GetNumberOfPartEvents","Error in reading");
110 return fParticles->GetNumberOfEvents();
113 /********************************************************************/
114 Int_t AliHBTReaderTPC::GetNumberOfTrackEvents()
116 //returns number of events of tracks
118 if(Read(fParticles,fTracks))
120 Error("GetNumberOfTrackEvents","Error in reading");
123 return fTracks->GetNumberOfEvents();
125 /********************************************************************/
128 Int_t AliHBTReaderTPC::Read(AliHBTRun* particles, AliHBTRun *tracks)
130 //reads data and puts put to the particles and tracks objects
131 //reurns 0 if everything is OK
133 cout<<"AliHBTReaderTPC::Read()"<<endl;
134 Int_t i; //iterator and some temprary values
136 Int_t totalNevents = 0;
137 TFile *aTracksFile;//file with tracks
138 TFile *aClustersFile;//file with clusters
139 TFile *aGAliceFile;//!ile name with galice
141 if (!particles) //check if an object is instatiated
143 Error("Read"," particles object must instatiated before passing it to the reader");
145 if (!tracks) //check if an object is instatiated
147 Error("Read"," tracks object must instatiated before passing it to the reader");
149 particles->Reset();//clear runs == delete all old events
152 TObjArray *tarray = new TObjArray(5000); //cotainer for tpc tracks
153 tarray->SetOwner(); //set the ownership of the objects it contains
154 //when array is is deleted or cleared all objects
155 //that it contains are deleted
156 Int_t currentdir = 0;
159 if (fDirs) //if array with directories is supplied by user
161 Ndirs = fDirs->GetEntries(); //get the number if directories
165 Ndirs = 0; //if the array is not supplied read only from current directory
168 do //do{}while; is OK even if 0 dirs specified. In that case we try to read from "./"
171 if( (i=OpenFiles(aTracksFile,aClustersFile,aGAliceFile,currentdir)) )
173 Error("Read","Exiting due to problems with opening files. Errorcode %d",i);
179 if (gAlice->TreeE())//check if tree E exists
181 Nevents = (Int_t)gAlice->TreeE()->GetEntries();//if yes get number of events in gAlice
182 cout<<"________________________________________________________\n";
183 cout<<"Found "<<Nevents<<" event(s) in directory "<<GetDirName(currentdir)<<endl;
184 cout<<"Setting Magnetic Field: B="<<gAlice->Field()->SolenoidField()<<"T"<<endl;
185 AliKalmanTrack::SetConvConst(1000/0.299792458/gAlice->Field()->SolenoidField());
188 {//if not return an error
189 Error("Read","Can not find Header tree (TreeE) in gAlice");
194 aClustersFile->cd();//set cluster file active
195 AliTPCParam *TPCParam= (AliTPCParam*)aClustersFile->Get("75x40_100x60");
198 Error("Read","TPC parameters have not been found !\n");
204 for(Int_t currentEvent =0; currentEvent<Nevents;currentEvent++)//loop over all events
206 cout<<"Reading Event "<<currentEvent<<endl;
207 /**************************************/
208 /**************************************/
209 /**************************************/
211 aTracksFile->cd();//set track file active
213 Char_t treename[100];
214 sprintf(treename,"TreeT_TPC_%d",currentEvent);//prepare name of the tree
218 tracktree=(TTree*)aTracksFile->Get(treename);//get the tree
219 if (!tracktree) //check if we got the tree
220 {//if not return with error
221 Error("Read","Can't get a tree with TPC tracks !\n");
225 TBranch *trackbranch=tracktree->GetBranch("tracks");//get the branch with tracks
226 if (!trackbranch) ////check if we got the branch
227 {//if not return with error
228 Error("Read","Can't get a branch with TPC tracks !\n");
231 Int_t NTPCtracks=(Int_t)tracktree->GetEntries();//get number of TPC tracks
232 cout<<"Found "<<NTPCtracks<<" TPC tracks.\n";
233 //Copy tracks to array
235 AliTPCtrack *iotrack=0;
237 aClustersFile->cd();//set cluster file active
238 AliTPCtracker *tracker = new AliTPCtracker(TPCParam,currentEvent);//create the tacker for this event
239 if (!tracker) //check if it has created succeffuly
240 {//if not return with error
241 Error("Read","Can't get a tracker !\n");
244 tracker->LoadInnerSectors();
245 tracker->LoadOuterSectors();
247 for (i=0; i<NTPCtracks; i++) //loop over all tpc tracks
249 iotrack=new AliTPCtrack; //create new tracks
250 trackbranch->SetAddress(&iotrack); //tell the branch ehere to put track data from tree(file)
251 tracktree->GetEvent(i); //stream track i to the iotrack
252 tracker->CookLabel(iotrack,0.1); //calculate (cook) the label of the tpc track
253 //which is the label of corresponding simulated particle
254 tarray->AddLast(iotrack); //put the track in the array
257 aTracksFile->Delete(treename);//delete tree from memmory (and leave untached on disk)- we do not need it any more
258 aTracksFile->Delete("tracks");//delete branch from memmory
259 delete tracker; //delete tracker
267 Float_t phi, lam, pt;//angles and transverse momentum
268 Int_t label; //label of the current track
271 gAlice->GetEvent(currentEvent);
275 for (i=0; i<NTPCtracks; i++) //loop over all good tracks
277 iotrack = (AliTPCtrack*)tarray->At(i);
278 label = iotrack->GetLabel();
280 if (label < 0) continue;
282 TParticle *p = (TParticle*)gAlice->Particle(label);
284 if(p == 0x0) continue; //if returned pointer is NULL
285 if(p->GetPDG() == 0x0) continue; //if particle has crezy PDG code (not known to our database)
287 if(Pass(p->GetPdgCode())) continue; //check if we are intersted with particles of this type
288 //if not take next partilce
290 AliHBTParticle* part = new AliHBTParticle(*p);
291 if(Pass(part)) { delete part; continue;}//check if meets all criteria of any of our cuts
292 //if it does not delete it and take next good track
294 iotrack->PropagateToVertex();
296 iotrack->GetExternalParameters(xk,par); //get properties of the track
297 phi=TMath::ASin(par[2]) + iotrack->GetAlpha();
298 if (phi<-TMath::Pi()) phi+=2*TMath::Pi();
299 if (phi>=TMath::Pi()) phi-=2*TMath::Pi();
301 pt=1.0/TMath::Abs(par[4]);
303 Double_t tpx = pt * TMath::Cos(phi); //track x coordinate of momentum
304 Double_t tpy = pt * TMath::Sin(phi); //track y coordinate of momentum
305 Double_t tpz = pt * lam; //track z coordinate of momentum
307 Double_t mass = p->GetMass();
308 Double_t tEtot = TMath::Sqrt( tpx*tpx + tpy*tpy + tpz*tpz + mass*mass);//total energy of the track
310 AliHBTParticle* track = new AliHBTParticle(p->GetPdgCode(), tpx, tpy , tpz, tEtot, 0., 0., 0., 0.);
311 if(Pass(track))//check if meets all criteria of any of our cuts
312 //if it does not delete it and take next good track
318 particles->AddParticle(totalNevents,part);//put track and particle on the run
319 tracks->AddParticle(totalNevents,track);
322 tarray->Clear(); //clear the array
324 /**************************************/
325 /**************************************/
326 /**************************************/
330 //save environment (resouces) --
331 //clean your place after the work
332 CloseFiles(aTracksFile,aClustersFile,aGAliceFile);
334 }while(currentdir < Ndirs);
342 /********************************************************************/
343 Int_t AliHBTReaderTPC::OpenFiles
344 (TFile*& aTracksFile, TFile*& aClustersFile, TFile*& agAliceFile,Int_t event)
346 //opens all the files
349 const TString& dirname = GetDirName(event);
352 Error("OpenFiles","Can not get directory name");
356 TString filename = dirname +"/"+ fTrackFileName;
357 aTracksFile = TFile::Open(filename.Data());
358 if ( aTracksFile == 0x0 )
360 Error("OpenFiles","Can't open file with tacks named %s",filename.Data());
363 if (!aTracksFile->IsOpen())
365 Error("OpenFiles","Can't open file with tacks named %s",filename.Data());
369 filename = dirname +"/"+ fClusterFileName;
370 aClustersFile = TFile::Open(filename.Data());
371 if ( aClustersFile == 0x0 )
373 Error("OpenFiles","Can't open file with TPC clusters named %s",filename.Data());
376 if (!aClustersFile->IsOpen())
378 Error("OpenFiles","Can't open file with TPC clusters named %s",filename.Data());
382 filename = dirname +"/"+ fGAliceFileName;
383 agAliceFile = TFile::Open(filename.Data());
384 if ( agAliceFile== 0x0)
386 Error("OpenFiles","Can't open file with TPC clusters named %s",filename.Data());
389 if (!agAliceFile->IsOpen())
391 Error("OpenFiles","Can't open file with TPC clusters named %s",filename.Data());
395 if (!(gAlice=(AliRun*)agAliceFile->Get("gAlice")))
397 Error("OpenFiles","gAlice have not been found on %s !\n",filename.Data());
403 /********************************************************************/
405 /********************************************************************/
407 void AliHBTReaderTPC::CloseFiles(TFile*& tracksFile, TFile*& clustersFile, TFile*& gAliceFile)
413 clustersFile->Close();
428 /********************************************************************/
430 /********************************************************************/
431 /********************************************************************/
432 /********************************************************************/