]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOS.cxx
removed obsolete refeference to ppsd
[u/mrichter/AliRoot.git] / PHOS / AliPHOS.cxx
index fa2d48e40f586bde09abec7fc6cb1afea6473ab9..34b1634e9fd81099855c0c06ec70f84db3b2cc39 100644 (file)
 
 // --- ROOT system ---
 class TFile;
-#include "TROOT.h"
-#include "TTree.h"
-#include "TFolder.h" 
+#include <TFolder.h> 
+#include <TTree.h>
+#include <TVirtualMC.h> 
 
 // --- Standard library ---
 
 // --- AliRoot header files ---
+#include "AliMagF.h"
+#include "AliESDtrack.h" 
+#include "AliESD.h"
 #include "AliPHOS.h"
+#include "AliPHOSGetter.h"
+#include "AliPHOSQAChecker.h"
 #include "AliRun.h"
-#include "AliMagF.h"
-#include "AliPHOSGeometry.h"
-#include "AliPHOSQAChecker.h" 
-
+#include "AliPHOSDigitizer.h"
+#include "AliPHOSSDigitizer.h"
+#include "AliPHOSReconstructor.h"
 ClassImp(AliPHOS)
 //____________________________________________________________________________
 AliPHOS:: AliPHOS() : AliDetector()
@@ -48,6 +52,7 @@ AliPHOS:: AliPHOS() : AliDetector()
   fName="PHOS";
   fQATask = 0;
   fTreeQA = 0;
+  fDebug = kFALSE ; 
 }
 
 //____________________________________________________________________________
@@ -57,6 +62,7 @@ AliPHOS::AliPHOS(const char* name, const char* title): AliDetector(name, title)
   
   fQATask = 0;
   fTreeQA = 0;
+  fDebug = kFALSE ; 
 }
 
 //____________________________________________________________________________
@@ -65,6 +71,20 @@ AliPHOS::~AliPHOS()
   
 }
 
+//____________________________________________________________________________
+void AliPHOS::Copy(AliPHOS & phos)
+{
+  TObject::Copy(phos) ; 
+  //  fQATask = AliPHOSQAChecker::Copy(*(phos.fQATask)) ; 
+  phos.fTreeQA = fTreeQA->CloneTree() ; 
+}
+
+//____________________________________________________________________________
+AliDigitizer* AliPHOS::CreateDigitizer(AliRunDigitizer* manager) const
+{
+  return new AliPHOSDigitizer(manager);
+}
+
 //____________________________________________________________________________
 void AliPHOS::CreateMaterials()
 {
@@ -181,7 +201,7 @@ void AliPHOS::CreateMaterials()
   AliMaterial(15, "Ar$", 39.948, 18.0, dAr, 14.0, 0., 0, 0) ;   
  
  // ArCo2
-  Char_t namate[21];
+  Char_t namate[21]="";
   Float_t aGM[2] ; 
   Float_t zGM[2] ; 
   Float_t wGM[2] ; 
@@ -357,28 +377,123 @@ void AliPHOS::CreateMaterials()
 }
 
 //____________________________________________________________________________
