]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
return type of GetDebugLevel set to Int_t
authortkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 8 Dec 2003 10:24:08 +0000 (10:24 +0000)
committertkuhr <tkuhr@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 8 Dec 2003 10:24:08 +0000 (10:24 +0000)
RAW/AliRawEvent.h

index 64edef3b8104531b9b00d137ab6fa583f49859b4..5cbe914cbbe74ce05ce4f6a944e8036b3a3d2abf 100644 (file)
@@ -452,7 +452,7 @@ public:
    Bool_t StopLoop() const { return fStopLoop; }
 
    void   SetDebugLevel(Int_t level) { fDebugLevel = level; }
-   Bool_t GetDebugLevel() const { return fDebugLevel; }
+   Int_t  GetDebugLevel() const { return fDebugLevel; }
 
    static Bool_t DeleteFiles() { return fgDeleteFiles; }
 
@@ -462,6 +462,6 @@ public:
 R__EXTERN AliMDC *gAliMDC;
 
 #define ALIDEBUG(level) \
-   if (gAliMDC && gAliMDC->GetDebugLevel() >= (level))
+   if (gAliMDC && (gAliMDC->GetDebugLevel() >= (level)))
 
 #endif