]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
New macros for handling Sdigits and merging
authorkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Nov 2001 13:37:00 +0000 (13:37 +0000)
committerkowal2 <kowal2@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Nov 2001 13:37:00 +0000 (13:37 +0000)
TPC/AliTPCHits2SDigits.C [new file with mode: 0644]
TPC/AliTPCSDigits2Digits.C [new file with mode: 0644]
TPC/AliTPCTestMerge.C [new file with mode: 0644]

diff --git a/TPC/AliTPCHits2SDigits.C b/TPC/AliTPCHits2SDigits.C
new file mode 100644 (file)
index 0000000..e9b0ada
--- /dev/null
@@ -0,0 +1,51 @@
+Int_t AliTPCHits2SDigits(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 "<<inFile_new<<" !\n";
+    return 1;
+  }
+
+  // Get AliRun object from file or create it if not on file
+  if (gAlice) delete gAlice;
+  gAlice = (AliRun*)file->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");      
+
+  TStopwatch timer;
+  timer.Start();
+
+  for(Int_t eventn =0;eventn<nevent;eventn++){
+    printf("Processing event %d\n",eventn);
+    gAlice->GetEvent(eventn);
+
+    TPC->Hits2SDigits2(eventn);
+  } 
+
+  delete gAlice; gAlice=0;
+  file->Close(); delete file;
+  timer.Stop();
+  timer.Print();
+
+  return 0;
+};
+
+
+
+
diff --git a/TPC/AliTPCSDigits2Digits.C b/TPC/AliTPCSDigits2Digits.C
new file mode 100644 (file)
index 0000000..4064cdd
--- /dev/null
@@ -0,0 +1,63 @@
+#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 "<<inFile_new<<" !\n";
+    return 1;
+  }
+
+  // Get AliRun object from file or create it if not on file
+  //  if (gAlice) delete gAlice;
+  gAlice = (AliRun*)file->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");      
+
+  TStopwatch timer;
+  timer.Start();
+
+  for(Int_t eventn =0;eventn<nevent;eventn++){
+    printf("Processing event %d\n",eventn);
+    gAlice->GetEvent(eventn);
+
+    TPC->SDigits2Digits2(eventn);
+  } 
+
+  delete gAlice; gAlice=0;
+  file->Close(); delete file;
+  timer.Stop();
+  timer.Print();
+
+  return 0;
+};
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/TPC/AliTPCTestMerge.C b/TPC/AliTPCTestMerge.C
new file mode 100644 (file)
index 0000000..4dfae5c
--- /dev/null
@@ -0,0 +1,57 @@
+#ifndef __CINT__
+  #include "alles.h"
+#endif
+Int_t AliTPCTestMerge(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 "<<inFile_new<<" !\n";
+    return 1;
+  }
+
+  // Get AliRun object from file or create it if not on file
+  //if (gAlice) delete gAlice;
+  gAlice = (AliRun*)file->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");      
+
+  TStopwatch timer;
+  timer.Start();
+  TTree  tree[100];   //
+  Int_t mask[100];
+  for(Int_t eventn =0;eventn<nevent;eventn++){
+  
+    printf("Processing event %d",eventn);
+    char  name[100];
+    sprintf(name,"TreeS_75x40_100x60_%d",eventn);
+    tree[eventn].Read(name);
+    tree[eventn].Dump();
+    mask[eventn] = 2<<(20+eventn);
+    
+  } 
+  TPC->Merge(tree,mask,nevent,nevent);
+  
+  file->Close(); delete file;
+  timer.Stop();
+  timer.Print();
+  delete gAlice; gAlice=0;
+  return 0;
+};
+
+
+
+