]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCcluster.h
Change in the signature of base class method Use to avoid compilation warnings (icc)
[u/mrichter/AliRoot.git] / TPC / AliTPCcluster.h
index a8d2d621543b61c30efbbf119987b14ed51edd4d..2b83bfece3be1a9f9049323cbfd4cc3670b1b629 100644 (file)
@@ -19,7 +19,7 @@ class AliTPCcluster : public AliCluster {
 public:
   AliTPCcluster():AliCluster(){fQ=0;}
   AliTPCcluster(Int_t *lab, Float_t *hit) : AliCluster(lab,hit) {fQ = hit[4];}
-  void Use() {fQ=-fQ;}
+  void Use(Int_t = 0) {fQ=-fQ;}
   void SetQ(Float_t q) {fQ=q;}
 
   Int_t IsUsed() const {return (fQ<0) ? 1 : 0;}