]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDclusterizer.cxx
Transition to NewIO
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizer.cxx
index 67b8c125d6f5f325460ef227cbb4875f4a7d9b4e..e3f018a285996f40f9c596061226c8f868e525e7 100644 (file)
@@ -13,9 +13,7 @@
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
 
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
@@ -23,10 +21,20 @@ $Log$
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
+#include <TROOT.h>
+#include <TTree.h>
+#include <TFile.h>
+
 #include "AliRun.h"
+#include "AliRunLoader.h"
+#include "AliLoader.h"
 
 #include "AliTRD.h"
 #include "AliTRDclusterizer.h"
+#include "AliTRDcluster.h"
+#include "AliTRDrecPoint.h"
+#include "AliTRDgeometry.h"
+#include "AliTRDparameter.h"
 
 ClassImp(AliTRDclusterizer)
 
@@ -37,8 +45,11 @@ AliTRDclusterizer::AliTRDclusterizer():TNamed()
   // AliTRDclusterizer default constructor
   //
 
-  fInputFile = NULL;
-  fEvent     = 0;
+  fClusterTree = NULL;
+  fTRD         = 0;
+  fEvent       = 0;
+  fVerbose     = 0;
+  fPar         = 0;
 
 }
 
@@ -50,73 +61,128 @@ AliTRDclusterizer::AliTRDclusterizer(const Text_t* name, const Text_t* title)
   // AliTRDclusterizer default constructor
   //
 
-  fInputFile = NULL;
-  fEvent     = 0;
+  fClusterTree = NULL;
+  fEvent       = 0;
+  fVerbose     = 0;
+  fPar         = 0;
+
+}
+
+//_____________________________________________________________________________
+AliTRDclusterizer::AliTRDclusterizer(const AliTRDclusterizer &c)
+{
+  //
+  // AliTRDclusterizer copy constructor
+  //
 
-  Init();
+  ((AliTRDclusterizer &) c).Copy(*this);
 
 }
 
 //_____________________________________________________________________________
 AliTRDclusterizer::~AliTRDclusterizer()
 {
+  //
+  // AliTRDclusterizer destructor
+  //
 
-  if (fInputFile) {
-    fInputFile->Close();
-    delete fInputFile;
-  }
+}
+
+//_____________________________________________________________________________
+AliTRDclusterizer &AliTRDclusterizer::operator=(const AliTRDclusterizer &c)
+{
+  //
+  // Assignment operator
+  //
+
+  if (this != &c) ((AliTRDclusterizer &) c).Copy(*this);
+  return *this;
 
 }
 
 //_____________________________________________________________________________
-void AliTRDclusterizer::Init()
+void AliTRDclusterizer::Copy(TObject &c)
 {
   //
-  // Initializes the cluster finder
+  // Copy function
   //
 
+  ((AliTRDclusterizer &) c).fClusterTree = NULL;
+  ((AliTRDclusterizer &) c).fEvent       = 0;  
+  ((AliTRDclusterizer &) c).fVerbose     = fVerbose;  
+  ((AliTRDclusterizer &) c).fPar         = 0;
+
 }
 
 //_____________________________________________________________________________
 Bool_t AliTRDclusterizer::Open(const Char_t *name, Int_t nEvent)
