diff --git a/core/qa/CbmQaTask.cxx b/core/qa/CbmQaTask.cxx
index 4dbd7da02c90741763cd16f01d9f3c6d3813ce71..58a6ffc7fc66c1d9e1ec136544c4c5d1c18e7cc1 100644
--- a/core/qa/CbmQaTask.cxx
+++ b/core/qa/CbmQaTask.cxx
@@ -44,7 +44,6 @@ void CbmQaTask::Exec(Option_t* /*option*/)
     int nEvents = fpBrEvents->GetEntriesFast();
     for (int iEvt = 0; iEvt < nEvents; ++iEvt) {
       fpCurrentEvent = static_cast<CbmEvent*>(fpBrEvents->At(iEvt));
-      assert(fpCurrentEvent);
       this->InitTimeSlice();
       this->FillHistograms();
       fNofEvents.SetVal(fNofEvents.GetVal() + 1);
diff --git a/reco/L1/CbmCaMCModule.cxx b/reco/L1/CbmCaMCModule.cxx
index 6195dbc621a372810448e7c341a493fd4b271955..cf6408539b60dc24178622a3ac893c157aaaf4c8 100644
--- a/reco/L1/CbmCaMCModule.cxx
+++ b/reco/L1/CbmCaMCModule.cxx
@@ -261,11 +261,8 @@ void MCModule::MatchRecoAndMC()
   this->MatchPointsAndHits<ca::EDetectorID::kMuch>();
   this->MatchPointsAndHits<ca::EDetectorID::kTrd>();
   this->MatchPointsAndHits<ca::EDetectorID::kTof>();
-  LOG(info) << "DBG 1";
   this->MatchRecoAndMCTracks();
-  LOG(info) << "DBG 2";
   this->InitTrackInfo();
-  LOG(info) << "DBG 3";
   for (const auto& trkMC : fpMCData->GetTrackContainer()) {
     if (trkMC.IsReconstructable()) {
       fMonitor.IncrementCounter(EMonitorKey::kMcTrackReconstructable);
diff --git a/reco/L1/CbmCaTimeSliceReader.cxx b/reco/L1/CbmCaTimeSliceReader.cxx
index 9a13939d4f72d0e1420e12a9b6acce7ff8d6c746..cc0c32551fe203ffa64d882465026adf2df6fb54 100644
--- a/reco/L1/CbmCaTimeSliceReader.cxx
+++ b/reco/L1/CbmCaTimeSliceReader.cxx
@@ -190,11 +190,8 @@ void TimeSliceReader::ReadEvent(CbmEvent* pEvent)
 {
   static int iEvt = 0;
   fpEvent         = pEvent;
-  LOG(info) << "READ HITS";
   this->ReadHits();
-  LOG(info) << "READ TRACKS";
   this->ReadRecoTracks();
-  LOG(info) << "Evt. " << iEvt++ << " is read";
 }
 
 
diff --git a/reco/L1/CbmCaTimeSliceReader.h b/reco/L1/CbmCaTimeSliceReader.h
index 2b8df810e2bb7255bd5829f392018253bbc86028..5845553173f5aa98d0d856af789456960ed6916c 100644
--- a/reco/L1/CbmCaTimeSliceReader.h
+++ b/reco/L1/CbmCaTimeSliceReader.h
@@ -224,9 +224,6 @@ int cbm::ca::TimeSliceReader::ReadHitsForDetector()
 
   for (int iH = 0; iH < nHitsTot; ++iH) {
     int iHext = fpEvent ? fpEvent->GetIndex(kCbmHitType[DetID], iH) : iH;
-    if (iHext < 0) {
-      continue;
-    }
     tools::HitRecord hitRecord;
 
     auto* pHit  = static_cast<Hit_t*>(fvpBrHits[DetID]->At(iHext));