]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONClusterInput.cxx
Optional geometry without CPV
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterInput.cxx
index 573b1ba0a882c796ee2ba73ab0a0351a9eb7b547..7c47e9718b84ed8bfa16332d21b95cf7443c3942 100644 (file)
 
 /* $Id$ */
 
-#include <TClonesArray.h>
-#include <TMinuit.h>
+// ----------------------------
+// Class AliMUONClusterInput
+// ----------------------------
+// Global data service for hit reconstruction
+// Author: to be added
 
-#include "AliRun.h"
-#include "AliMUON.h"
-#include "AliMUONChamber.h"
-#include "AliMUONConstants.h"
 #include "AliMUONClusterInput.h"
+
+#include "AliMUONGeometryTransformer.h"
+#include "AliMUONGeometrySegmentation.h"
+#include "AliMUONSegFactory.h"
+#include "AliMUONSegmentation.h"
+#include "AliMUONConstants.h"
 #include "AliMUONMathieson.h"
 #include "AliMUONRawCluster.h"
 #include "AliMUONDigit.h"
+
 #include "AliLog.h"
 
+#include <TClonesArray.h>
+#include <TMinuit.h>
+#include <TGeoManager.h>
+
+/// \cond CLASSIMP
 ClassImp(AliMUONClusterInput)
+/// \endcond
 
-AliMUONClusterInput* AliMUONClusterInput::fgClusterInput = 0; 
-TMinuit* AliMUONClusterInput::fgMinuit = 0; 
-AliMUONMathieson* AliMUONClusterInput::fgMathieson = 0; 
+AliMUONClusterInput*        AliMUONClusterInput::fgClusterInput = 0; 
+TMinuit*                    AliMUONClusterInput::fgMinuit = 0; 
+AliMUONMathieson*           AliMUONClusterInput::fgMathieson = 0; 
+AliMUONGeometryTransformer* AliMUONClusterInput::fgTransformer = 0; 
+AliMUONSegmentation*        AliMUONClusterInput::fgSegmentation = 0; 
 
+//______________________________________________________________________________
 AliMUONClusterInput::AliMUONClusterInput()
   : TObject(),
+    fNseg(0),
+    fChamber(0),
     fCluster(0),
+    fZ(0.),
     fChargeCorrel(1.),
-    fSegmentationType(2),
     fDetElemId(0)
   
 {
+/// Default constructor
+
   fDigits[0]=0;
   fDigits[1]=0;
   fSegmentation2[0]=0;
   fSegmentation2[1]=0;
 }
 
+//______________________________________________________________________________
 AliMUONClusterInput* AliMUONClusterInput::Instance()
 {
-// return pointer to the singleton instance
+/// return pointer to the singleton instance
     if (fgClusterInput == 0) {
        fgClusterInput = new AliMUONClusterInput();
        fgMinuit = new TMinuit(8);
+       
+       // Create segmentation with activated Root geometry  
+       if ( ! gGeoManager ) {
+         AliFatalClass("Geometry not loaded.");
+         return fgClusterInput;
+       }  
+        fgTransformer = new AliMUONGeometryTransformer(true);
+        fgTransformer->ReadGeometryData("volpath.dat", gGeoManager);
+        AliMUONSegFactory factory(fgTransformer);
+       fgSegmentation = factory.CreateSegmentation(); 
     }
     
     return fgClusterInput;
 }
 
+//______________________________________________________________________________
 AliMUONClusterInput::~AliMUONClusterInput()
 {
-// Destructor
+/// Destructor
     delete fgMinuit;
     delete fgMathieson;
+    delete fgTransformer;
+    delete fgSegmentation;
+    fgMinuit = 0;
+    fgMathieson = 0;
 }
 
