]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGLF/RESONANCES/AliRsnEvent.cxx
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnEvent.cxx
index aa815009192de651b5c6e8bff0dee11b9a22b90b..0e101afad3058403007b5572b7a3d1ed76728613 100644 (file)
@@ -372,7 +372,7 @@ Bool_t AliRsnEvent::SetMCInfoESD(AliRsnDaughter &out)
 
    // if label too large --> failed
    if (label >= nMC) {
-      AliWarning(Form("Stack overflow: track label = %d -- stack maximum = %d", label, nMC));
+     AliDebug(4, Form("Stack overflow: track label = %d -- stack maximum = %d", label, nMC));
       return kFALSE;
    }
 
@@ -398,7 +398,7 @@ Bool_t AliRsnEvent::SetMCInfoESD(AliRsnDaughter &out)
          AliWarning(Form("Stack discontinuity: label mother %d refers to a NULL object", imum));
       }
    } else {
-      AliWarning(Form("Stack overflow: mother label = %d -- stack maximum = %d", imum, nMC));
+     AliDebug(4, Form("Stack overflow: mother label = %d -- stack maximum = %d", imum, nMC));
    }
 
    return kTRUE;
@@ -426,7 +426,7 @@ Bool_t AliRsnEvent::SetMCInfoAOD(AliRsnDaughter &out)
 
    // if label too large --> failed
    if (label >= nMC) {
-      AliWarning(Form("Stack overflow: track label = %d -- stack maximum = %d", label, nMC));
+     AliDebug(4, Form("Stack overflow: track label = %d -- stack maximum = %d", label, nMC));
       return kFALSE;
    }
 
@@ -449,7 +449,7 @@ Bool_t AliRsnEvent::SetMCInfoAOD(AliRsnDaughter &out)
          AliWarning(Form("Stack discontinuity: label mother %d refers to a NULL object", imum));
       }
    } else if (imum >= nMC) {
-      AliWarning(Form("Stack overflow: mother label = %d -- stack maximum = %d", imum, nMC));
+     AliDebug(4, Form("Stack overflow: mother label = %d -- stack maximum = %d", imum, nMC));
    }
 
    return kTRUE;