Skip to content
Snippets Groups Projects
Commit 07a32204 authored by Adrian Meyer-Ahrens's avatar Adrian Meyer-Ahrens
Browse files

Remove Unused Variables dist and links

parent d3668f78
No related branches found
No related tags found
1 merge request!912Remove Unused Variables "dist" and "links"
Pipeline #18200 passed
...@@ -1948,11 +1948,11 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t ...@@ -1948,11 +1948,11 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t
TClonesArray* hits = fgEvent->GetHits(idet); TClonesArray* hits = fgEvent->GetHits(idet);
TClonesArray* pnts = fgEvent->GetPoints(idet); TClonesArray* pnts = fgEvent->GetPoints(idet);
Int_t links = 0; //Int_t links = 0; //Only needed for kTrdDistortion
Double_t dist = 0.; //Double_t dist = 0.;
*trueH = 0; *trueH = 0;
*distH = 0; *distH = 0;
*fakeH = (mctrk > -1 ? 0 : nhits); *fakeH = (mctrk > -1 ? 0 : nhits);
if (hits && pnts && mctrk > -1) { if (hits && pnts && mctrk > -1) {
for (Int_t ihit = 0; ihit < nhits; ihit++) { for (Int_t ihit = 0; ihit < nhits; ihit++) {
...@@ -1983,7 +1983,7 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t ...@@ -1983,7 +1983,7 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t
Bool_t btrueH = kTRUE; Bool_t btrueH = kTRUE;
Bool_t bfakeH = kTRUE; Bool_t bfakeH = kTRUE;
Int_t nlinks = mtch->GetNofLinks(); Int_t nlinks = mtch->GetNofLinks();
links += nlinks; //links += nlinks;
for (Int_t iLink = 0; iLink < nlinks; iLink++) { for (Int_t iLink = 0; iLink < nlinks; iLink++) {
// if(nlinks!=1) { fakeH++; continue; } // if(nlinks!=1) { fakeH++; continue; }
FairMCPoint* pnt = static_cast<FairMCPoint*>(pnts->At(mtch->GetLink(iLink).GetIndex())); FairMCPoint* pnt = static_cast<FairMCPoint*>(pnts->At(mtch->GetLink(iLink).GetIndex()));
...@@ -1995,7 +1995,7 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t ...@@ -1995,7 +1995,7 @@ inline void PairAnalysisVarManager::CalculateHitTypes(const PairAnalysisTrack* t
Int_t lblG = mc->GetMothersLabel(lblM); Int_t lblG = mc->GetMothersLabel(lblM);
if (lbl != mctrk && lblM != mctrk && lblG != mctrk) { if (lbl != mctrk && lblM != mctrk && lblG != mctrk) {
btrueH = kFALSE; btrueH = kFALSE;
dist += 1.; //dist += 1.;
} }
else else
bfakeH = kFALSE; bfakeH = kFALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment