]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSMapA1.cxx
fix the default cdb storage
[u/mrichter/AliRoot.git] / ITS / AliITSMapA1.cxx
index 4e6bb6f091490dce9b0c84d5248624960a12f108..1c42d84e1eaae2bf33aacb512cf75c8b49521289 100644 (file)
@@ -229,17 +229,17 @@ Double_t AliITSMapA1::GetSignal(Int_t iz, Int_t ix) const{
     return signal;
 }
 //______________________________________________________________________
-FlagType AliITSMapA1::TestHit(Int_t iz, Int_t ix)  {
+FlagTypeITS AliITSMapA1::TestHit(Int_t iz, Int_t ix)  {
     // check whether the digit has already been flagged
 
-    if (CheckedIndex(iz, ix) < 0) return kEmpty;
+    if (CheckedIndex(iz, ix) < 0) return kEmptyITS;
     Int_t inf=fHitMap[CheckedIndex(iz, ix)]; 
     if (inf < 0) {
-       return kUsed;
+       return kUsedITS;
     } else if (inf == 0) {
-       return kEmpty;
+       return kEmptyITS;
     } else {
-       return kUnused;
+       return kUnusedITS;
     } // end if inf
 }