]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCHits2SDigits.C
New macros for handling Sdigits and merging
[u/mrichter/AliRoot.git] / TPC / AliTPCHits2SDigits.C
1 Int_t AliTPCHits2SDigits(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 = "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\n",eventn);
36     gAlice->GetEvent(eventn);
37
38     TPC->Hits2SDigits2(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
49
50
51