]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONSegmentationSlatN.cxx
Merge MC labels for 4 neighbour bins in the Hough space in order to reduce the size...
[u/mrichter/AliRoot.git] / MUON / AliMUONSegmentationSlatN.cxx
index 442f581b00331b426969db5154127f688f882078..cb70cebb0fd972e5a8974aa14c50a3f12a87bd21 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.2  2000/10/09 14:06:18  morsch
-Some type cast problems of type  (TMath::Sign((Float_t)1.,x)) corrected (P.H.)
-
-Revision 1.1  2000/10/06 09:00:47  morsch
-Segmentation class for chambers built out of slats.
-
-*/
+/* $Id$ */
 
 #include "AliMUONSegmentationSlatN.h"
 #include "AliMUONSegmentationSlatModuleN.h"
@@ -29,20 +21,25 @@ Segmentation class for chambers built out of slats.
 #include "TArrayF.h"
 #include "TObjArray.h"
 #include <TMath.h>
-#include <iostream.h>
+#include <Riostream.h>
 
 //___________________________________________
 ClassImp(AliMUONSegmentationSlatN);
 
-
-
 AliMUONSegmentationSlatN::AliMUONSegmentationSlatN()
 {
 // Default constructor
 }
 
 
-Float_t AliMUONSegmentationSlatN::Dpx(Int_t isec) const
+AliMUONSegmentationSlatN::AliMUONSegmentationSlatN(Int_t nsec)
+    : AliMUONSegmentationSlat(nsec)
+{
+// Non default constructor
+}
+
+
+Float_t AliMUONSegmentationSlatN::Dpx(Int_t /*isec*/) const
 {
 //
 // Returns y-pad size for given sector isec
@@ -137,7 +134,7 @@ AliMUONSegmentationSlatModule* AliMUONSegmentationSlatN::
 CreateSlatModule()
 {
     // Factory method for slat module
-    return new AliMUONSegmentationSlatModuleN();
+    return new AliMUONSegmentationSlatModuleN(4);
 }