-AliMUONClusterInput::AliMUONClusterInput(const AliMUONClusterInput& clusterInput):TObject(clusterInput)
-{
-// Protected copy constructor
-
-  AliFatal("Not implemented.");
-}
-
+//______________________________________________________________________________
 void AliMUONClusterInput::SetDigits(Int_t chamber, Int_t idDE, TClonesArray* dig1, TClonesArray* dig2)
 {
-  // Set pointer to digits with corresponding segmentations and responses (two cathode planes)
+  /// Set pointer to digits with corresponding segmentations and responses (two cathode planes)
     fChamber = chamber;
     fDetElemId = idDE;
     fDigits[0]  = dig1;
@@ -83,18 +112,11 @@ void AliMUONClusterInput::SetDigits(Int_t chamber, Int_t idDE, TClonesArray* dig
     fNDigits[0] = dig1->GetEntriesFast();
     fNDigits[1] = dig2->GetEntriesFast();
     
-    AliMUON *pMUON;
-    AliMUONChamber* iChamber;
-
-    pMUON = (AliMUON*) gAlice->GetModule("MUON");
-    iChamber =  &(pMUON->Chamber(chamber));
-
+    delete fgMathieson;
     fgMathieson = new AliMUONMathieson();
-    if ((fSegmentationType = pMUON->WhichSegmentation()) != 2)
-      AliFatal("Wrong segmentation type");
 
-    fSegmentation2[0]=iChamber->SegmentationModel2(1);
-    fSegmentation2[1]=iChamber->SegmentationModel2(2);
+    fSegmentation2[0]= fgSegmentation->GetModuleSegmentationByDEId(fDetElemId, 0);
+    fSegmentation2[1]= fgSegmentation->GetModuleSegmentationByDEId(fDetElemId, 1);
 
     fNseg = 2;
     if (chamber < AliMUONConstants::NTrackingCh()) {
@@ -112,30 +134,23 @@ void AliMUONClusterInput::SetDigits(Int_t chamber, Int_t idDE, TClonesArray* dig
     }
 }
 
+//______________________________________________________________________________
 void AliMUONClusterInput::SetDigits(Int_t chamber, Int_t idDE, TClonesArray* dig)
 {
-// Set pointer to digits with corresponding segmentations and responses (one cathode plane)
+/// Set pointer to digits with corresponding segmentations and responses (one cathode plane)
 
     fChamber = chamber;
     fDetElemId = idDE;
     fDigits[0] = dig;
 
-    AliMUON *pMUON;
-    AliMUONChamber* iChamber;
-
-    pMUON = (AliMUON*) gAlice->GetModule("MUON");
-    iChamber =  &(pMUON->Chamber(chamber));
-    if ((fSegmentationType = pMUON->WhichSegmentation()) != 2)
-      AliFatal("Wrong segmentation type");
-    
-    fSegmentation2[0]=iChamber->SegmentationModel2(1);
-
+    fSegmentation2[0]= fgSegmentation->GetModuleSegmentationByDEId(fDetElemId, 0);
     fNseg=1;
 }
 
+//______________________________________________________________________________
 void  AliMUONClusterInput::SetCluster(AliMUONRawCluster* cluster)
 {
-// Set the current cluster
+/// Set the current cluster
   //PH printf("\n %p \n", cluster);
   fCluster=cluster;
   Float_t qtot;
@@ -172,38 +187,41 @@ void  AliMUONClusterInput::SetCluster(AliMUONRawCluster* cluster)
     }  // loop over cathodes
 }
 
-
-
+//______________________________________________________________________________
 Float_t AliMUONClusterInput::DiscrChargeS1(Int_t i,Double_t *par) 
 {
-// Compute the charge on first cathod only.
+/// Compute the charge on first cathod only.
 return DiscrChargeCombiS1(i,par,0);
 }
 
+//______________________________________________________________________________
 Float_t AliMUONClusterInput::DiscrChargeCombiS1(Int_t i,Double_t *par, Int_t cath) 
 {
-// par[0]    x-position of cluster
-// par[1]    y-position of cluster
-
-    Float_t q1;
-    fSegmentation2[cath]->SetPad(fDetElemId, fix[i][cath], fiy[i][cath]);
-    //  First Cluster
-    fSegmentation2[cath]->SetHit(fDetElemId, par[0],par[1],fZ);
-    q1 = fgMathieson->IntXY(fDetElemId, fSegmentation2[cath]);
+/// \todo add comment
+/// - par[0]    x-position of cluster
+/// - param par[1]    y-position of cluster
+
+   Float_t q1;
+   fSegmentation2[cath]-> SetPad(fDetElemId, fix[i][cath], fiy[i][cath]);
+   //  First Cluster
+   fSegmentation2[cath]-> SetHit(fDetElemId, par[0],par[1],fZ);
+   q1 = fgMathieson->IntXY(fDetElemId, fSegmentation2[cath]);
        
    Float_t value = fQtot[cath]*q1;
    return value;
 }
 
 
+//______________________________________________________________________________
 Float_t AliMUONClusterInput::DiscrChargeS2(Int_t i,Double_t *par) 
 {
-// par[0]    x-position of first  cluster
-// par[1]    y-position of first  cluster
-// par[2]    x-position of second cluster
-// par[3]    y-position of second cluster
-// par[4]    charge fraction of first  cluster
-// 1-par[4]  charge fraction of second cluster
+/// \todo add comment
+/// - par[0]    x-position of first  cluster
+/// - par[1]    y-position of first  cluster
+/// - par[2]    x-position of second cluster
+/// - par[3]    y-position of second cluster
+/// - par[4]    charge fraction of first  cluster
+/// - 1-par[4]  charge fraction of second cluster
 
   Float_t q1, q2;
   
@@ -220,15 +238,17 @@ Float_t AliMUONClusterInput::DiscrChargeS2(Int_t i,Double_t *par)
   return value;
 }
 
+//______________________________________________________________________________
 Float_t AliMUONClusterInput::DiscrChargeCombiS2(Int_t i,Double_t *par, Int_t cath) 
 {
-// par[0]    x-position of first  cluster
-// par[1]    y-position of first  cluster
-// par[2]    x-position of second cluster
-// par[3]    y-position of second cluster
-// par[4]    charge fraction of first  cluster - first cathode
-// 1-par[4]  charge fraction of second cluster 
-// par[5]    charge fraction of first  cluster - second cathode
+/// \todo add comment
+/// - par[0]    x-position of first  cluster
+/// - par[1]    y-position of first  cluster
+/// - par[2]    x-position of second cluster
+/// - par[3]    y-position of second cluster
+/// - par[4]    charge fraction of first  cluster - first cathode
+/// - 1-par[4]  charge fraction of second cluster 
+/// - par[5]    charge fraction of first  cluster - second cathode
 
   Float_t q1, q2;
 
@@ -249,15 +269,3 @@ Float_t AliMUONClusterInput::DiscrChargeCombiS2(Int_t i,Double_t *par, Int_t cat
   }
   return value;
 }
-
-AliMUONClusterInput& AliMUONClusterInput
-::operator = (const AliMUONClusterInput& rhs)
-{
-// Protected assignement operator
-
-  if (this == &rhs) return *this;
-
-  AliFatal("Not implemented.");
-    
-  return *this;  
-}