+{
+  //
+  // Opens the AliROOT file. Output and input are in the same file
+  //
+  fRunLoader = AliRunLoader::Open(name);
+  if (!fRunLoader)
+   {
+     Error("Open","Can not open session for file %s.",name);
+     return kFALSE;
+   }
+
+  OpenInput(nEvent);
+  OpenOutput();
+  return kTRUE;
+}
+
+
+//_____________________________________________________________________________
+Bool_t AliTRDclusterizer::OpenOutput()
+{
+  //
+  // Open the output file
+  //
+
+  TObjArray *ioArray = 0;
+
+  AliLoader* loader = fRunLoader->GetLoader("TRDLoader");
+  loader->MakeTree("R");
+  fClusterTree = loader->TreeR();
+  fClusterTree->Branch("TRDcluster","TObjArray",&ioArray,32000,0);
+
+
+  return kTRUE;
+
+}
+
+//_____________________________________________________________________________
+Bool_t AliTRDclusterizer::OpenInput(Int_t nEvent)
 {
   //
   // Opens a ROOT-file with TRD-hits and reads in the digits-tree
   //
 
   // Connect the AliRoot file containing Geometry, Kine, and Hits
-  fInputFile = (TFile*) gROOT->GetListOfFiles()->FindObject(name);
-  if (!fInputFile) {
-    printf("AliTRDclusterizer::Open -- ");
-    printf("Open the ALIROOT-file %s.\n",name);
-    fInputFile = new TFile(name,"UPDATE");
+  fRunLoader->LoadgAlice();
+  gAlice = fRunLoader->GetAliRun();
+
+  if (!(gAlice)) {
+    fRunLoader->LoadgAlice();
+    gAlice = fRunLoader->GetAliRun();
+      if (!(gAlice)) {
+        printf("AliTRDclusterizer::OpenInput -- ");
+        printf("Could not find AliRun object.\n");
+        return kFALSE;
+      }
   }
-  else {
-    printf("AliTRDclusterizer::Open -- ");
-    printf("%s is already open.\n",name);
-  }
-
-  // Get AliRun object from file or create it if not on file
-  //if (!gAlice) {
-    gAlice = (AliRun*) fInputFile->Get("gAlice");
-    if (gAlice) {
-      printf("AliTRDclusterizer::Open -- ");
-      printf("AliRun object found on file.\n");
-    }
-    else {
-      printf("AliTRDclusterizer::Open -- ");
-      printf("Could not find AliRun object.\n");
-      return kFALSE;
-    }
-  //}
 
   fEvent = nEvent;
 
   // Import the Trees for the event nEvent in the file
-  Int_t nparticles = gAlice->GetEvent(fEvent);
-  if (nparticles <= 0) {
-    printf("AliTRDclusterizer::Open -- ");
-    printf("No entries in the trees for event %d.\n",fEvent);
+  fRunLoader->GetEvent(fEvent);
+  
+  // Get the TRD object
+  fTRD = (AliTRD*) gAlice->GetDetector("TRD"); 
+  if (!fTRD) {
+    printf("AliTRDclusterizer::OpenInput -- ");
+    printf("No TRD detector object found\n");
     return kFALSE;
   }
 
@@ -125,45 +191,75 @@ Bool_t AliTRDclusterizer::Open(const Char_t *name, Int_t nEvent)
 }
 
 //_____________________________________________________________________________
-Bool_t AliTRDclusterizer::WriteCluster()
+Bool_t AliTRDclusterizer::WriteClusters(Int_t det)
 {
   //
-  // Writes out the TRD-cluster
+  // Fills TRDcluster branch in the tree with the clusters 
+  // found in detector = det. For det=-1 writes the tree. 
   //
 
-  // Write the new tree into the input file (use overwrite option)
-  Char_t treeName[7];
-  sprintf(treeName,"TreeR%d",fEvent);
-  printf("AliTRDclusterizer::WriteCluster -- ");
-  printf("Write the cluster tree %s for event %d.\n"
-        ,treeName,fEvent);
-  gAlice->TreeR()->Write(treeName,2);
+  if ((det < -1) || (det >= AliTRDgeometry::Ndet())) {
+    printf("AliTRDclusterizer::WriteClusters -- ");
+    printf("Unexpected detector index %d.\n",det);
+    return kFALSE;
+  }
 
-  return kTRUE;
+  TBranch *branch = fClusterTree->GetBranch("TRDcluster");
+  if (!branch) {
+    TObjArray *ioArray = 0;
+    branch = fClusterTree->Branch("TRDcluster","TObjArray",&ioArray,32000,0);
+  }
 
-}
+  if ((det >= 0) && (det < AliTRDgeometry::Ndet())) {
 
-ClassImp(AliTRDcluster)
+    Int_t nRecPoints = fTRD->RecPoints()->GetEntriesFast();
+    TObjArray *detRecPoints = new TObjArray(400);
 
-//_____________________________________________________________________________
-AliTRDcluster::AliTRDcluster(Int_t *tracks, Int_t *cluster, Float_t energy, Float_t* position)
-              :TObject()
-{
-  //
-  // Create a TRD cluster
-  //
+    for (Int_t i = 0; i < nRecPoints; i++) {
+      AliTRDcluster *c = (AliTRDcluster *) fTRD->RecPoints()->UncheckedAt(i);
+      if (det == c->GetDetector()) {
+        detRecPoints->AddLast(c);
+      }
+      else {
+        printf("AliTRDclusterizer::WriteClusters --");
+        printf("Attempt to write a cluster with unexpected detector index\n");
+      }
+    }
 
-  fDetector  = cluster[0];
+    branch->SetAddress(&detRecPoints);
+    fClusterTree->Fill();
 
-  fTimeSlice = cluster[1];
-  fEnergy    = energy;
+    return kTRUE;
 
-  fX         = position[0];
-  fY         = position[1];
-  fZ         = position[2];
+  }
 
-  fTracks[0] = tracks[0];
-  fTracks[1] = tracks[1];
-  fTracks[2] = tracks[2];
+  if (det == -1) {
 
+    printf("AliTRDclusterizer::WriteClusters -- ");
+    printf("Writing the cluster tree %-18s for event %d.\n"
+         ,fClusterTree->GetName(),fEvent);
+
+    fClusterTree->Write();
+
+    AliTRDgeometry *geo = fTRD->GetGeometry();
+    geo->SetName("TRDgeometry");
+    geo->Write();
+    fPar->Write();     
+     
+    return kTRUE;  
+
+  }
+  
+  AliLoader* loader = fRunLoader->GetLoader("TRDLoader");
+  loader->WriteDigits("OVERWRITE");
+  
+  printf("AliTRDclusterizer::WriteClusters -- ");
+  printf("Unexpected detector index %d.\n",det);
+  return kFALSE;  
+  
 }
+
+
+