#ifndef __CINT__ #include "alles.h" #include "AliTPCtracker.h" #endif Int_t AliTPCSDigits2Digits(Int_t nevent=1) { // new version by J.Belikov // Connect the Root Galice file containing Geometry, Kine and Hits const char * inFile_old = "galice.root"; const char * inFile_new = "galice.root"; TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject(inFile_old); if (file) {file->Close(); delete file;} file = TFile::Open(inFile_new,"UPDATE"); if (!file->IsOpen()) { cerr<<"Can't open "<Get("gAlice"); if (!gAlice) { cerr<<"AliTPCHits2Digits.C : AliRun object not found on file\n"; return 2; } // gAlice->GetEvent(0); AliTPC *TPC = (AliTPC*)gAlice->GetDetector("TPC"); AliTPCParamSR *dig=(AliTPCParamSR *)file->Get("75x40_100x60"); if(dig){ cerr<<"2 pad-length geom hits with 3 pad-lengths geom digits\n"; delete dig; dig = new AliTPCParamSR(); } else { dig=(AliTPCParamSR *)gDirectory->Get("75x40_100x60_150x60"); } if (!dig) {cerr<<"TPC parameters have not been found !\n"; return 4;} TPC->SetParam(dig); TStopwatch timer; timer.Start(); for(Int_t eventn =0;eventnGetEvent(eventn); TPC->SDigits2Digits2(eventn); } delete gAlice; gAlice=0; file->Close(); delete file; timer.Stop(); timer.Print(); return 0; };