]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDclusterizer.cxx
- Return from Gstpar if material is not used.
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizer.cxx
index dd2451dd8df1fb320788c18833095c48e4efe2c6..f47a689378edc0e0fc3b49c7cb4cfc1795246549 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.4  2000/06/09 11:10:07  cblume
-Compiler warnings and coding conventions, next round
-
-Revision 1.3  2000/06/08 18:32:58  cblume
-Make code compliant to coding conventions
-
-Revision 1.2  2000/05/08 16:17:27  cblume
-Merge TRD-develop
-
-Revision 1.1.4.1  2000/05/08 15:08:03  cblume
-Remove the class AliTRDcluster
-
-Revision 1.1  2000/02/28 18:57:58  cblume
-Add new TRD classes
-
-*/
+/* $Id$ */
 
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
@@ -40,10 +23,17 @@ Add new TRD classes
 
 #include <TROOT.h>
 #include <TTree.h>
+#include <TFile.h>
 
 #include "AliRun.h"
-#include "AliTRD.h"
+#include "AliRunLoader.h"
+#include "AliLoader.h"
+
 #include "AliTRDclusterizer.h"
+#include "AliTRDcluster.h"
+#include "AliTRDrecPoint.h"
+#include "AliTRDgeometry.h"
+#include "AliTRDparameter.h"
 
 ClassImp(AliTRDclusterizer)
 
@@ -54,8 +44,10 @@ AliTRDclusterizer::AliTRDclusterizer():TNamed()
   // AliTRDclusterizer default constructor
   //
 
-  fInputFile = NULL;
-  fEvent     = 0;
+  fClusterTree = NULL;
+  fRecPoints   = 0;
+  fVerbose     = 0;
+  fPar         = 0;
 
 }
 
@@ -67,15 +59,15 @@ AliTRDclusterizer::AliTRDclusterizer(const Text_t* name, const Text_t* title)
   // AliTRDclusterizer default constructor
   //
 
-  fInputFile = NULL;
-  fEvent     = 0;
-
-  Init();
+  fClusterTree = NULL;
+  fRecPoints   = 0;
+  fVerbose     = 0;
+  fPar         = 0;
 
 }
 
 //_____________________________________________________________________________
-AliTRDclusterizer::AliTRDclusterizer(const AliTRDclusterizer &c)
+AliTRDclusterizer::AliTRDclusterizer(const AliTRDclusterizer &c):TNamed(c)
 {
   //
   // AliTRDclusterizer copy constructor
@@ -92,11 +84,10 @@ AliTRDclusterizer::~AliTRDclusterizer()
   // AliTRDclusterizer destructor
   //
 
-  if (fInputFile) {
-    fInputFile->Close();
-    delete fInputFile;
+  if (fRecPoints) {
+    fRecPoints->Delete();
+    delete fRecPoints;
   }
-
 }
 
 //_____________________________________________________________________________
@@ -118,82 +109,194 @@ void AliTRDclusterizer::Copy(TObject &c)
   // Copy function
   //
 
-  ((AliTRDclusterizer &) c).fInputFile = NULL;
-  ((AliTRDclusterizer &) c).fEvent     = 0;  
+  ((AliTRDclusterizer &) c).fClusterTree = NULL;
+  ((AliTRDclusterizer &) c).fRecPoints   = NULL;  
+  ((AliTRDclusterizer &) c).fVerbose     = fVerbose;  
+  ((AliTRDclusterizer &) c).fPar         = 0;
 
 }
 
 //_____________________________________________________________________________
