From 5cf3701b5a9476031ebbbc964fcfd55b772e851d Mon Sep 17 00:00:00 2001 From: masera Date: Wed, 30 Nov 2011 11:31:57 +0000 Subject: [PATCH] Coding conventions --- ITS/AliITSClusterParam.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ITS/AliITSClusterParam.h b/ITS/AliITSClusterParam.h index 8ec6f4df0fd..75b36109784 100644 --- a/ITS/AliITSClusterParam.h +++ b/ITS/AliITSClusterParam.h @@ -21,7 +21,6 @@ class AliITSRecPoint; class AliITSClusterParam : public TObject { public: static AliITSClusterParam* Instance(); - AliITSClusterParam(){} virtual ~AliITSClusterParam(){;} virtual void Print(Option_t* option = "") const; void SetInstance(AliITSClusterParam *param){fgInstance = param;} @@ -42,7 +41,10 @@ class AliITSClusterParam : public TObject { //void FitData(TTree * tree); // - protected: + private: + AliITSClusterParam(){} + AliITSClusterParam(const AliITSClusterParam &source); // copy constructor. Not to be used! + AliITSClusterParam& operator=(const AliITSClusterParam &source); // = operator. Not to be used! static AliITSClusterParam* fgInstance; //! Instance of this class (singleton implementation) static Int_t GetErrorOrigRecPoint(const AliITSRecPoint*cl, Float_t &erry,Float_t &errz,Float_t &covyz); -- 2.39.3