]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Correction of minor typing mistakes
authorfca <fca@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Oct 2000 10:08:01 +0000 (10:08 +0000)
committerfca <fca@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Oct 2000 10:08:01 +0000 (10:08 +0000)
STEER/AliGenerator.cxx
STEER/AliSegmentation.h

index 8b0f9e697adbe808322f774f53a95ef309762ff3..e7f0c81b367c7a2b5f6a59f26836ee10ef1a108a 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.8  2000/10/02 21:28:14  fca
+Removal of useless dependecies via forward declarations
+
 Revision 1.7  2000/07/12 08:56:25  fca
 Coding convention correction and warning removal
 
@@ -223,7 +226,7 @@ void AliGenerator::SetPhiRange(Float_t phimin, Float_t phimax)
 }
 
 //_______________________________________________________________________
-void AliGenerator::SetYRange(Float_t ymin=-100, Float_t ymax=100)
+void AliGenerator::SetYRange(Float_t ymin, Float_t ymax)
 {
   //
   // Set the Rapidity range for the generated particles
index 21fded5c84b42e79d0f54da081bc7b929d68b329..27400767400f81e5a3cc26234ad3e84376765e1e 100644 (file)
@@ -79,7 +79,7 @@ public TObject {
     // y-coordinate
     virtual Int_t  Iy()                                                           = 0;
     // current sector
-    virtual Int_t  ISector()                                                      = 0;
+    virtual Int_t  ISector() const                                                     = 0;
     // calculate sector from pad coordinates
     virtual Int_t  Sector(Int_t ix, Int_t iy)                                     = 0;
     //
@@ -93,10 +93,10 @@ public TObject {
     // Test points for auto calibration
     virtual void GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) const                 = 0;
     // Draw the segmentation zones
-    virtual void Draw(const char *opt = "") const                                       = 0;
+    virtual void Draw(const char *opt = "")                                        = 0;
     // Function for systematic corrections
     // Set the correction function
-    virtual void SetCorrFunc(Int_t  TF1*)                                               = 0;
+    virtual void SetCorrFunc(Int_t,  TF1*)                                               = 0;
     // Get the correction Function
     virtual TF1* CorrFunc(Int_t)  const                                                 = 0;