]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONChamber.h
Additional protection in case of negative indexes. More investigation is needed
[u/mrichter/AliRoot.git] / MUON / AliMUONChamber.h
index 3557cedced15325341bc105bfd3d8d1c7140f995..68be8d6e76b8492dc430e53b4f1577c8fd39702d 100644 (file)
@@ -4,93 +4,48 @@
  * See cxx source for full Copyright notice                               */
 
 /* $Id$ */
+// Revision of includes 07/05/2004
+//
+/// \ingroup base
+/// \class AliMUONChamber
+/// \brief MUON tracking chamber class
+
+#include <TObject.h>
+#include <TObjArray.h>
 
-#include "TObjArray.h"
-#include "AliSegmentation.h"
 #include "AliMUONResponse.h"
+#include "AliMUONGeometrySegmentation.h"
 
 class AliMUONClusterFinderVS;
-//class AliMUONResponse ;
-//class AliSegmentation ;
-class AliMUONChamberGeometry;
+class AliMUON;
+class AliMUONHit;
 
-class AliMUONChamber:
-public TObject
+
+class AliMUONChamber : public TObject
 {
  public:
     AliMUONChamber();
     AliMUONChamber(Int_t id);
-    AliMUONChamber(const AliMUONChamber & rChamber);
     virtual ~AliMUONChamber();
     
 //
 // Get chamber Id
-  virtual Int_t   GetId() {return fId;}
-//
-
-// Get chamber Id
-  virtual Bool_t  IsSensId(Int_t volId) const;
-/*
-// Get GEANT id of sensitive volume
-  virtual Int_t   GetGid() {return fGid;}
-// Set GEANT id of sensitive volume
-  virtual void    SetGid(Int_t id) {fGid=id;}
+  virtual Int_t   GetId() const {return fId;}
 //
-*/
-  
-// Initialisation
-  virtual void    Init();
-// Set z-position of chamber  
-  virtual void    SetZ(Float_t Z) {fZ = Z;}
-// Get z-position of chamber  
-  virtual Float_t Z(){return fZ;}
-// Set inner radius of sensitive volume 
-  virtual void SetRInner(Float_t rmin) {frMin=rmin;}
-// Set outer radius of sensitive volum  
-  virtual void SetROuter(Float_t rmax) {frMax=rmax;}  
 
-// Return inner radius of sensitive volume 
-  virtual  Float_t RInner()            {return frMin;}
-// Return outer radius of sensitive volum  
-  virtual Float_t ROuter()            {return frMax;}  
 //  
 // Set response model
   virtual void    SetResponseModel(AliMUONResponse* thisResponse) {fResponse=thisResponse;}
 //  
-// Set segmentation model
-  virtual void    SetSegmentationModel(Int_t i, AliSegmentation* thisSegmentation) {
-      fSegmentation->AddAt(thisSegmentation,i-1);
-  }
-// Set Cluster reconstruction model  
-  virtual void    SetReconstructionModel(AliMUONClusterFinderVS *thisReconstruction) {
-      fReconstruction = thisReconstruction;
-  }
-//  
 //  Get pointer to response model
   virtual AliMUONResponse* &ResponseModel(){return fResponse;}
-//  
-//  Get reference to segmentation model
-  virtual AliSegmentation*  SegmentationModel(Int_t isec) {
-      return (AliSegmentation *) (*fSegmentation)[isec-1];
-  }
-  virtual TObjArray* ChamberSegmentation() {return fSegmentation;}
-//  Get pointer to cluster reconstruction model
-  virtual AliMUONClusterFinderVS* &ReconstructionModel(){return fReconstruction;}
-// Get number of segmentation sectors  
-  virtual Int_t Nsec()              {return fnsec;}
-// Set number of segmented cathodes (1 or 2)  
-  virtual void  SetNsec(Int_t nsec) {fnsec=nsec;}
+
 //
 // Member function forwarding to the segmentation and response models
 //
 // Calculate pulse height from energy loss  
   virtual Float_t IntPH(Float_t eloss) {return fResponse->IntPH(eloss);}
-//  
-// Ask segmentation if signal should be generated  
-  virtual Int_t   SigGenCond(Float_t x, Float_t y, Float_t z);
-//
-// Initialisation of segmentation for hit  
-  virtual void    SigGenInit(Float_t x, Float_t y, Float_t z);
+
 // Initialisation of charge fluctuation for given hit
   virtual void    ChargeCorrelationInit();
 
@@ -106,48 +61,24 @@ public TObject
   virtual void   SetChargeSpread(Float_t p1, Float_t p2) {fResponse->SetChargeSpread(p1,p2);}
 // Set maximum ADC count value
   virtual void   SetMaxAdc(Int_t p1)                   {fResponse->SetMaxAdc(p1);}
-// Set Pad size
-  virtual void   SetPadSize(Int_t isec, Float_t p1, Float_t p2) {
-      ((AliSegmentation*) (*fSegmentation)[isec-1])->SetPadSize(p1,p2);
-  }
 //  
 // Cluster formation method (charge disintegration)
-  virtual void   DisIntegration(Float_t eloss, Float_t tof,
-                               Float_t xhit, Float_t yhit, Float_t zhit,
+  virtual void   DisIntegration(AliMUONHit* hit,
                                Int_t& x, Float_t newclust[6][500]);
-// Initialize geometry related parameters  
-  virtual void    InitGeo(Float_t z);
 //
-  virtual Float_t DGas() {return fdGas;}
-  virtual Float_t DAlu() {return fdAlu;}  
-  virtual void SetDGas(Float_t DGas) {fdGas = DGas;}
-  virtual void SetDAlu(Float_t DAlu) {fdAlu = DAlu;}  
   virtual void SetChargeCorrel(Float_t correl) {fResponse->SetChargeCorrel(correl);}
 
-// geometry  
-  void SetGeometry(AliMUONChamberGeometry* geometry) {fGeometry = geometry;}
-  AliMUONChamberGeometry* GetGeometry() const {return fGeometry; }
-
-// assignment operator  
-  AliMUONChamber& operator =(const AliMUONChamber& rhs);
-  
  protected:
+  AliMUONChamber(const AliMUONChamber & rChamber);
+  // assignment operator  
+  AliMUONChamber& operator =(const AliMUONChamber& rhs);
+
   Int_t   fId;   // chamber number
-  Float_t fdGas; // half gaz gap
-  Float_t fdAlu; // half Alu width  
-  //Int_t   fGid;  // GEANT volume if for sensitive volume of this chamber
-                   // moved to AliMUONChamberGeometry
-  Float_t fZ;    // Z position (cm)
-  Int_t   fnsec; // number of semented cathode planes
-  Float_t frMin; // innermost sensitive radius
-  Float_t frMax; // outermost sensitive radius
   Float_t fCurrentCorrel; //! charge correlation for current hit.
 
-  TObjArray              *fSegmentation;    // pointer to segmentation
-  AliMUONClusterFinderVS *fReconstruction;  // pointer to reconstruction
   AliMUONResponse        *fResponse;        // pointer to response
-  AliMUONChamberGeometry *fGeometry;        // pointer to geometry
-  ClassDef(AliMUONChamber,1) // Muon tracking chamber class
+  AliMUON                *fMUON;            // pointer to MUON
+  ClassDef(AliMUONChamber,3) // Muon tracking chamber class
 };
 
 #endif