]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TPC/AliTPCHits2Digits.C
Processing of many events possible now
[u/mrichter/AliRoot.git] / TPC / AliTPCHits2Digits.C
... / ...
CommitLineData
1Int_t AliTPCHits2Digits(Int_t nevent=1)
2{
3
4 // new version by J.Belikov
5
6 // Connect the Root Galice file containing Geometry, Kine and Hits
7
8 const char * inFile_old = "galice.root";
9 const char * inFile_new = "rfio:galice.root";
10 TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject(inFile_old);
11 if (file) {file->Close(); delete file;}
12 file = TFile::Open(inFile_new,"UPDATE");
13 if (!file->IsOpen()) {
14 cerr<<"Can't open "<<inFile_new<<" !\n";
15 return 1;
16 }
17
18 // Get AliRun object from file or create it if not on file
19 if (gAlice) delete gAlice;
20 gAlice = (AliRun*)file->Get("gAlice");
21 if (!gAlice) {
22 cerr<<"AliTPCHits2Digits.C : AliRun object not found on file\n";
23 return 2;
24 }
25
26
27
28 // gAlice->GetEvent(0);
29 AliTPC *TPC = (AliTPC*)gAlice->GetDetector("TPC");
30
31 TStopwatch timer;
32 timer.Start();
33
34 for(Int_t eventn =0;eventn<nevent;eventn++){
35 printf("Processing event %d",eventn);
36 gAlice->GetEvent(eventn);
37
38 TPC->Hits2Digits(eventn);
39 }
40
41 delete gAlice; gAlice=0;
42 file->Close(); delete file;
43 timer.Stop();
44 timer.Print();
45
46 return 0;
47};
48