]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFtestDigitizer.C
GetMedium replaced by CurrentMedium (I.Hrivnacova)
[u/mrichter/AliRoot.git] / TOF / AliTOFtestDigitizer.C
index 7a1d2049ab30486e7de60616590291bd1d366c4f..5cd4412ca820c9f4ea2c72ba0f1a45f9f07d594a 100644 (file)
 //       file with digits
 //
 // input:
-//       TString fileNameSDigits ... input file with sdigits
+//       char* fileNameSignal ... input file with sdigits
 //       TString fileNameDigits ... output file with digits
 //       Int_t nEvents  ... how many events to process
 //
+// Updated to the new I/O: C. Zampolli
+//
+/////////////////////////////////////////////////////////////////////
 
 #if !defined(__CINT__) || defined(__MAKECINT__)
 #include "iostream.h"
 #include "TStopwatch.h"
 #endif
 
-//#include "AliHits2SDigits.C"
-
-TFile* OpenFile(TString fileName);
-Bool_t ImportgAlice(TFile *file);
-void AliCopyN(TString inputFile, TString outputFile);
-void AliCopy(TFile *inputFile, TFile *outputFile);
-Int_t gDEBUG = 1;
+Int_t AliTOFtestDigitizer(const char* fileNameSignal = "galice.root",
+                         /*const char* fileNameSignal = "signal/galice.root",
+                           const char* fileNameBkgrd = "bkgrd/galice.root",*/
+                         Int_t nEvents = -1, Int_t signalPerBkgrd = 1,
+                         Int_t iTOF = 1)
+{
+  
+// delete the current gAlice object, the one from input file will be used
+  if(gAlice)
+    {
+      delete gAlice->GetRunLoader();
+      delete gAlice;
+      gAlice=0x0;
+    }
 
+  AliRunDigitizer * manager = new AliRunDigitizer(1/*2*/,signalPerBkgrd);
+  manager->SetInputStream(0, fileNameSignal);
+  //manager->SetInputStream(1, fileNameBkgrd);
+  //manager->SetOutputFile(fileNameSignal);
+  if (nEvents >= 0) manager->SetNrOfEventsToWrite(nEvents);
 
-Int_t AliTOFtestDigitizer(TString fileNameDigits="digits.root", 
-                       TString fileNameSDigits="rfio:sdigits.root", 
-                       Int_t nEvents = 1, Int_t iTOF = 1, Int_t iCopy = 1)
-{
-// delete the current gAlice object, the one from input file
-//  will be used
+  if (iTOF) AliTOFDigitizer *dTOF = new AliTOFDigitizer(manager);
 
-  if(gAlice){
-    delete gAlice;
-    gAlice = 0;
-  } // end if gAlice
-  AliRunDigitizer * manager = new AliRunDigitizer(1,1);
-  manager->SetInputStream(0,fileNameSDigits.Data());
-  if (fileNameDigits != "") {
-    if (iCopy) {
-      AliCopyN(fileNameSDigits,fileNameDigits);
-    }
-    manager->SetOutputFile(fileNameDigits);
-  }
-  manager->SetNrOfEventsToWrite(nEvents);
-  if (iTOF) AliTOFDigitizer *dTOF  = new AliTOFDigitizer(manager);
   TStopwatch timer;
   timer.Start();
   manager->Exec("deb all");
   timer.Stop(); 
   timer.Print();
-  delete manager;
-}
-
-
-////////////////////////////////////////////////////////////////////////
-void AliCopyN(TString inputFileName, TString outputFileName) {
-// copy some objects
-
-  TFile *inputFile = OpenFile(inputFileName);
-  if (!inputFile) return;
 
-  TFile *outputFile = TFile::Open(outputFileName.Data(),"update");
-  if (!outputFile->IsOpen()) {
-    cerr<<"Can't open "<<outputFileName.Data()<<" !\n";
-    return;
-  }
-  if (!ImportgAlice(inputFile)) return;
-  AliCopy(inputFile, outputFile);
-  inputFile->Close();
-  delete inputFile;
-  outputFile->Close();
-  delete outputFile;
-}
-
-////////////////////////////////////////////////////////////////////////
-TFile* OpenFile(TString fileName) {
-  // open file fileName
-  TFile *file = TFile::Open(fileName.Data());
-  if (!file->IsOpen()) {
-    cerr<<"Can't open "<<fileName.Data()<<" !\n";
-    return 0;
-  }
-  return file;
-}
+//  delete manager;
+//  manager = 0x0;
+  
+  if(gAlice)
+    {
+      delete gAlice->GetRunLoader();
+      delete gAlice;
+      gAlice=0x0;
+    }
 
-////////////////////////////////////////////////////////////////////////
-Bool_t ImportgAlice(TFile *file) {
-  // read in gAlice object from the file
-  gAlice = (AliRun*)file->Get("gAlice");
-  if (!gAlice)  return kFALSE;
-  return kTRUE;
-}
+  return 0;
 
-////////////////////////////////////////////////////////////////////////
-void AliCopy(TFile *inputFile, TFile *outputFile) {
-// copy some objects
-  
-// copy gAlice
-  if (gDEBUG) cout<<"Copy gAlice: ";
-  outputFile->cd();
-  gAlice->Write();
-  if (gDEBUG) cout<<"done"<<endl;
-  TTree *treeE  = gAlice->TreeE();
-  if (!treeE) {
-    cerr<<"No TreeE found "<<endl;
-    return;
-  }
-  
-// copy TreeE
-  if (gDEBUG) cout<<"Copy TreeE: ";
-  AliHeader *header = new AliHeader();
-  treeE->SetBranchAddress("Header", &header);
-  treeE->SetBranchStatus("*",1);  
-  TTree *treeENew =  treeE->CloneTree();
-  treeENew->Write();
-  if (gDEBUG) cout<<"done"<<endl;
-   
-// copy AliceGeom
-  if (gDEBUG) cout<<"Copy AliceGeom: ";
-  TGeometry *AliceGeom = static_cast<TGeometry*>(inputFile->Get("AliceGeom"));
-  if (!AliceGeom) {
-    cerr<<"AliceGeom was not found in the input file "<<endl;
-    return;
-  }
-  AliceGeom->Write();
-  if (gDEBUG) cout<<"done"<<endl;
-   
 }
-