]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSJet.h
Coding convention obeyed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSJet.h
index e547630e79b3432e7d0c7cdf794e304936aed634..1419fe3a805ed17484374f8478d02356e27a395e 100644 (file)
@@ -1,8 +1,10 @@
-#ifndef ALIJET_H
-#define ALIJET_H
+#ifndef ALIPHOSJET_H
+#define ALIPHOSJET_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+/* $Id$ */
+
 //_________________________________________________________________________
 //  Base Class for Jets in ALICE
 //                  
@@ -22,7 +24,10 @@ class AliPHOSJet : public TObject {
 
 public:
   AliPHOSJet() ;          // ctor
-  AliPHOSJet(const AliPHOSJet & jet){} ;          // ctor
+  AliPHOSJet(const AliPHOSJet & jet) {
+    // copy ctor: no implementation yet
+    Fatal("cpy ctor", "not implemented") ;
+  }
   virtual ~AliPHOSJet() ; 
 
   void AddDigit(const Double_t e,const Double_t eta,const Double_t phi,const Int_t index) ;
@@ -56,14 +61,18 @@ public:
   Int_t GetNJetParticles(void)const{return fNpart;}
 
   void Print(Option_t * option="") ;
+  AliPHOSJet & operator = (const AliPHOSJet & rvalue)  {
+    // assignement operator requested by coding convention but not needed
+    Fatal("operator =", "not implemented") ; return *this ; 
+  }
 
 private:
   Int_t      fNpart ;     //Number of particles in jet
   TArrayI *  fList ;      //Indexes of particles in list
 
-  Double_t   fConeRad ;
-  Double_t   fMaxConeMove ;
-  Double_t   fMinConeMove ;  
+  Double_t   fConeRad ; // Cone radius 
+  Double_t   fMaxConeMove ;// Maximum Cone movement
+  Double_t   fMinConeMove ;// Minimum Cone movement 
   Double_t   fSumEnergy ; //! Intermediate energy
   Double_t   fSumEta ;    //! Intermediate eta
   Double_t   fSumPhi ;    //! Intermediate phi
@@ -78,4 +87,11 @@ private:
 
 };
 
-#endif // ALIJET_H
+//////////////////////////////////////////////////////
+
+#endif // ALIPHOSJET_H
+
+
+
+
+