]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSRecPoint.h
Dimitri just makes it work
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecPoint.h
index 90275a6eef31b863edfcba8c003da14da051016b..8d3c9f17ef7a97ef155131935a1cdfb4cab6b55a 100644 (file)
 class AliPHOSRecPoint : public AliRecPoint {
 
  public:
+  
+  typedef TObjArray RecPointsList ; 
 
   AliPHOSRecPoint() ;                   // ctor         
+  AliPHOSRecPoint(const AliPHOSRecPoint & rp) {
+    // cpy ctor requested by Coding Convention 
+    // but not yet needed
+    assert(0==1) ; 
+  } 
+  
   virtual ~AliPHOSRecPoint(){
     // dtor
   }
+  virtual  void   AddDigit(AliDigitNew &){
+    // do not use this definition but the one below
+    assert(0==1) ; 
+  }
   virtual  void   AddDigit(AliPHOSDigit & digit, Float_t Energy) = 0 ; 
   virtual Int_t   Compare(TObject * obj) { 
     // check why this is done
@@ -52,13 +64,17 @@ class AliPHOSRecPoint : public AliRecPoint {
     // Print prototype
   } 
 
+  AliPHOSRecPoint & operator = (const AliPHOSRecPoint & rvalue)  {
+    // assignement operator requested by coding convention
+    // but not needed
+    assert(0==1) ;
+    return *this ; 
+  }
+
  protected:
   
   Int_t fPHOSMod ;      // PHOS Module number in which the RecPoint is found
 
- private:
-  
-  typedef TObjArray RecPointsList ; 
 
   ClassDef(AliPHOSRecPoint,1) // RecPoint for PHOS (Base Class)