-AliPHOSGeometry * AliPHOS::GetGeometry() const 
-{  
-  // gets the pointer to the AliPHOSGeometry unique instance 
-  
-  return AliPHOSGeometry::GetInstance(GetTitle(),"") ;  
+void AliPHOS::FillESD(AliESD* esd) const 
+{
+  // Called by AliReconstruct after Reconstruct() and global tracking and vertxing
+
+  //Creates the tracksegments and Recparticles
+  AliPHOSReconstructor * rec = new AliPHOSReconstructor((fLoader->GetRunLoader()->GetFileName()).Data()) ; 
+  TList * taskslist = rec->GetListOfTasks() ; 
+  Int_t index ;
+  TTask * task ; 
+  TString name ; 
+ // set clusterizer task inactive 
+  for (index = 0; index < taskslist->GetSize(); index++) {
+    task = dynamic_cast<TTask *>(taskslist->At(index)) ; 
+    name = task->GetName() ; 
+    if ( name.Contains(AliConfig::Instance()->GetReconstructionerTaskName()))
+      task->SetActive(kFALSE) ; 
+    if ( name.Contains(AliConfig::Instance()->GetTrackerTaskName()))
+      (dynamic_cast<AliPHOSTrackSegmentMaker *> (task))->SetESD(esd) ; 
+  }
+
+  AliPHOSGetter *gime = AliPHOSGetter::Instance( (fLoader->GetRunLoader()->GetFileName()).Data() ) ;
+  Int_t eventNumber = gime->EventNumber();
+  rec->SetEventRange(eventNumber, eventNumber) ; // do current event; the loop over events is done by AliReconstruction::Run()
+  if ( Debug() ) 
+    rec->ExecuteTask("deb all") ;
+  else 
+    rec->ExecuteTask("") ;
+
+  // Creates AliESDtrack from AliPHOSRecParticles 
+  gime->Event(eventNumber, "P") ; 
+  TClonesArray *recParticles = gime->RecParticles();
+  Int_t nOfRecParticles = recParticles->GetEntries();
+  for (Int_t recpart = 0 ; recpart < nOfRecParticles ; recpart++) {
+    AliPHOSRecParticle * rp = dynamic_cast<AliPHOSRecParticle*>(recParticles->At(recpart));
+    if (Debug()) 
+      rp->Print();
+    AliESDtrack * et = new AliESDtrack() ; 
+    // fills the ESDtrack
+    Double_t xyz[3];
+    for (Int_t ixyz=0; ixyz<3; ixyz++) xyz[ixyz] = rp->GetPos()[ixyz];
+    et->SetPHOSposition(xyz) ; 
+    et->SetPHOSsignal  (rp->Energy()) ; 
+    et->SetPHOSpid     (rp->GetPID()) ;
+    // add the track to the esd object
+    esd->AddTrack(et);
+    delete et;
+  }
+}       
+
+//____________________________________________________________________________
+void AliPHOS::Hits2SDigits()  
+{ 
+// create summable digits
 
+  AliPHOSSDigitizer* phosDigitizer = 
+    new AliPHOSSDigitizer(fLoader->GetRunLoader()->GetFileName().Data()) ;
+  phosDigitizer->SetEventRange(0, -1) ; // do all the events
+  phosDigitizer->ExecuteTask("all") ;
+}
+
+//____________________________________________________________________________
+AliLoader* AliPHOS::MakeLoader(const char* topfoldername)
+{
+//different behaviour than standard (singleton getter)
+// --> to be discussed and made eventually coherent
+ fLoader = new AliPHOSLoader(GetName(),topfoldername);
+ return fLoader;
 }
 
 //____________________________________________________________________________
 void AliPHOS::SetTreeAddress()
 { 
-
+  // Links Hits in the Tree to Hits array
   TBranch *branch;
   char branchname[20];
   sprintf(branchname,"%s",GetName());
   
   // Branch address for hit tree
-  TTree *treeH = gAlice->TreeH();
-  if (treeH && fHits) {
+  TTree *treeH = TreeH();
+  if (treeH) {
     branch = treeH->GetBranch(branchname);
-    if (branch) branch->SetAddress(&fHits);
+    if (branch) 
+     { 
+       if (fHits == 0x0) fHits= new TClonesArray("AliPHOSHit",1000);
+       //Info("SetTreeAddress","<%s> Setting Hits Address",GetName());
+       branch->SetAddress(&fHits);
+     }
+  }
+}
+
+//____________________________________________________________________________
+void AliPHOS::Reconstruct() const 
+{ 
+  // method called by AliReconstruction; it should not be called otherwise but the AliPHOSReconstructionner 
+  // should be called for stand alone reconstruction.
+  // Only the clusterization is performed,; the rest of the reconstruction is done in FillESD because the track
+  // segment maker needs access to the AliESD object to retrieve the tracks reconstructed by 
+  // the global tracking.
+  AliPHOSReconstructor * rec = new AliPHOSReconstructor((fLoader->GetRunLoader()->GetFileName()).Data()) ; 
+  TList * taskslist = rec->GetListOfTasks() ; 
+  Int_t index ;
+  TTask * task ; 
+  TString name ; 
+  // set all tasks inactive except clusterizer
+  for (index = 0; index < taskslist->GetSize(); index++) {
+    task = dynamic_cast<TTask *>(taskslist->At(index)) ; 
+    name = task->GetName() ; 
+    if ( !name.Contains(AliConfig::Instance()->GetReconstructionerTaskName()))
+      task->SetActive(kFALSE) ; 
   }
+  rec->SetEventRange(0, -1) ; // do all the events
+  if ( Debug() ) 
+    rec->ExecuteTask("deb all") ; 
+  else 
+    rec->ExecuteTask("") ; 
+  
 }
 
 //____________________________________________________________________________
@@ -386,13 +501,24 @@ void AliPHOS::WriteQA()
 {
 
   // Make TreeQA in the output file. 
+
   if(fTreeQA == 0)
     fTreeQA = new TTree("TreeQA", "QA Alarms") ;    
   // Create Alarms branches
   Int_t bufferSize = 32000 ;    
   Int_t splitlevel = 0 ; 
-  TFolder * alarmsF = (TFolder*)gROOT->FindObjectAny("Folders/Run/Conditions/QA/PHOS") ; 
-  TString branchName(alarmsF->GetName());  
+
+  TFolder* topfold = GetLoader()->GetTopFolder(); //get top aliroot folder; skowron
+  TString phosqafn(AliConfig::Instance()->GetQAFolderName()+"/"); //get name of QAaut folder relative to top event; skowron
+  phosqafn+=GetName(); //hard wired string!!! add the detector name to the pathname; skowron 
+  TFolder * alarmsF = (TFolder*)topfold->FindObjectAny(phosqafn); //get the folder
+  if (alarmsF == 0x0)
+   {
+     Error("WriteQA","Can not find folder with qa alarms");
+     return;
+   }
+  TString branchName(alarmsF->GetName());
   TBranch * alarmsBranch = fTreeQA->Branch(branchName,"TFolder", &alarmsF, bufferSize, splitlevel);
   TString branchTitle = branchName + " QA alarms" ; 
   alarmsBranch->SetTitle(branchTitle);
@@ -400,4 +526,3 @@ void AliPHOS::WriteQA()
 
   //fTreeQA->Fill() ; 
 }
-