]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Adding Get functions to Clusterizerv1
authormartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 3 Mar 2000 14:06:57 +0000 (14:06 +0000)
committermartinez <martinez@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 3 Mar 2000 14:06:57 +0000 (14:06 +0000)
PHOS/AliPHOSClusterizerv1.h

index 9c9635f124847c8c0918536ccef866087a18c129..6dceb731f7ab160772b6e0adfe3d4486634d55c0 100644 (file)
@@ -37,7 +37,16 @@ public:
   void FillandSort(const DigitsList * dl, TObjArray * tl) ;   // Sorts the list according to increasing id
   Float_t GetLogWeightCut(void){return  fW0 ; }
   Float_t GetLocalMaxCut(void) {return  fLocMaxCut ; }
-  virtual void GetNumberOfClustersFound(Int_t * numb) ;   
+  virtual void GetNumberOfClustersFound(Int_t * numb) ; 
+  virtual void GetCalibrationParameters(Float_t & A, Float_t &B) { A = fA; B = fB; } 
+  virtual void GetEmcClusteringThreshold(Float_t & cluth) { cluth = fEmcClusteringThreshold;}
+  virtual void GetEmcEnergyThreshold(Float_t & enth) { enth =  fEmcEnergyThreshold; }  
+  virtual void GetLocalMaxCut(Float_t & cut) { cut =  fLocMaxCut;} 
+  virtual void GetLogWeightCut(Float_t & w) { w =fW0;}  
+  virtual void GetPpsdClusteringThreshold(Float_t & cluth) { cluth =  fPpsdClusteringThreshold;  } 
+  virtual void GetPpsdEnergyThreshold(Float_t & enth) { enth = fPpsdEnergyThreshold;  }
+
   virtual Bool_t IsInEmc(AliPHOSDigit * digit) ;                      // Tells if id digit is in EMC
   virtual void MakeClusters(const DigitsList * dl, RecPointsList * emcl, RecPointsList * ppsdl) ; // does the job 
   virtual void PrintParameters() ;