]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSJetFinder.h
Replacing rindex by strrchr
[u/mrichter/AliRoot.git] / PHOS / AliPHOSJetFinder.h
index 7dd66dbc6add40cdf2cf639b40d6eaccce36eb0d..e3505070068d7a3f6b8bc87008d3dddf55b17afa 100644 (file)
@@ -22,7 +22,7 @@ class AliPHOSJetFinder : public TNamed {
 
 public:
   AliPHOSJetFinder() ;          // ctor
-  AliPHOSJetFinder(const AliPHOSJetFinder & jet) {
+  AliPHOSJetFinder(const AliPHOSJetFinder & jet) : TNamed(jet) {
     // copy ctor: no implementation yet
     Fatal("cpy ctor", "not implemented") ;
   }
@@ -31,7 +31,7 @@ public:
   void FindJetsFromParticles(const TClonesArray * plist,TObjArray * jetslist) ; //Do the job
   void FindJetsFromDigits(const TClonesArray * digits,TObjArray * jetslist) ; //Do the job
 
-  void Print(Option_t * option = "") ;
+  void Print() ;
 
   void SetEtSeed(Double_t etseed){fEtSeed = etseed ;} ;
   void SetEtMin(Double_t etmin){fEtMin = etmin ;} ;
@@ -39,7 +39,7 @@ public:
   void SetMaxConeMove(Double_t move){fMaxConeMove=move ; } ;
   void SetMinConeMove(Double_t move){fMinConeMove=move ; } ;
   void SetStatusCode(Int_t stc = 1){fStatusCode=stc ;} ;
-  AliPHOSJetFinder & operator = (const AliPHOSJetFinder & rvalue)  {
+  AliPHOSJetFinder & operator = (const AliPHOSJetFinder & /*rvalue*/)  {
     // assignement operator requested by coding convention but not needed
     Fatal("operator =", "not implemented") ; return *this ; 
   }