From 08d213d6c0ab3b2bd6caafb3760a233d0676d71e Mon Sep 17 00:00:00 2001 From: hristov Date: Mon, 28 Oct 2002 17:11:26 +0000 Subject: [PATCH] Using Fatal() instead of Error() and abort() --- ITS/AliITSClusterFinder.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ITS/AliITSClusterFinder.cxx b/ITS/AliITSClusterFinder.cxx index 0402675cd0d..8050b4a805f 100644 --- a/ITS/AliITSClusterFinder.cxx +++ b/ITS/AliITSClusterFinder.cxx @@ -159,8 +159,7 @@ void AliITSClusterFinder::FindRawClusters(Int_t module){ if(clust0->IndexOf(dig)>=0) break; } // end for k if(k>=nc){ - Error("FindRawClusters","Digit not found as expected"); - abort(); + Fatal("FindRawClusters","Digit not found as expected"); } // end if if(j[1]>=0){ dig = (AliITSdigit*)(digs->At(j[1])); @@ -170,8 +169,7 @@ void AliITSClusterFinder::FindRawClusters(Int_t module){ if(clust1->IndexOf(dig)>=0) break; } // end for k2 if(k2>=nc){ - Error("FindRawClusters","Digit not found as expected"); - abort(); + Fatal("FindRawClusters","Digit not found as expected"); } // end if } // end if j[1]>=0 // Found cluster with neighboring digits add this one to it. -- 2.31.1