-void AliTRDclusterizer::Init()
+Bool_t AliTRDclusterizer::Open(const Char_t *name, Int_t nEvent)
 {
   //
-  // Initializes the cluster finder
+  // Opens the AliROOT file. Output and input are in the same file
   //
+  TString evfoldname = AliConfig::GetDefaultEventFolderName();
+  fRunLoader = AliRunLoader::GetRunLoader(evfoldname);
+  if (!fRunLoader)
+    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::Open(const Char_t *name, Int_t nEvent)
+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");
+  if (fRunLoader->GetAliRun() == 0x0) 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);
+
+  // Import the Trees for the event nEvent in the file
+  fRunLoader->GetEvent(nEvent);
+  
+  return kTRUE;
+
+}
+
+//_____________________________________________________________________________
+Bool_t AliTRDclusterizer::WriteClusters(Int_t det)
+{
+  //
+  // Fills TRDcluster branch in the tree with the clusters 
+  // found in detector = det. For det=-1 writes the tree. 
+  //
+
+  if ((det < -1) || (det >= AliTRDgeometry::Ndet())) {
+    printf("AliTRDclusterizer::WriteClusters -- ");
+    printf("Unexpected detector index %d.\n",det);
+    return kFALSE;
   }
 
-  // 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;
+  TBranch *branch = fClusterTree->GetBranch("TRDcluster");
+  if (!branch) {
+    TObjArray *ioArray = 0;
+    branch = fClusterTree->Branch("TRDcluster","TObjArray",&ioArray,32000,0);
+  }
+
+  if ((det >= 0) && (det < AliTRDgeometry::Ndet())) {
+
+    Int_t nRecPoints = RecPoints()->GetEntriesFast();
+    TObjArray *detRecPoints = new TObjArray(400);
+
+    for (Int_t i = 0; i < nRecPoints; i++) {
+      AliTRDcluster *c = (AliTRDcluster *) 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");
+      }
     }
-  //}
 
-  fEvent = nEvent;
+    branch->SetAddress(&detRecPoints);
+    fClusterTree->Fill();
+
+    delete detRecPoints;
+
+    return kTRUE;
 
-  // 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);
-    return kFALSE;
   }
 
-  return kTRUE;
+  if (det == -1) {
+
+    Info("WriteClusters","Writing the cluster tree %s for event %d."
+        ,fClusterTree->GetName(),fRunLoader->GetEventNumber());
+    /*
+    fClusterTree->Write();
+    AliTRDgeometry *geo = fTRD->GetGeometry();
+    geo->SetName("TRDgeometry");
+    geo->Write();
+    fPar->Write();
+    */
+    AliLoader* loader = fRunLoader->GetLoader("TRDLoader");
+    loader->WriteRecPoints("OVERWRITE");
+  
+    return kTRUE;  
 
+  }
+  /*
+  AliLoader* loader = fRunLoader->GetLoader("TRDLoader");
+  loader->WriteDigits("OVERWRITE");
+  */
+  printf("AliTRDclusterizer::WriteClusters -- ");
+  printf("Unexpected detector index %d.\n",det);
+  return kFALSE;  
+  
 }
 
+
 //_____________________________________________________________________________
-Bool_t AliTRDclusterizer::WriteCluster()
+void AliTRDclusterizer::AddCluster(Float_t *pos, Int_t det, Float_t amp
+                                  , Int_t *tracks, Float_t *sig, Int_t iType)
 {
   //
-  // Writes out the TRD-cluster
+  // Add a cluster for the TRD
   //
 
-  // 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);
-
-  return kTRUE;
+  AliTRDcluster *c = new AliTRDcluster();
+
+  c->SetDetector(det);
+  c->AddTrackIndex(tracks);
+  c->SetQ(amp);
+  c->SetY(pos[0]);
+  c->SetZ(pos[1]);
+  c->SetSigmaY2(sig[0]);   
+  c->SetSigmaZ2(sig[1]);
+  c->SetLocalTimeBin(((Int_t) pos[2]));
+
+  switch (iType) {
+  case 0:
+    c->Set2pad();
+    break;
+  case 1:
+    c->Set3pad();
+    break;
+  case 2:
+    c->Set4pad();
+    break;
+  case 3:
+    c->Set5pad();
+    break;
+  case 4:
+    c->SetLarge();
+    break;
+  };
+
+  RecPoints()->Add(c);
 
 }