]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- change error message to debug message for TRD tracklets
authorjklein <jklein@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 25 Jun 2013 16:54:20 +0000 (16:54 +0000)
committerjklein <jklein@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 25 Jun 2013 16:54:20 +0000 (16:54 +0000)
TRD/AliTRDgtuTMU.cxx

index f0f93d4f191b8fc0d180e87d4bd848563b908ede..4c7b19369c4ac1653686bb3359aa833c3be8d6dd 100644 (file)
@@ -268,7 +268,7 @@ Bool_t AliTRDgtuTMU::RunInputUnit(Int_t layer)
     alpha = ( 2 * trk->GetdY() - (alpha >> fGtuParam->GetBitExcessAlpha()) + 1 ) >> 1;
     // wrapping projected alpha as in hardware
     if ((alpha < -64) || (alpha > 63))
-      AliError(Form("alpha out of range: %i", alpha));
+      AliDebug(1, Form("alpha out of range: %i", alpha));
     alpha = alpha & 0x7f;
     if (alpha & 0x40)
       trk->SetAlpha(0xffffffc0 | alpha);