]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/ITSSDDBASda.cxx
Decode jitter word decoding and correct for jitter in the SDD cluster finder (F....
[u/mrichter/AliRoot.git] / ITS / ITSSDDBASda.cxx
index 0bf6deea1842eda850b18d12669ccd55dba518bb..1dede7ba6caf783046f985f4ff63102c17858d11 100644 (file)
@@ -191,7 +191,9 @@ int main(int argc, char **argv) {
          while(s.Next()){
            Int_t iDDL=rawReader->GetDDLID();
            Int_t iCarlos=s.GetCarlosId();
-           if(iDDL>=0 && iDDL<kTotDDL && s.IsCompletedModule()==kFALSE){ 
+           if(s.IsCompletedModule()) continue;
+           if(s.IsCompletedDDL()) continue;
+           if(iDDL>=0 && iDDL<kTotDDL){ 
              Int_t index=kSides*(kModPerDDL*iDDL+iCarlos)+s.GetChannel(); 
              histo[index]->Fill(s.GetCoord2(),s.GetCoord1(),s.GetSignal());
            }