]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Add a "real" default constructor.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Jan 2001 11:43:48 +0000 (11:43 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 25 Jan 2001 11:43:48 +0000 (11:43 +0000)
MUON/AliMUONHitMapA1.cxx
MUON/AliMUONHitMapA1.h

index 0e6602719d52f69f08a6d565d4f4495ae3c976a5..4c1289be72384052fe44043f080d30aff2dc77d7 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.6  2000/10/06 09:05:42  morsch
+Correction on upper limits for x- and y- coordinates to make code work with slat chambers.
+
 Revision 1.5  2000/10/02 21:28:09  fca
 Removal of useless dependecies via forward declarations
 
@@ -47,6 +50,18 @@ Most coding rule violations corrected.
 
 ClassImp(AliMUONHitMapA1)
 
+    AliMUONHitMapA1::AliMUONHitMapA1()
+{
+    // Default constructor
+    fSegmentation = 0;
+    fNpx          = 0;
+    fNpy          = 0;
+    fMaxIndex     = 0;
+    
+    fHitMap       = 0;
+    fDigits       = 0;
+    fNdigits      = 0;
+}
 
 AliMUONHitMapA1::AliMUONHitMapA1(AliSegmentation *seg, TObjArray *dig)
 {
index ec8d268625d6f1f5725be4cd3e34d3854251b6dd..859aa72f90281b2d3a060bad7b8cb71bd87675fe 100644 (file)
@@ -16,7 +16,8 @@ class AliMUONHitMapA1 :
 public AliHitMap 
 {
  public:
-    AliMUONHitMapA1(AliSegmentation *seg=0, TObjArray *dig=0);
+    AliMUONHitMapA1();
+    AliMUONHitMapA1(AliSegmentation *seg, TObjArray *dig);
     AliMUONHitMapA1(const AliMUONHitMapA1 & hitMap);
     
     virtual ~AliMUONHitMapA1();