X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PHOS%2FAliPHOSReconstructor.h;h=35562fd023b6926d15cec4b5b925bcfab6dbfee0;hb=fb78191c68b3699d504e4598999c20f841e92078;hp=f5b195ba1ed57e4d21250d47749211a5dd600e91;hpb=dfe0be0799c5650d391f6522bddd63c5ef51788d;p=u%2Fmrichter%2FAliRoot.git diff --git a/PHOS/AliPHOSReconstructor.h b/PHOS/AliPHOSReconstructor.h index f5b195ba1ed..35562fd023b 100644 --- a/PHOS/AliPHOSReconstructor.h +++ b/PHOS/AliPHOSReconstructor.h @@ -37,10 +37,10 @@ public: // requested by the Coding Convention Fatal("cpy ctor", "not implemented") ; } - - virtual ~AliPHOSReconstructor() {} ; - - Bool_t Debug() const { return fDebug ; } + ~AliPHOSReconstructor() ; //dtor + static void SetDebug() { fgDebug = kTRUE ; } + static void ResetDebug() { fgDebug = kFALSE ; } + static Bool_t Debug() { return fgDebug ; } virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ; virtual void Reconstruct(AliRunLoader* runLoader) const ; @@ -52,7 +52,7 @@ public: private: - Bool_t fDebug; //! verbosity controller + static Bool_t fgDebug ; //! verbosity controller ClassDef(AliPHOSReconstructor,2) // Reconstruction algorithm class (Base Class)